anonymousland/_layouts/default1.html
NebulaOnion c555f8fdfd Combine CSS, convert to Sass and minify (#65)
Co-authored-by: deathrow <privatedeathrow@protonmail.com>
Co-authored-by: NebulaOnion <84784521+nebulaonion@users.noreply.github.com>
Reviewed-on: https://git.anonymousland.org/anonymousland/anonymousland/pulls/65
2023-01-08 15:06:00 +00:00

78 lines
2.7 KiB
HTML

---
---
<!DOCTYPE html>
<html lang="en">
{% seo %}
{% include head.html %}
<body class="animated fadeIn">
<div class="container">
<div id="background-div">
<svg id="background-svg">
<lineargradient id="Gradient1" x1="0" x2="0" y1="0" y2="1">
<stop stop-opacity="0" class="bgColor2" offset="0%" />
<stop stop-opacity="0.5" class="bgColor2" offset="10%" />
<stop stop-opacity="0.5" class="bgColor1" offset="40%" />
<stop stop-opacity="0" class="bgColor1" offset="100%" />
</lineargradient>
<g id="bg-layer1"></g>
<g id="bg-layer2" class="hide"></g>
<g id="bg-layer3"></g>
<g id="bg-layer4"></g>
</svg>
</div>
<div style="text-align:center;">
<section class="header">
{% include header.html %}
</section>
</div>
<section class="content">
<div class="row">
<!-- <div class="col-sm-2">
<div class="pane-separator hidden-xs" style="margin-bottom:30em;"></div>
<div class="left-pane">
</div>
</div> -->
<div class="col-sm-8 col-sm-offset-2 content-div">
<div class="page-separator hidden-xs">
<h1 class="h1-strip" style="padding-bottom:8em; margin-bottom: 0;"></h1>
</div>
<div class="page-separator visible-xs">
<h1 class="h1-strip" style="padding-bottom:2em; margin-bottom: 0;"></h1>
</div>
<h1 class="post-title page-title" id="title">
<div style="text-align:center;">
<a href="#title">{{ page.title }}</a></div></h1>
{{ content }}
</div>
<div class="col-sm-2">
<div class="pane-separator hidden-xs" style="margin-bottom:30em;"></div>
<div class="pane-separator visible-xs" style="margin-bottom:5em;"></div>
<div class="right-pane" style="margin-left: 1em;">
{% if site.avatar == true %}
<div class="avatar">
<center>
{% if site.avatar_image != null %}
<img src="{{ site.avatar_image | prepend: '/' | prepend: site.baseurl }}" alt="me" class="avatar-image">
{% endif %}
{% if site.avatar_description != null %}
<p class="avatar-description">{{site.avatar_description}}</p>
{% endif %}
<div class="right-links">
{% include links.html %}
</div>
</center>
</div>
{% endif %}
</div>
</div>
</div>
</section>
<section class="footer">
{% include footer.html %}
</section>
</div>
</body>
</html>