-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
61 lines (52 loc) · 1.73 KB
/
index.php
File metadata and controls
61 lines (52 loc) · 1.73 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?
//Start of index.php
require_once('engine/require.php');
require_once('engine/includes/motor.php');
?>
<!DOCTYPE HTML>
<html><head>
<meta charset="utf-8">
<title>VPG Blog</title>
<link rel="stylesheet" type="text/css" href="./assets/style/style.css" />
<link rel="stylesheet" type="text/css" href="./assets/style/main.js" />
<script>
fome = { primaryColor : '#666',
theme : 0 };
</script>
</head> <body onload="JSL('assets/style/main.js');">
<script>
//gyorsított betöltődés
function JSL(call) {
var element = document.createElement("script");
element.src = call;
document.body.appendChild(element);
}
JSL("http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js");
</script>
<fome-menu></fome-menu>
<!-- <img src="assets/images/profile_icon.png" > -->
<div id="fejlecKontener">
<header>
<h1 onclick="location.href='index.php'">VPG szakkör blog</h1>
<img src="assets/images/up.png" width="40px" class="off">
</header>
</div>
<div id="tartalomKontener">
<aside id="oldalsav">
<?php require('engine/includes/loginform.php'); ?>
</aside>
<article>
<?php require('engine/includes/tartalom.php'); ?>
</article>
<div class="clearer"></div>
</div>
<div id="lablecKontener">
<footer>
Copyleft 2014<br><br>
Készítette: VPG Webfejlesztés szakkör 2013-2014-ben
<img src="assets/images/up.png" class="buttup">
</footer>
</div>
<link rel="import" href="http://elemential.net/polyfome/include_minimalist.html">
<link rel="import" href="http://elemential.net/polyfome/elementile.html">
</body></html>