evennia/devblog/_src/templates/blog.html

99 lines
4.8 KiB
HTML
Raw Normal View History

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
2021-11-18 23:26:08 +01:00
<title>Evennia Devblog</title>
2021-11-16 00:42:26 +01:00
<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'>
2021-11-18 22:44:56 +01:00
<script src="../javascripts/scale.fix.js">
</script>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
2023-06-10 18:32:53 +02:00
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js">
</script>
<![endif]-->
</head>
<body>
<div class="wrapper">
<header>
<p>
2021-11-16 00:42:26 +01:00
<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="../index.html">Back to Evennia</a>
</li>
<li>
<a class="buttons devblog-calendar-tooltip"
href="https://github.com/evennia/evennia/discussions">Discuss (GitHub)</a>
</li>
</div>
2021-11-16 15:15:03 +01:00
</ul>
</div>
<div class="devblog-calendar">
<ul>
{% for page in blogpages %}
<li>
<a href="{{page.permalink}}"> {{ page.year }} ({{ page.posts|length }})
{% if pageyear == page.year %}
<ul class="devblog-calendar-open">
{% else %}
<ul class="devblog-calendar-closed">
{% endif %}
{% for blogpost in page.posts %}
2021-11-18 20:10:08 +01:00
<li class="devblog-calendar-post devblog-calendar-tooltip">
2023-06-10 18:19:30 +02:00
<span class="devblog-calendar-tooltip-text">{{ blogpost.title }}</span>
<a href="{{ blogpost.permalink }}">{{ blogpost.title_short }}
2021-11-18 20:10:08 +01:00
</a>
</li>
2021-11-16 15:15:03 +01:00
{% endfor %}
2021-11-14 23:04:10 +01:00
</ul>
2021-11-16 15:15:03 +01:00
</a>
</li>
{% endfor %}
</ul>
</div>
</header>
<section>
2021-11-20 14:59:37 +01:00
<div class="devblog-rss">
2021-11-20 15:21:26 +01:00
<a href="feed.rss">
2021-11-20 14:59:37 +01:00
<img src="images/rss-icon.png" alt="RSS feed">
</a>
</div>
<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">
2021-11-16 00:42:26 +01:00
<img class="patreon" src="../images/evennia_patreon_100x100.png" alt="Patreon">
</a>
<form action="https://www.paypal.com/donate" method="post" target="_top">
<input type="hidden" name="hosted_button_id" value="YQDKB8JT2GXLS" />
<input type="image" src="https://www.paypalobjects.com/en_US/SE/i/btn/btn_donateCC_LG.gif" border="0" name="submit" title="PayPal - The safer, easier way to pay online!" alt="Donate with PayPal button" />
<img alt="" border="0" src="https://www.paypal.com/en_SE/i/scr/pixel.gif" width="1" height="1" />
</form>
</div>
</h1>
2021-11-15 01:24:37 +01:00
2021-11-15 23:51:01 +01:00
<em>Various Evennia- and MUD-related musings by Griatch, the Evennia lead developer.</em>
2021-11-15 01:24:37 +01:00
2021-11-15 23:51:01 +01:00
{% for blogpost in blogpage.posts %}
2021-11-14 23:04:10 +01:00
{% if not loop.first %}<hr>{% endif %}
<div class="blog_post">
2021-11-15 23:51:01 +01:00
{{ blogpost.html }}
</div>
{% endfor %}
</section>
</body>
</html>