mirror of
https://github.com/LBRYFoundation/lbryorg.git
synced 2025-08-23 20:47:23 +00:00
78 lines
2.2 KiB
HTML
78 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<!-- HeadPart -->
|
|
{% include head.html %}
|
|
<!-- /HeadPart -->
|
|
|
|
<body data-spy="scroll" data-target=".navbar" data-offset="100">
|
|
|
|
<!-- NavPart -->
|
|
{% include nav.html %}
|
|
<!-- /NavPart -->
|
|
|
|
<!-- globalParallax -->
|
|
<div class="parallax" id="global-parallax">
|
|
<img src="{{ page.bg-image }}" data-depth-factor="3" class="d-none d-sm-none d-md-none d-lg-block parallax-layer main-parallax-img" />
|
|
<div class="parallax-mask"></div>
|
|
<div class="parallax-bg"></div>
|
|
|
|
<!-- globalParallaxContent -->
|
|
<div class="parallax-content">
|
|
<!-- jumbotron -->
|
|
<div class="jumbotron text-white parallax-layer" data-depth-factor="4" style="background-color: transparent;" id="#">
|
|
<div class="container text-sm-center pt-5">
|
|
<center><h1 class="display-4" Ideas style="font-weight: bold;">{{ page.title }}</h1></center>
|
|
<hr class="heading">
|
|
<center><p class="lead">{{ page.subhead }}</p></center>
|
|
</div>
|
|
</div>
|
|
<!-- /jumbotron -->
|
|
|
|
<div class="container-fluid above-parallax">
|
|
{% if page.title == 'Governance' %}
|
|
<!-- Board of Directors -->
|
|
{% include boardofdirectors.html %}
|
|
<!-- /Board of Directors -->
|
|
{{ content }}
|
|
|
|
{% elsif page.title == 'The Swarm' %}
|
|
<!-- Foundations Hives-->
|
|
{% include hives.html %}
|
|
<!-- /Foundations Hives -->
|
|
{{ content }}
|
|
|
|
|
|
{% elsif page.title == 'LBRY Arena' %}
|
|
{{ content }}
|
|
<!-- Past LBRY Arena Events-->
|
|
{% include arena_events.html %}
|
|
<!-- Past LBRY Arena Events -->
|
|
{% else %}
|
|
{{ content }}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
<!-- FooterPart -->
|
|
{% include footer.html %}
|
|
<!-- /FooterPart -->
|
|
|
|
|
|
</div>
|
|
<!-- /globalParallaxContent -->
|
|
</div>
|
|
<!-- /globalParallax -->
|
|
|
|
<!-- Hives Modals -->
|
|
{% include hivesmodals.html %}
|
|
<!-- /Hives Modals -->
|
|
<!--Arena Modals-->
|
|
{% include eventmodals.html %}
|
|
<!--Arena Modals-->
|
|
|
|
<!-- JSPart -->
|
|
{% include js.html %}
|
|
<!-- /JSPart -->
|
|
|
|
</body>
|
|
</html>
|