mirror of
https://github.com/ikrpg/ikrpg.github.io.git
synced 2026-05-13 14:27:22 +00:00
54 lines
No EOL
2.2 KiB
HTML
54 lines
No EOL
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>{{ page.title }}</title>
|
|
<link rel="stylesheet" href="/static/stylesheets/index.css" />
|
|
<script src="/static/javascripts/expandable.js"></script>
|
|
<script src="/static/javascripts/opaquable.js"></script>
|
|
<script src="/static/javascripts/resizable.js"></script>
|
|
</head>
|
|
<body>
|
|
<article itemscope itemtype="http://schema.org/Article">
|
|
<nav id="menu">
|
|
<ol>
|
|
<li><a href="#" class="red js-expandable"></a></li>
|
|
<li><a href="#" class="red js-opaquable"></a></li>
|
|
<li><a href="#" class="red js-resizable"></a></li>
|
|
<li><a href="#" class="green"></a></li>
|
|
<li><a href="#" class="green"></a></li>
|
|
<li><a href="#" class="green"></a></li>
|
|
<li><a href="#" class="green"></a></li>
|
|
<li><a href="#"></a></li>
|
|
<li><a href="/"></a></li>
|
|
<li>
|
|
<a href="#">
|
|
<time datetime="2012-08-07" pubdate itemprop="dateCreated">{{ page.time }}</time>
|
|
</a>
|
|
</li>
|
|
</ol>
|
|
</nav>
|
|
<header id="head">
|
|
<h1 itemprop="name">{{ page.title }}</h1>
|
|
<nav>
|
|
<ol>
|
|
{% for tag in page.tags %}
|
|
<li><a href="#">{{ tag }}</a></li>
|
|
{% endfor %}
|
|
</ol>
|
|
</nav>
|
|
</header>
|
|
<section class="content" itemprop="articleBody">{{ content }}</section>
|
|
<footer id="foot">
|
|
This page was edited by
|
|
<ul>
|
|
{% for editor in page.editors %}
|
|
<li itemprop="creator" itemscope itemtype="http://schema.org/Person">
|
|
<a itemprop="name" href="#">{{ editor }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</footer>
|
|
</article>
|
|
</body>
|
|
</html> |