File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4242PLUGINS = ("linkclass" ,)
4343
4444# Theme
45- THEME = "simple "
45+ THEME = "theme/ "
4646# TODO: LINKS/SOCIAL
4747LINKS = (
4848 ("Pelican" , "https://getpelican.com/" ),
Original file line number Diff line number Diff line change 1+ {% extends "!simple/base.html" %}
2+
3+ {% block nav %}
4+ < nav > < ul >
5+ NAV
6+ {% for title, link in MENUITEMS %}
7+ < li > < a href ="{{ link }} "> {{ title }}</ a > </ li >
8+ {% endfor %}
9+ {% if DISPLAY_PAGES_ON_MENU %}
10+ {% for p in pages %}
11+ < li > < a href ="{{ SITEURL }}/{{ p.url }} " {% if p ==page %} aria-current ="page " {% endif %} > {{ p.title }}</ a > </ li >
12+ {% endfor %}
13+ {% endif %}
14+ {% if DISPLAY_CATEGORIES_ON_MENU %}
15+ {% for cat, null in categories %}
16+ < li > < a href ="{{ SITEURL }}/{{ cat.url }} " {% if cat ==category %} aria-current ="page " {% endif %} > {{ cat}}</ a > </ li >
17+ {% endfor %}
18+ {% endif %}
19+ {% endblock %}
You can’t perform that action at this time.
0 commit comments