blog-base.html.j2 (838B)
1 {% extends "common-base.html.j2" %} 2 3 {% block head %} 4 <link rel="stylesheet" type="text/css" href="{{ static('blog.css') }}"> 5 <link rel="stylesheet" type="text/css" href="{{ static('colors-blog.css') }}"> 6 {% endblock head %} 7 8 {% block header_content %} 9 10 <h1><span class="it"><a href="{{ env('TALER_ENV_URL_MERCHANT_BLOG', '#') }}">{{ gettext("Essay shop") }}</a></span></h1> 11 <p>{{ 12 gettext("On this page you can buy articles using an imaginary currency.") + "<br>" + 13 gettext("The articles are chapters from Richard Stallman's book "Free Software, Free Society".") + "<br>" + 14 gettext('The book is <a href="{shop}">published by the FSF</a> and available gratis at <a href="{gnu}">gnu.org</a>.').format(shop="https://shop.fsf.org/product/free-software-free-society-2", gnu="https://www.gnu.org") 15 }} 16 </p> 17 18 {% endblock %}