-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
86 lines (66 loc) · 2.53 KB
/
single.php
File metadata and controls
86 lines (66 loc) · 2.53 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/assets/css/materialize.css">
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/assets/css/style.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"/>
<title>PhysikOnline Blog</title>
</head>
<body>
<!-- NAVBAR -->
<div id="Header">
<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>
</div>
<!--END NAVBAR-->
<?php the_post(); ?>
<div >
<div class="extrapadding" >
<div class="singlewrap">
<div class="card z-depth-2">
<div class="article">
<h3 class="thin"><?php the_title(); ?></h3>
<div id="meta">
<span id="subtitle" class="thin small"> Von <?php the_author(); ?>,   <i class="material-icons tiny thin">access_time</i> <?php the_date('d.m.Y'); ?> </span>
</div>
<p class="light contentfontsize">
<?php the_content(); ?>
</p>
</div>
</div>
</div>
</div>
</div>
<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>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="<?php bloginfo('template_url'); ?>/assets/js/ThatsNotYoChild.js"></script>
<script src="<?php bloginfo('template_url'); ?>/assets/js/materialize.js"></script>
<script>$(document).ready(function(){
$('.parallax').parallax();
});
</script>
</body>
</html>