manbytesgnu_site

Source files for manbytesgnu.org
git clone git://holbrook.no/manbytesgnu_site.git
Log | Files | Refs

base.html (2195B)


      1 <!DOCTYPE html>
      2 <html lang="{% block html_lang %}{{ DEFAULT_LANG }}{% endblock html_lang %}">
      3 <head>
      4         {% block head %}
      5 	<link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/css/style.css" />
      6 	<link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/css/syntax.css" />
      7         <title>{% block title %}{{ SITENAME }}{% endblock title %}</title>
      8         <meta charset="utf-8" />
      9         <meta name="generator" content="Pelican" />
     10         {% endblock head %}
     11 </head>
     12 
     13 <body id="index" class="home">
     14 
     15 	<header id="banner" class="body">
     16 		<h1>&gt; <a href="{{ SITEURL }}/">{{ SITENAME }}{% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a><span id="cursor">_</span></h1>
     17 	</header>
     18         <nav id="menu">
     19 		<ul>
     20           {% for cat, null in categories %}
     21             <li{% if cat == category %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></li>
     22           {% endfor %}
     23           {% for p in pages %}
     24             <li{% if p == page %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a></li>
     25           {% endfor %}
     26 
     27 	{% for title, link in MENUITEMS %}
     28             <li><a href="{{ link }}">{{ title }}</a></li>
     29         {% endfor %}
     30         </ul>
     31 	<hr/>
     32 	</nav><!-- /#menu -->
     33         {% block content %}
     34         {% endblock %}
     35         <footer id="contentinfo" class="body">
     36 	<hr/>
     37                 <address id="about" class="vcard body">
     38 			Powered by <a title="Pelican is a static site generator" href="https://getpelican.com/">Pelican</a> | <a title="manbytesgnu.com is licensed under Creative Commons Attribution-ShareAlike 4.0 International" href="https://holbrook.no/share/licenses/cc/cc-by-sa-4.0.txt">CC-BY-SA 4.0</a> | <a title="GIT site history since jan 15th 2022" href="https://holbrook.no/src/manbytesgnu_site/log.html">Site history</a> | ETH <a href="./images/donate_eth_qr.png" title="Ethereum address for tipping">0x185Cbce7650FF7Ad3B587E26B2877d95568805e3</a> | BTC <a href="./images/donate_btc_qr.png" title="Bitcoin address for tipping">12DnRH9HpJ6cfET2LKHrURn2yZBDfDEwHv</a> 
     39                 </address><!-- /#about -->
     40         </footer><!-- /#contentinfo -->
     41 </body>
     42 </html>