Skip to content
Snippets Groups Projects
Commit 5c44239e authored by Jacek Lebioda's avatar Jacek Lebioda
Browse files

Pages without `order` should appear in menu by default now

parent ada7d48c
No related branches found
No related tags found
No related merge requests found
...@@ -40,11 +40,13 @@ ...@@ -40,11 +40,13 @@
{%- assign my_pages = site.pages | sort:"order" -%} {%- assign my_pages = site.pages | sort:"order" -%}
{%- for my_page in my_pages -%} {%- for my_page in my_pages -%}
{%- if my_page.title and my_page.autogen == nil and my_page.order > 0 -%} {%- if my_page.title and my_page.autogen == nil -%}
{%- if page.title contains my_page.title -%} {%- if my_page.order != nil or my_page.order != '' or my_page.order > 0 -%}
<a class="active page-link{%- if site.new_menu -%}2 {%- endif -%}" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a> {%- if page.title contains my_page.title -%}
{% else %} <a class="active page-link{%- if site.new_menu -%}2 {%- endif -%}" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
<a class="page-link{%- if site.new_menu -%}2 {%- endif -%}" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a> {% else %}
<a class="page-link{%- if site.new_menu -%}2 {%- endif -%}" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
{%- endif -%}
{%- endif -%} {%- endif -%}
{%- endif -%} {%- endif -%}
{%- endfor -%} {%- endfor -%}
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
Gem::Specification.new do |spec| Gem::Specification.new do |spec|
spec.name = "jekyll-theme-lcsb-default" spec.name = "jekyll-theme-lcsb-default"
spec.version = "0.2.11" spec.version = "0.2.12"
spec.authors = ["Trefex", "jaceklebioda_lux"] spec.authors = ["Trefex", "jaceklebioda_lux"]
spec.email = ["lcsb-sysadmins@uni.lu"] spec.email = ["lcsb-sysadmins@uni.lu"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment