├── README ├── templates ├── index.html ├── error.html ├── upload.html ├── rss.xml ├── form.html └── base.html ├── config ├── app.yaml ├── index.yaml ├── css └── style.css └── main.py /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- 1 | [default] 2 | step=10 3 | 4 | [log] 5 | google_analytics=UA-XXXXXXXX-X 6 | -------------------------------------------------------------------------------- /templates/error.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {%block contents%} 4 |
{{comment.nickname}}: {{comment.comment}} 60 |
61 |
65 |
67 | {%endfor%} 68 |66 |
72 |