Add files via upload

This commit is contained in:
daveedmee 2025-07-16 20:07:35 +02:00 committed by GitHub
parent eab844f335
commit 81eda148b6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,121 +3,92 @@
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>nya! {{ page.title }}</title> <title>bleh</title>
<link rel="stylesheet" href="/assets/css/main.css" /> <link rel="stylesheet" href="main.css" />
</head> </head>
<body> <body>
<!-- Main container -->
<div class="parent">
<!-- top bar --> <!-- top bar -->
<div class="nav-top"> <div class="nav-top">
<img src="/assets/img/molly.png" alt="high mouse cherishing lunix. but fr tho, we need logo and stuff"> <a href="/"><img src="molly.png" alt="high mouse cherishing lunix. but fr tho, we need logo and stuff"></a>
<h1>{{ page.headline }}</h1> <h1>Headline</h1>
<p> <form action="#">
[[SEARCH BAR GOES HERE]] <input type="text" placeholder="Search.." name="search">
</p> <button type="submit"><i class="nf-fa-search"></i></button>
</form>
</div> </div>
<!-- everything underneath the top bar -->
<div class="container-main">
<div class="sidebar-left">
<!-- nav menu --> <!-- nav menu -->
<nav class="nav-main"> <div class="nav-main">
{% comment %} <a href="#" class="button" id="btn-1">About</a>
Sidenav is written in _includes/sidenav.html and <a href="#" class="button" id="btn-2">Linuxposting News</a>
is configured in _data/nav.yml. <a href="#" class="button" id="btn-3">Announcements</a>
{% endcomment %} <a href="#" class="button" id="btn-4">News</a>
{% include sidenav.html %} <a href="#" class="button" id="btn-5">Molly's Page</a>
</nav> </div>
<div class="nav-main">
<a href="/register/" class="button" id="btn-6">Register</a>
<a href="#" class="button" id="btn-7">Contact Us</a>
<a href="#" class="button" id="btn-8">Theme Selection</a>
</div>
<!-- icons at the bottom --> <!-- icons at the bottom -->
<div class="nav-icons"> <div class="nav-icons">
<a href="#"> <a href="#" class="button" id="mbr-btn">
<div class="button" id="btn-1"> <img src="icon.png">Members
<img src="/assets/img/icon.png"><p>members</p>
<!-- This links to the list --> <!-- This links to the list -->
<!-- Icon with multiple mice including Molly --> <!-- Icon with multiple mice including Molly -->
</div>
</a> </a>
<a href="https://w.linuxposting.xyz" target="_blank"> <a href="#" class="button" id="waf-btn">
<div class="button" id="btn-2"> <img src="icon.png">Wafrn
<img src="/assets/img/icon.png"><p>wafrn</p>
<!-- Molly with waffle icon --> <!-- Molly with waffle icon -->
</div>
</a> </a>
<a href="https://mail.linuxposting.xyz" target="_blank"> <a href="#" class="button" id="mail-btn">
<div class="button" id="btn-3"> <img src="icon.png">Mail
<img src="/assets/img/icon.png"><p>webmail</p>
<!-- Molly with letter icon --> <!-- Molly with letter icon -->
</div>
</a> </a>
<a href="#"> <a href="#" class="button" id="frm-btn">
<div class="button" id="btn-4"> <img src="icon.png">Forum
<img src="/assets/img/icon.png"><p>forum</p>
<!-- Molly with music icon --> <!-- Molly with music icon -->
</div>
</a> </a>
</div> </div>
</div>
<div class="content">
<p>text</p>
</div>
<div class="sidebar-right">
<!-- the chapter or link list at the top right --> <!-- the chapter or link list at the top right -->
<div class="content-table"> <div class="content-table">
<p>Table of Contents</p> <h5>Table of Contents</h5>
{% comment %} <ol>
Table of contents generated by https://github.com/allejo/jekyll-toc . <li>If we had content with chapters, it would go here</li>
The file is included as toc.html in the _includes directory. <li>Oh yeah, very good structure</li>
{% endcomment %} <li>another point</li>
{% include toc.html html=content %} </ol>
</div> </div>
<div class="n-feed news"> <div class="news">
<a class="news-type-title" href="#">News</a>
<div class="news-arts">
{% for article in site.news %}
<div class="news-item"> <div class="news-item">
<a href="{{ article.url }}"> <h5>Announcements</h5>
<h5>{{ article.title }}</h5> <p>Server restart at 23:00 UTC</p>
</a>
</div> </div>
{% else %} <a href="/feed.xml" class="button-small">
<div class="news-item"> <img src="icon.png">RSS Feed
<p>No news articles available at the moment.</p>
</div>
{% endfor %}
</div>
<div class="news-rss-subscribe">
<!-- Style me like a button -->
<a href="/feed.xml">
<span>RSS Feed
<!-- Pixel Molly with 'RSS icon' icon --> <!-- Pixel Molly with 'RSS icon' icon -->
</span>
</a> </a>
</div> </div>
</div> <div class="news">
<div class="n-feed announce">
<a class="news-type-title" href="#">Announcements</a>
<div class="news-arts">
{% for announcement in site.announce %}
<div class="news-item"> <div class="news-item">
<a href="{{ announcment.url }}"> <h5>NEWS NEWS NEWS</h5>
<h5>{{ announcement.title }}</h5> <p>Read here more about whatever shenanigans we are up to</p>
</a>
</div> </div>
{% else %} <a href="#" class="button-small">
<div class="news-item"> <img src="icon.png">Read more
<p>No announcements available at the moment.</p>
</div>
{% endfor %}
</div>
<div class="news-rss-subscribe">
<!-- Style me like a button -->
<a href="/feed.xml">
<span>RSS Feed
<!-- Pixel Molly with 'RSS icon' icon --> <!-- Pixel Molly with 'RSS icon' icon -->
</span>
</a> </a>
</div> </div>
</div> </div>
<div class="content">
{{ content }}
</div>
</div> </div>
</body> </body>
</html> </html>