-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.php
More file actions
50 lines (41 loc) · 1.49 KB
/
Copy pathpage.php
File metadata and controls
50 lines (41 loc) · 1.49 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
<?php get_header(); ?>
<!--NAVBAR-->
<nav id="nav" class="light-blue darken-4 z-depth-3">
<div class="containernav">
<div class="nav-wrapper">
<a href="<?php echo home_url(); ?>" class="brand-logo white-text"><img class="responsive-img" src="<?php bloginfo( 'template_url')?>/assets/images/Logo-Klein.png" style="padding-left: 40px; padding-right: 40px;"></a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<?php
$args = array(
'title_li' => 0,);
wp_list_pages( $args ); ?>
</ul>
</div>
</div>
</nav>
<!--END NAVBAR-->
<div id="main">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="entry">
<?php the_content(); ?>
</div>
<?php endwhile; endif; ?>
<?php
/*
* Kommentare sind auf Seiten deaktiviert.
* Möchtest du die Kommentarfunktion auf Seiten aktivieren, entferne einfach die beiden "//"-Zeichen vor "comments_template();"
*/
//comments_template();
?>
</div><!-- main -->
<footer id="Footer" class="page-footer light-blue darken-4">
<div class="footer-copyright">
<div class="footainer">
© 2017 PhysikOnline
<ul>
<li><a href="<?php echo home_url(); ?>/wp-admin">Bearbeiten</a>
</ul>
</div>
</div>
</footer>
<?php get_footer(); ?>