diff options
-rw-r--r-- | .gitmodules | 3 | ||||
m--------- | eevee | 0 | ||||
-rw-r--r-- | pelican-bootstrap3/templates/base.html | 4 | ||||
-rw-r--r-- | pelican-bootstrap3/templates/page.html | 2 | ||||
m--------- | yapeme | 0 |
5 files changed, 9 insertions, 0 deletions
diff --git a/.gitmodules b/.gitmodules index b75df44..ecd1494 100644 --- a/.gitmodules +++ b/.gitmodules @@ -217,3 +217,6 @@ [submodule "lab"] path = lab url = https://github.com/mothsART/pelican-lab +[submodule "eevee"] + path = eevee + url = https://github.com/kura/eevee.git diff --git a/eevee b/eevee new file mode 160000 +Subproject a7b708192462387b5087ff200df5b4c768ddb19 diff --git a/pelican-bootstrap3/templates/base.html b/pelican-bootstrap3/templates/base.html index 610d050..1ad6611 100644 --- a/pelican-bootstrap3/templates/base.html +++ b/pelican-bootstrap3/templates/base.html @@ -105,12 +105,14 @@ <div class="navbar {% if BOOTSTRAP_NAVBAR_INVERSE %}navbar-inverse{% else %}navbar-default{% endif %} navbar-fixed-top" role="navigation"> <div class="container{% if BOOTSTRAP_FLUID %}-fluid{% endif %}"> <div class="navbar-header"> + {% if MENUITEMS or (PAGES and DISPLAY_PAGES_ON_MENU) or (categories and DISPLAY_CATEGORIES_ON_MENU) %} <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> + {% endif %} <a href="{{ SITEURL }}/" class="navbar-brand"> {% if SITELOGO %}<img src="{{ SITEURL }}/{{ SITELOGO }}" width="{{ SITELOGO_SIZE }}"/> {% endif %} {% if not HIDE_SITENAME %}{{ SITENAME }}{% endif %} @@ -144,7 +146,9 @@ </form></span> </li> {% endif %} + {% if ARCHIVES_SAVE_AS %} <li><a href="{{ SITEURL }}/{{ ARCHIVES_URL | default('archives.html') }}"><i class="fa fa-th-list"></i><span class="icon-label">Archives</span></a></li> + {% endif %} </ul> </div> <!-- /.navbar-collapse --> diff --git a/pelican-bootstrap3/templates/page.html b/pelican-bootstrap3/templates/page.html index f8757fa..c4d35ee 100644 --- a/pelican-bootstrap3/templates/page.html +++ b/pelican-bootstrap3/templates/page.html @@ -46,7 +46,9 @@ {% block content %} <section id="content" class="body"> + {% if page.title %} <h1 class="entry-title">{{ page.title }}</h1> + {% endif %} {% import 'includes/translations.html' as translations with context %} {{ translations.translations_for(page) }} {% if PDF_PROCESSOR %} diff --git a/yapeme b/yapeme -Subproject a3b634fcf099c04c7d39d590eab3d5111c4cca3 +Subproject 02c10b6ebb6bc1d93c2834cde9a67f3493a77ba |