Skip to content

Commit 91d1bb5

Browse files
authored
Add files via upload
1 parent 2aa83ef commit 91d1bb5

1 file changed

Lines changed: 63 additions & 0 deletions

File tree

_layouts/docs-general.html

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
---
2+
layout: docs
3+
hidden:
4+
- header
5+
- navigator
6+
- related_posts
7+
- banner
8+
- image
9+
- title
10+
- tags
11+
- subtitle
12+
- sidebar
13+
---
14+
15+
<div style="overflow: hidden; border-radius: 10px; padding: 30px; border: 3px outset wheat; background-image: url('https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/41611b21-a7ce-419b-bc77-4644f8105930/ddyvolk-bd4cd675-831a-4867-bef3-c87c1825efb7.png/v1/fill/w_1600,h_900,q_80,strp/ps2_startup_background__blender_remake__by_therprtnetwork_ddyvolk-fullview.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9OTAwIiwicGF0aCI6IlwvZlwvNDE2MTFiMjEtYTdjZS00MTliLWJjNzctNDY0NGY4MTA1OTMwXC9kZHl2b2xrLWJkNGNkNjc1LTgzMWEtNDg2Ny1iZWYzLWM4N2MxODI1ZWZiNy5wbmciLCJ3aWR0aCI6Ijw9MTYwMCJ9XV0sImF1ZCI6WyJ1cm46c2VydmljZTppbWFnZS5vcGVyYXRpb25zIl19.YMlW5kVW11KGZzx1bEu7hl-IBKopRBklOk0S7_6vzVY'); background-position: center" class="homebrew_div">
16+
<div style="height: 0; width: 25%; padding-bottom: 20%">
17+
<div style="maxwidth: 150; maxheight: 150; float: left; margin-right: 25px; border-radius: 5px; padding: 10px; border: 2px outset white">
18+
<img maxwidth="150" maxheight="150" id="thumbnail" src="https://img.freepik.com/premium-photo/painting-blue-wave-with-green-background_1258935-2628.jpg">
19+
</div>
20+
</div></br>
21+
<div style="float: right; display: flex; flex-direction: column">
22+
<div style="float: right">
23+
<h1 style="font-family: Montserrat; text-align: left; font-size: 2.5em; font-weight: bold; color: #ffe599; text-shadow: 0 0 3px #000000, 0 0 5px #000000">{{ page.title }}</h1>
24+
</div></br>
25+
<div style="float: right">
26+
<p style="font-size: 1.0em; text-align: left; font-weight: bold; color: #99b6b9; text-shadow: 0 0 3px #000000, 0 0 5px #000000">{{ page.subtitle }}</p>
27+
</div>
28+
</div>
29+
</div>
30+
31+
32+
</br><hr>
33+
34+
{%- include sidebar/article-menu.html -%}
35+
36+
<div class="homebrew_tags_container">
37+
<div class="homebrew_tag_l">
38+
<div><strong><i class="fa fa-history"></i> Last Updated:</strong> {{ page.last_updated }}</div>
39+
{% if page.authors %}
40+
<div><strong><i class="fa fa-user"></i> Authors:</strong> {{ page.authors }}</div>
41+
{% endif %}
42+
</div>
43+
<div class="homebrew_tag_r">
44+
<div><strong><i class="fa fa-code"></i> Page Status:</strong> {{ page.wiptag }}</div>
45+
{% if page.factcheck %}
46+
<div><strong><i class="fa fa-check-circle"></i> Factchecked:</strong> {{ page.factcheck }}</div>
47+
{% endif %}
48+
</div>
49+
</div>
50+
</br><hr></br>
51+
52+
{% if page.thumbnail %}
53+
<script>
54+
function srcThumbnail() {
55+
document.getElementById("thumbnail").src = '{{ page.thumbnail }}';
56+
document.getElementById("thumbnail").maxwidth = '150';
57+
document.getElementById("thumbnail").maxheight = '150';
58+
}
59+
srcThumbnail()
60+
</script>
61+
{% endif %}
62+
63+
{{ content }}

0 commit comments

Comments
 (0)