added if else conditions for governance and swarm

This commit is contained in:
Udit Patel 2020-07-06 20:42:05 +05:30 committed by GitHub
parent a6708daa19
commit f99cb492a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,7 +29,21 @@
<!-- /jumbotron -->
<div class="container-fluid above-parallax">
{{ content }}
{% if page.title == 'Governance' %}
<!-- Board of Directors -->
{% include boardofdirectors.html %}
<!-- /Board of Directors -->
{{ content }}
{% elsif page.title == 'The Swarm' %}
{{ content }}
<!-- Foundations Hives-->
{% include hives.html %}
<!-- /Foundations Hives -->
{% else %}
{{ content }}
{% endif %}
</div>
</div>
@ -42,10 +56,14 @@
<!-- /globalParallaxContent -->
</div>
<!-- /globalParallax -->
<!-- Hives Modals -->
{% include hivesmodals.html %}
<!-- /Hives Modals -->
<!-- JSPart -->
{% include js.html %}
<!-- /JSPart -->
<!-- /JSPart -->
</body>
</html>