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