├── screenshot ├── cosmo.png ├── amelia.png ├── default.png ├── united.png └── superhero.png ├── templates ├── page.html ├── twitter.html ├── taglist.html ├── translations.html ├── tag.html ├── github.html ├── category.html ├── analytics.html ├── author.html ├── disqus_script.html ├── piwik.html ├── tags.html ├── categories.html ├── article.html ├── archives.html ├── base.html ├── index.html └── macro.html ├── static └── css │ ├── code.css │ ├── solarized-dark.css │ ├── solarized-light.css │ └── main.css ├── LICENSE └── README.md /screenshot/cosmo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuex/pelican-chameleon/HEAD/screenshot/cosmo.png -------------------------------------------------------------------------------- /screenshot/amelia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuex/pelican-chameleon/HEAD/screenshot/amelia.png -------------------------------------------------------------------------------- /screenshot/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuex/pelican-chameleon/HEAD/screenshot/default.png -------------------------------------------------------------------------------- /screenshot/united.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuex/pelican-chameleon/HEAD/screenshot/united.png -------------------------------------------------------------------------------- /screenshot/superhero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuex/pelican-chameleon/HEAD/screenshot/superhero.png -------------------------------------------------------------------------------- /templates/page.html: -------------------------------------------------------------------------------- 1 | {% set name = page.title %} 2 | {% set link = page.url %} 3 | {% extends "base.html" %} 4 | 5 | {% block content %} 6 |
5 | {% else %}
6 |
7 | {% endif %}
8 |
9 | {% endif %}
10 |
--------------------------------------------------------------------------------
/templates/category.html:
--------------------------------------------------------------------------------
1 | {% set name = ["Category: ",category]|join %}
2 | {% set link = category.url %}
3 | {% extends "base.html" %}
4 |
5 | {% block content %}
6 | {% from 'macro.html' import article_panel_list with context %}
7 | {% set parent = '' %}
8 | {% set id = category %}
9 | {% set title_left = category %}
10 | {% set title_right = articles|count %}
11 | {% set entry_list = articles %}
12 | {{ article_panel_list(parent,id,title_left,title_right,entry_list) }}
13 | {% endblock %}
14 |
--------------------------------------------------------------------------------
/templates/analytics.html:
--------------------------------------------------------------------------------
1 | {% if GOOGLE_ANALYTICS %}
2 |
11 | {% endif %}
--------------------------------------------------------------------------------
/templates/author.html:
--------------------------------------------------------------------------------
1 | {% set name = author %}
2 | {% set link = ["author/",author,".html"]|join %}
3 | {% extends "base.html" %}
4 |
5 | {% block content %}
6 |
7 | {% from 'macro.html' import article_panel_list with context %}
8 | {% set parent = '' %}
9 | {% set id = ["collapse",author]|join %}
10 | {% set title_left = author %}
11 | {% set title_right = articles|count %}
12 | {% set entry_list = articles %}
13 | {{ article_panel_list(parent,id,title_left,title_right,entry_list) }}
14 |
15 | {% endblock %}
16 |
--------------------------------------------------------------------------------
/templates/disqus_script.html:
--------------------------------------------------------------------------------
1 |
2 |
15 |
16 |
--------------------------------------------------------------------------------
/templates/piwik.html:
--------------------------------------------------------------------------------
1 | {% if PIWIK_URL and PIWIK_SITE_ID %}
2 |
16 | {% endif %}
--------------------------------------------------------------------------------
/templates/tags.html:
--------------------------------------------------------------------------------
1 | {% set name = "Tags" %}
2 | {% set link = "tags.html" %}
3 | {% extends "base.html" %}
4 |
5 | {% block content %}
6 | {% if tags %}
7 | 8 | {% from "macro.html" import taglist %} 9 | {{ taglist(tags, "#", "") }} 10 |
11 | 12 |9 | {% from 'macro.html' import taglist %} 10 | {{ taglist(categories, "#", "") }} 11 |
12 | 13 |