manbytesgnu_site

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

base.html (2512B)


      1 {% set cat_ignore = ['archiving', 'code', 'coding', 'hygiene', 'offlining' ] %}
      2 {% set page_ignore = ['identities', 'shares' ] %}
      3 <!DOCTYPE html>
      4 <html lang="{% block html_lang %}{{ DEFAULT_LANG }}{% endblock html_lang %}">
      5 <head>
      6         {% block head %}
      7 	<link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/css/style.css" />
      8 	<link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/css/syntax.css" />
      9         <title>{% block title %}{{ SITENAME }}{% endblock title %}</title>
     10         <meta charset="utf-8" />
     11         <meta name="generator" content="Pelican" />
     12         {% endblock head %}
     13 </head>
     14 
     15 <body id="index" class="home">
     16 
     17 	<header id="banner" class="body">
     18 		<h1>&gt; <a href="{{ SITEURL }}/">{{ SITENAME }}{% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a><span id="cursor">_</span></h1>
     19 	</header>
     20         <nav id="menu">
     21 		<ul>
     22           {% for cat, null in categories %}
     23 	    {% if not cat in cat_ignore %}
     24             <li{% if cat == category %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></li>
     25 	    {% endif %}
     26           {% endfor %}
     27           {% for p in pages %}
     28 	    {% if not p.slug in page_ignore %}
     29             <li{% if p == page %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a></li>
     30 	    {% endif %}
     31           {% endfor %}
     32 
     33 	{% for title, link in MENUITEMS %}
     34             <li><a href="{{ link }}">{{ title }}</a></li>
     35         {% endfor %}
     36         </ul>
     37 	<hr/>
     38 	</nav><!-- /#menu -->
     39         {% block content %}
     40         {% endblock %}
     41         <footer id="contentinfo" class="body">
     42 	<hr/>
     43                 <address id="about" class="vcard body">
     44 			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> | <a href="./feeds/all.atom.xml" title="Atom feed of all posts">Atom feed</a> | ETH <a href="./images/donate_eth_qr.png" title="Ethereum address for tipping">0x98d0D0a1992d9A0c3C84ccb92182A05c852972d1</a> | BTC <a href="./images/donate_btc_qr.png" title="Bitcoin address for tipping">1PfFbhKd32W6GfR6MLVifCrgqw47czA5LV</a>
     45                 </address><!-- /#about -->
     46         </footer><!-- /#contentinfo -->
     47 </body>
     48 </html>