This repository has been archived on 2025-04-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Vacy/_layouts/portfolio.html

23 lines
852 B
HTML
Raw Normal View History

2022-04-30 23:07:33 -04:00
{% include master/head.html %}
{% include master/header.html %}
<script src="/assets/js/tab-switcher.js"></script>
<banner>
<img src="/assets/images/Christmas with Friends.png">
</banner>
<div class="content">
<h1 id="for-banner">{{page.title}}</h1>
<section id="extra-menu">
<button onclick="toTab('2021', this, 'var(--blue-light)'); document.getElementById('extra-placeholder').style.display = 'none';" class="tab">2021</button>
<button onclick="toTab('2022', this, 'var(--blue-light)'); document.getElementById('extra-placeholder').style.display = 'none';" class="tab">2022</button>
</section>
<section id="extra-placeholder">
2022-05-01 21:27:56 -05:00
<p>Select a year to see content...</p>
2022-04-30 23:07:33 -04:00
</section>
{{ content }}
2022-04-30 23:07:33 -04:00
{% include master/footer.html %}
</div>
<style>
#Portfolio {background: var(--blue-light);}
</style>