aboutsummaryrefslogtreecommitdiffstats
path: root/src/templ/base.thtml
blob: b2b9b96a4af1c1d6b5f3da5b41bf7a5f8cc3c5a9 (plain) (blame)
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
<!--
well if you checking page source, then I realy whant to work in your
company as its looks like you have there smart ppl dos21h~~~gmail~~~com
-->
<!doctype html>
<html>

	<head>
		<!-- Optional theme -->
		<link rel="stylesheet" href="/styles/monokai-sublime.css">
		<link rel="stylesheet" href="/styles/main.css">
		<script src="/js/highlight.pack.js"></script>
		<script>hljs.initHighlightingOnLoad();</script>
		<title>{{article.title}}</title>
		{% if article.keywords %}<meta name="keyword" content="{{article.keywords}}"/>{% endif %}
		<meta charset="UTF-8" />
  	</head>
	<body>
	<nav>
		<a href="/index.md" class="headerlink">Main</a>|
		<a href="/random.md" class="headerlink">Random</a>|
		<a href="http://git.main.lv" class="headerlink">Projects</a>|
		<!--<a href="telnet://main.lv">BBS</a>|-->
		<a href="http://archive.main.lv">Archive</a>|
		<a href="/links.md" class="headerlink">Links</a>|
		<a href="/about.md" class="headerlink">About</a>
	</nav>
	<div class="content">
		{% block content %}
		{% endblock %}
	</div>
	</body>
</html>