forked from CathIAS/TLIO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.html
46 lines (46 loc) · 1.59 KB
/
default.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{% if page.menubar and page.show_sidebar %}
{% assign content_width = 'is-4' %}
{% elsif page.menubar or page.show_sidebar %}
{% assign content_width = 'is-8' %}
{% else %}
{% assign content_width = 'is-12' %}
{% endif %}
<!DOCTYPE html>
<html>
{% include head.html %}
<body>
{% include header.html %}
{% unless page.hide_hero %}
{% include hero.html %}
{% endunless %}
{% include callouts.html %}
<section class="section">
<div class="container">
<div class="columns">
{% if page.menubar %}
<div class="column is-4-desktop is-4-tablet">
{% include menubar.html %}
</div>
{% endif %}
<div class="column {{ content_width }}">
{% include tabs.html %}
{% include showcase.html %}
{% include sponsors.html %}
{{ content }}
</div>
{% if site.posts and page.show_sidebar %}
<div class="column is-4-desktop is-12-tablet">
{% include latest-posts.html %}
</div>
{% endif %}
</div>
</div>
</section>
{% unless page.hide_footer %}
{% include footer.html %}
{% endunless %}
<script src="{{ site.baseurl }}/assets/js/app.js" type="text/javascript"></script>
<script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>
{%- include footer-scripts.html -%}
</body>
</html>