Skip to content

Instantly share code, notes, and snippets.

@jdittrich
Created May 28, 2015 19:15
Show Gist options
  • Save jdittrich/3bcc2ce472720999e070 to your computer and use it in GitHub Desktop.
Save jdittrich/3bcc2ce472720999e070 to your computer and use it in GitHub Desktop.
Pelican static blogging: creates a list entry with a link to the index and highlights this link. Accounts for alternative locations via INDEX_SAVE_AS
{% if DISPLAY_INDEX_ON_PAGES_MENU %}
<li class="pure-menu-item{% if page_name == 'index' or page_name~".html" == INDEX_SAVE_AS %} active{% endif %}"><a class="pure-menu-link" href="{{ SITEURL }}/{% if INDEX_SAVE_AS %}{{INDEX_SAVE_AS}}{% else %}/{% endif %}">
Blog
</a></li>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment