Links
66 |-
67 | {% for title,link in LINKS %}
68 |
- {{ title }} 69 | {% endfor %} 70 |
├── requirements.txt ├── themes └── bricks2 │ ├── README.md │ ├── static │ ├── img │ │ ├── background.png │ │ └── background_mobile.png │ ├── css │ │ ├── lamboz.css │ │ └── foundation.min.css │ └── js │ │ └── modernizr.js │ └── templates │ ├── credits.html │ ├── author.html │ ├── translations.html │ ├── archives.html │ ├── page.html │ ├── trademark.html │ ├── paginator.html │ ├── tags.html │ ├── analytics.html │ ├── categories.html │ ├── period_archives.html │ ├── piwik.html │ ├── tag.html │ ├── category.html │ ├── article_discus.html │ ├── article.html │ ├── index.html │ └── base.html ├── .gitignore ├── publishconf.py ├── pelicanconf.py ├── content └── pages │ └── about.md ├── Makefile └── tasks.py /requirements.txt: -------------------------------------------------------------------------------- 1 | pelican[Markdown] 2 | 3 | -------------------------------------------------------------------------------- /themes/bricks2/README.md: -------------------------------------------------------------------------------- 1 | Modified Pelican Bricks theme 2 | -------------------------------------------------------------------------------- /themes/bricks2/static/img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-review-site/main/themes/bricks2/static/img/background.png -------------------------------------------------------------------------------- /themes/bricks2/static/img/background_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leriomaggio/code-review-site/main/themes/bricks2/static/img/background_mobile.png -------------------------------------------------------------------------------- /themes/bricks2/templates/credits.html: -------------------------------------------------------------------------------- 1 |
4 | Proudly powered by Pelican. 5 |
6 |5 | {{ TRADEMARK_TEXT }} 6 |
7 |3 | {% if articles_page.has_previous() %} 4 | « 5 | {% endif %} 6 | Page {{ articles_page.number }} / {{ articles_paginator.num_pages }} 7 | {% if articles_page.has_next() %} 8 | » 9 | {% endif %} 10 |
11 | {% endif %} 12 | -------------------------------------------------------------------------------- /themes/bricks2/templates/tags.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {% block title %}{{ SITENAME }} - Tags{% endblock %} 4 | 5 | {% block content %} 6 |31 | {{ article.summary }} 32 |
33 |32 | {{ article.summary }} 33 |
34 |{{ SITESUBTITLE }}
10 |18 | {{ article.summary }} 19 |
20 | 21 |31 | {{ article.summary }} 32 |
33 | 34 | 35 |46 | {{ article.summary }} 47 |
48 | 49 |