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

Merge branch '28-add-a-possibility-to-have-submenus' into 'develop'

Sub-menus

See merge request elixir/jekyll-elixir-theme!6
parents 9d647661 eaf09feb
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,12 @@ layout: default ...@@ -8,7 +8,12 @@ layout: default
<h2>{{ page.section }}</h2> <h2>{{ page.section }}</h2>
<ul> <ul>
{% for link in page.pages %} {% for link in page.pages %}
<li><a href="{{ link.href | relative_url }}" {% if link.active %}class="active"{% endif %}>{{ link.title }}</a></li> <li>
<a href="{{ link.href | relative_url }}"
class="{% if link.active %}active {% endif %}{% if link.smaller %}smaller {% endif %}">
{{ link.title }}
</a>
</li>
{% endfor %} {% endfor %}
</ul> </ul>
</div> </div>
......
...@@ -8,7 +8,12 @@ layout: default ...@@ -8,7 +8,12 @@ layout: default
<h2>{{ page.section }}</h2> <h2>{{ page.section }}</h2>
<ul> <ul>
{% for link in page.pages %} {% for link in page.pages %}
<li><a href="{{ link.href | relative_url }}" {% if link.active %}class="active"{% endif %}>{{ link.title }}</a></li> <li>
<a href="{{ link.href | relative_url }}"
class="{% if link.active %}active {% endif %}{% if link.smaller %}smaller {% endif %}">
{{ link.title }}
</a>
</li>
{% endfor %} {% endfor %}
</ul> </ul>
</div> </div>
......
...@@ -7,7 +7,12 @@ layout: default ...@@ -7,7 +7,12 @@ layout: default
<h2>{{ page.section }}</h2> <h2>{{ page.section }}</h2>
<ul> <ul>
{% for link in page.news_pages %} {% for link in page.news_pages %}
<li><a href="{{ link.href | relative_url }}" {% if link.active %}class="active" {% endif %}>{{ link.title }}</a></li> <li>
<a href="{{ link.href | relative_url }}"
class="{% if link.active %}active {% endif %}{% if link.smaller %}smaller {% endif %}">
{{ link.title }}
</a>
</li>
{% endfor %} {% endfor %}
</ul> </ul>
</div> </div>
......
...@@ -124,6 +124,11 @@ ...@@ -124,6 +124,11 @@
color: $COLOR_LINK_ELIXIR !important; color: $COLOR_LINK_ELIXIR !important;
} }
a.smaller {
font-size: smaller;
margin-left: 25px;
}
a:hover { a:hover {
color: #060606; color: #060606;
text-decoration: underline; text-decoration: underline;
......
about.md 0 → 100644
---
layout: left_col
title: About us
section: About
permalink: /about-node
pages:
- href: '/about-node'
title: First link
- href: '/about-node'
title: Second link
- href: '/about-node'
title: Third link
- href: '/about-node'
title: First sub link
smaller: true
- href: '/about-node'
title: Second sub-link
smaller: true
- href: '/about-node'
title: Fourth link
---
## Services
**Repository for high quality Translational Medicine data**
Integration of well-curated clinical and molecular data from cohorts and large consortia. Implementation of standardised electronic data capture, data harmonisation and curation.
----
**High-performance data access and computing services**
Sustainable access management according to well-defined criteria, in order to meet the security and accountability requirements of ELIXIR, of the General European data protection regulation (GDPR), and of the research community. Platforms and tools to allow efficient data access and analysis.
---
## Support and user training
Workshops and courses on data management, curation, analytics and visualisation. Continuous education of software developers, data managers and researchers.
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
Gem::Specification.new do |spec| Gem::Specification.new do |spec|
spec.name = "jekyll-elixir-theme" spec.name = "jekyll-elixir-theme"
spec.version = "0.9.1" spec.version = "0.9.2"
spec.authors = ["jacek.lebioda"] spec.authors = ["jacek.lebioda"]
spec.email = ["jacek.lebioda@uni.lu"] spec.email = ["jacek.lebioda@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