-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlapa2.php
More file actions
51 lines (38 loc) · 1.05 KB
/
lapa2.php
File metadata and controls
51 lines (38 loc) · 1.05 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
<?php
include "pageGenerator.php";
new pageGenerator\PageStart("Lapa2", "lapa2Layout.css");
?>
<!-- šis menu jāpārnes uz pageGenerator -->
<header id="menu" style="width: 100%; min-height: 100px;">
<section>
<nav id="menuTitle">
<h1>Galvenais nosaukums</h1>
</nav>
<article id="menuNavigation">
<a href="index.php">Sākums</a>
</article>
<article id="menuNavigation">
<a href="lapa2.php">Otrā lapa</a>
</article>
<header style="text-align: center; height: 100%; width: 100%;">
asd
</header>
</section>
</header>
<section style="height: 200px;">
<header style="text-align: center; height: auto;">
papildvirsraksts
</header>
<nav style="float: left; height: 100%; width: 20%; min-width: 100px; background-color: lime;">
<h1>Sānu panelis</h1>
<ul>
<li><a href="index.php">atpakaļ</a></li>
</ul>
</nav>
<article style="float: left; height: 100%; width: 80%; background-color: red;">
<h1>Article</h1>
</article>
</section>
<?php
pageGenerator\finishPage();
?>