This repository has been archived by the owner on Mar 24, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.lex
45 lines (45 loc) · 1.47 KB
/
index.lex
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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="utf-8" />
<base href="{{ base_url }}/" />
<title>{{ meta.title }} | {{ site_title }}</title>
{{ if meta.robots }}
<meta name="robots" content="{{ meta.robots }}">
{{ endif }}
<meta property="og:type" content="article" />
<meta property="og:title" content="{{ current_page.title }} | {{ site_title }}" />
{{ if meta.description }}
<meta name="description" content="{{ meta.description }}">
<meta property="og:description" content="{{ meta.description }}" />
{{ endif }}
<meta property="og:url" content="{{ current_page.url }}" />
<meta property="og:site_name" content="{{ site_title }}" />
<link rel="stylesheet" href="{{ theme_url }}/css/style.css" type="text/css" />
<link rel="stylesheet" href="{{ theme_url }}/css/tomorrow-night.css" type="text/css" />
</head>
<body>
<header id="header">
<div class="inner clearfix">
<h1><a href="{{ base_url }}">{{ site_title }}</a></h1>
<ul class="nav">
{{ pages }}
<li><a href="{{ url }}">{{ title }}</a></li>
{{ /pages }}
</ul>
</div>
</header>
<section id="content">
<div class="inner">
{{ content }}
</div>
</section>
<footer id="footer">
<div class="inner">
<a href="https://github.com/PhileCMS/Phile">Phile</a> was made by <a href="https://github.com/PhileCMS">The PhileCMS Community</a>.
</div>
</footer>
<script src="{{ theme_url }}/js/highlight.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
</body>
</html>