evennia/devblog/templates/blog.html
2021-11-15 01:26:44 +01:00

82 lines
4.3 KiB
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Devblog: Evennia Python MUD/MU creation system</title>
<link rel="shortcut icon" type="image/x-icon" href="../../images/favicon.ico">
<link rel="stylesheet" href="../../stylesheets/styles.css">
<link rel="stylesheet" href="../../stylesheets/pygment_trac.css">
<link href='https://fonts.googleapis.com/css?family=Open Sans' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Arvo' rel='stylesheet'>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="description" content="Evennia is a modern Python library and server for creating text-based multi-player games and virtual worlds (also known as MUD, MUSH, MU, MUX, MUCK, etc). While Evennia handles all the necessary things every online game needs, like database and networking, you create the game of your dreams by writing normal Python modules.">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js">
</script>
<![endif]-->
</head>
<body>
<div class="wrapper">
<header>
<p>
<img class="logo" src="../../images/evennia_logo.png" alt="Evennia logo">
</p>
<h1 class="header">Evennia</h1>
<p class="header header-text">The Python MU* Development Library</p>
<div class="linksection">
<ul>
<div class="buttonsection">
<li>
<a class="buttons" href="https://www.evennia.com">Back to Evennia</a>
</li>
</ul>
</div>
<div class="devblog-calendar">
<ul>
{% for year, postlist in calendar.items() %}
<li><a href=#devblog-posts>{{ year }} ({{ postlist|length }})
{% if year == page_year %}
<ul class="devblog-calendar-open">
{% else %}
<ul class="devblog-calendar-closed">
{% endif %}
{% for post in postlist %}
<li class="devblog-calendar-post">
<a href="{{ post.permalink }}">{{ post.date_short}}</a>
</li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
</div>
</header>
<section>
<h1>
<a name="evennia-mudmu-creation-system" class="anchor" href="#evennia-mudmu-creation-system">
<span class="octicon octicon-link">
</span>
</a>Evennia Dev Blog<div class="sponsor">
<div class="sponsor-column">
<a href="https://www.patreon.com/griatch">
<img class="patreon" src="../../images/evennia_patreon_100x100.png" alt="Patreon">
</a>
<p>
<a href="https://www.paypal.me/GriatchEvennia">
<img class="paypal" src="../../images/btn_donateCC_LG.gif" alt="Paypal donate">
</a>
</div>
</h1>
<em>Random Evennia- and MUD-related musings of Griatch, the Evennia lead developer.</em>
{% for post in posts %}
{% if not loop.first %}<hr>{% endif %}
<div class="blog_post">
{{ post.html }}
</div>
{% endfor %}
</section>
</body>
</html>