56 lines
2 KiB
HTML
56 lines
2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="pt-br">
|
|
<head>
|
|
<title>{% block title %}{{ SITENAME }}{%endblock%}</title>
|
|
<meta charset="utf-8" />
|
|
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/{{ CSS_FILE }}" type="text/css" />
|
|
<link href="{{ SITEURL }}/{{ FEED }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} ATOM Feed" />
|
|
{% if FEED_RSS %}
|
|
<link href="{{ SITEURL }}/{{ FEED_RSS }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} RSS Feed" />
|
|
{% endif %}
|
|
<link href="https://go.rocha.social/@renne/" rel="me" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="wrap" style="width:850px">
|
|
|
|
<div id="container" style="width:560px">
|
|
<div class="entry">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
|
|
<div id="sidebar">
|
|
<h1><a href="{{ SITEURL }} " title="title">{{ SITENAME }}</a></h1>
|
|
<span class="description">{{ DESCRIPTION }} </span>
|
|
<!-- <span class="feed"><a href="">RSS</a> | <a href="">Atom</a></span> -->
|
|
</div>
|
|
|
|
<div id="footer">
|
|
<nav>
|
|
<ul>
|
|
{% for page in pages %}
|
|
<li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a>{% if not loop.last %} ::{% endif %}</li>
|
|
{% endfor %}
|
|
{% if categories|length > 1 %}
|
|
<li>:: <a href="{{ SITEURL }}/categories.html">Categories</a></li>
|
|
{% endif %}
|
|
{% if tags|length > 1 %}
|
|
<li>:: <a href="{{ SITEURL }}/tags.html">Tags</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
</nav>
|
|
|
|
<div id="credits">
|
|
<span>Adapted from <a href="http://wordpress.org/themes/monospace">Monospace</a> || Created with <a href="">Pelican</a></span>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% include 'analytics.html' %}
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|