-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.php
More file actions
28 lines (19 loc) · 739 Bytes
/
blog.php
File metadata and controls
28 lines (19 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Blog | Marina Samuel</title>
<link rel="stylesheet" type="text/css" href="web.css" />
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/iframe.js"></script>
<script type="text/javascript" src="analytics.js"></script>
</head>
<body>
<div id="container">
<?php require("layout.php"); ?>
<div id="content">
<iframe src="blog_engine/user_login.php" frameborder="0" marginwidth="0" marginheight="0" width="100%" ></iframe>
</div>
<div class="clearfix"></div>
</div>
</body>
</html>