├── pages ├── 404.text └── 50x.text ├── templates ├── tweet.template ├── basic.html ├── index.html ├── article.html ├── text.html ├── atom_entry.xml ├── atom.xml ├── base.html └── article_standalone.html ├── www └── example.html ├── post-receive ├── requirements.txt ├── config ├── LICENSE.txt ├── README.md ├── articles └── 2017 │ └── 10 │ └── static_fire_readme.text └── static_fire.py /pages/404.text: -------------------------------------------------------------------------------- 1 | 404 2 | === 3 | -------------------------------------------------------------------------------- /pages/50x.text: -------------------------------------------------------------------------------- 1 | Error 2 | ===== 3 | -------------------------------------------------------------------------------- /templates/tweet.template: -------------------------------------------------------------------------------- 1 | {{ title }} 2 | {{ permalink }} 3 | -------------------------------------------------------------------------------- /templates/basic.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% block content %} 3 | {{ content }} 4 | {% endblock %} 5 | -------------------------------------------------------------------------------- /www/example.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |