-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update ELIXIR toolkit theme to 2.5.0
- Loading branch information
Showing
3 changed files
with
39 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,36 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
{% include head.html %} | ||
<body> | ||
{% include topnav.html %} | ||
<!-- Page Content --> | ||
<div class="container min-vh-100"> | ||
<!-- Content Row --> | ||
<div class="row gx-0 gx-lg-5"> | ||
<!-- Sidebar Column --> | ||
<div class="col-lg-3 {% if page.hide_sidebar %}sidebar-col{% endif %}"> | ||
{%- unless page.hide_sidebar %} | ||
{% include sidebar.html %} | ||
{%- else %} | ||
{%- if page.path == "index.md" %} | ||
{% include sidebar-news.html %} | ||
{% include sidebar-events.html %} | ||
{%- endif %} | ||
{%- endunless %} | ||
</div> | ||
<!-- Content Column --> | ||
<div class="col-lg-9 {% if page.hide_sidebar %}content-col{% endif %}"> | ||
{{content}} | ||
</div> | ||
</div> | ||
<body class="d-flex flex-column min-vh-100"{% unless page.toc == false %} data-bs-spy="scroll" data-bs-target="#toc-contents" data-bs-smooth-scroll="true" tabindex="0"{% endunless %}> | ||
{% if jekyll.environment == "development" %}{% include dev-info.html %}{% endif %} | ||
{% include topnav.html %} | ||
<!-- Page Content --> | ||
<div class="container flex-grow-1"> | ||
<!-- Content Row --> | ||
<div {% unless page.sidebar == nil or page.sidebar == false %}id="layout" class="gap-5"{% endunless %}> | ||
<!-- Sidebar --> | ||
{%- unless page.sidebar == nil or page.sidebar == false %} | ||
<aside id="sidebar"> | ||
{%- unless page.hide_sidebar %} | ||
{% include sidebar.html %} | ||
{%- else %} | ||
{%- if page.path == "index.md" %} | ||
{% include sidebar-news.html %} | ||
{% include sidebar-events.html %} | ||
{%- endif %} | ||
{%- endunless %} | ||
</aside> | ||
{% endunless %} | ||
<!-- Content --> | ||
{{content}} | ||
</div> | ||
{%- if site.theme_variables.back_to_top or site.theme_variables.back_to_top == nil %} | ||
<button id="back-to-top" class="btn btn-primary text-white" type="button" aria-hidden="true" onclick="topFunction()"> | ||
<i class="fa-solid fa-arrow-up"></i> | ||
</button> | ||
{%- endif %} | ||
{% include footer.html %} | ||
{% include cookie-popup.html %} | ||
</div> | ||
{%- if site.theme_variables.back_to_top or site.theme_variables.back_to_top == nil %} | ||
<button id="back-to-top" class="btn btn-primary rounded-3" type="button" aria-hidden="true" onclick="topFunction()"> | ||
<i class="fa-solid fa-arrow-up"></i> | ||
</button> | ||
{%- endif %} | ||
{% include footer.html %} | ||
{% include cookie-popup.html %} | ||
</body> | ||
</html> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters