Moving to jekyll
This commit is contained in:
parent
dfe7fee97c
commit
befdfa3206
6
_data/navigation.yml
Normal file
6
_data/navigation.yml
Normal file
|
@ -0,0 +1,6 @@
|
|||
- name: Home
|
||||
link: /
|
||||
- name: About
|
||||
link: /about.html
|
||||
- name: Blog
|
||||
link: /blog.html
|
5
_includes/navigation.html
Normal file
5
_includes/navigation.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
<nav>
|
||||
{% for item in site.data.navigation %}
|
||||
<a href="{{ item.link }}"{% if page.url == item.link %} class="current"{% endif %}>{{ item.name }}</a>
|
||||
{% endfor %}
|
||||
</nav>
|
16
_layouts/default.html
Normal file
16
_layouts/default.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>{{ page.title }}</title>
|
||||
<link rel="stylesheet" href="/assets/css/styles.css"
|
||||
</head>
|
||||
<body>
|
||||
<div style="text-align:center;">
|
||||
<div>
|
||||
<img src="/assets/images/omegablk.png">
|
||||
</div>
|
||||
{% include navigation.html %}
|
||||
{{ content }}
|
||||
</body>
|
||||
</html>
|
12
_layouts/post.html
Normal file
12
_layouts/post.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
layout: default
|
||||
---
|
||||
<p style="font-weight: bold; margin: 0;">United Interwebs Department of Internautics:</p>
|
||||
<p style="font-weight: bold; margin: 0;">Bureau of Decentralized Resistance</p>
|
||||
<p style="margin: 0;">{{ page.date | date_to_string }}</p>
|
||||
<p> For Immediate Release </p>
|
||||
|
||||
{{ content }}
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
9
_posts/2025-03-09-join.md
Normal file
9
_posts/2025-03-09-join.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
layout: post
|
||||
author: Sparticus
|
||||
---
|
||||
Those we have elected to represent us and protect our constitution have failed us. Trump, alongside Musk and DOGE are ignoring the constitution and turning our country into a fascist oligarchy. Therefore, it falls to us, The People, to support and defend the constitution of the United States.
|
||||
|
||||
There is no more republican vs democrat, or liberal vs conservative. There is only the fascists and those that would stand against them.
|
||||
|
||||
This page serves as a gateway for internauts new to the resistance. In the future there will be information on how to find and join various resistance groups. In the meantime, the Department of Internautics is openly recruiting and welcoming resisters of all backgrounds.
|
13
_sass/main.scss
Normal file
13
_sass/main.scss
Normal file
|
@ -0,0 +1,13 @@
|
|||
.current {
|
||||
color: green;
|
||||
}
|
||||
body {
|
||||
background-color: black;
|
||||
color: white;
|
||||
}
|
||||
|
||||
div {
|
||||
max-width: 700px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
39
_site/2025/03/09/join.html
Normal file
39
_site/2025/03/09/join.html
Normal file
|
@ -0,0 +1,39 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Join</title>
|
||||
<link rel="stylesheet" href="/assets/css/styles.css"
|
||||
</head>
|
||||
<body>
|
||||
<div style="text-align:center;">
|
||||
<div>
|
||||
<img src="/assets/images/omegablk.png">
|
||||
</div>
|
||||
<nav>
|
||||
|
||||
<a href="/">Home</a>
|
||||
|
||||
<a href="/about.html">About</a>
|
||||
|
||||
<a href="/blog.html">Blog</a>
|
||||
|
||||
</nav>
|
||||
|
||||
<p style="font-weight: bold; margin: 0;">United Interwebs Department of Internautics:</p>
|
||||
<p style="font-weight: bold; margin: 0;">Bureau of Decentralized Resistance</p>
|
||||
<p style="margin: 0;">09 Mar 2025</p>
|
||||
<p> For Immediate Release </p>
|
||||
|
||||
<p>Those we have elected to represent us and protect our constitution have failed us. Trump, alongside Musk and DOGE are ignoring the constitution and turning our country into a fascist oligarchy. Therefore, it falls to us, The People, to support and defend the constitution of the United States.</p>
|
||||
|
||||
<p>There is no more republican vs democrat, or liberal vs conservative. There is only the fascists and those that would stand against them.</p>
|
||||
|
||||
<p>This page serves as a gateway for internauts new to the resistance. In the future there will be information on how to find and join various resistance groups. In the meantime, the Department of Internautics is openly recruiting and welcoming resisters of all backgrounds.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</body>
|
||||
</html>
|
28
_site/about.html
Normal file
28
_site/about.html
Normal file
|
@ -0,0 +1,28 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>About</title>
|
||||
<link rel="stylesheet" href="/assets/css/styles.css"
|
||||
</head>
|
||||
<body>
|
||||
<div style="text-align:center;">
|
||||
<div>
|
||||
<img src="/assets/images/omegablk.png">
|
||||
</div>
|
||||
<nav>
|
||||
|
||||
<a href="/">Home</a>
|
||||
|
||||
<a href="/about.html" class="current">About</a>
|
||||
|
||||
<a href="/blog.html">Blog</a>
|
||||
|
||||
</nav>
|
||||
|
||||
<h1 id="about-page">About page</h1>
|
||||
|
||||
<p>This is a test about page</p>
|
||||
|
||||
</body>
|
||||
</html>
|
16
_site/assets/css/styles.css
Normal file
16
_site/assets/css/styles.css
Normal file
|
@ -0,0 +1,16 @@
|
|||
.current {
|
||||
color: green;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: black;
|
||||
color: white;
|
||||
}
|
||||
|
||||
div {
|
||||
max-width: 700px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=styles.css.map */
|
1
_site/assets/css/styles.css.map
Normal file
1
_site/assets/css/styles.css.map
Normal file
|
@ -0,0 +1 @@
|
|||
{"version":3,"sourceRoot":"","sources":["../../_sass/main.scss"],"names":[],"mappings":"AAAA;EACE;;;AAEF;EACE;EACA;;;AAGF;EACE;EACA;EACA","sourcesContent":[".current {\n color: green;\n}\nbody {\n background-color: black;\n color: white;\n}\n\ndiv {\n max-width: 700px;\n margin-left: auto;\n margin-right: auto;\n}\n"],"file":"styles.css"}
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
36
_site/blog.html
Normal file
36
_site/blog.html
Normal file
|
@ -0,0 +1,36 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Blog</title>
|
||||
<link rel="stylesheet" href="/assets/css/styles.css"
|
||||
</head>
|
||||
<body>
|
||||
<div style="text-align:center;">
|
||||
<div>
|
||||
<img src="/assets/images/omegablk.png">
|
||||
</div>
|
||||
<nav>
|
||||
|
||||
<a href="/">Home</a>
|
||||
|
||||
<a href="/about.html">About</a>
|
||||
|
||||
<a href="/blog.html" class="current">Blog</a>
|
||||
|
||||
</nav>
|
||||
|
||||
<h1>Latest Posts</h1>
|
||||
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<h2><a href="/2025/03/09/join.html">Join</a></h2>
|
||||
<p>Those we have elected to represent us and protect our constitution have failed us. Trump, alongside Musk and DOGE are ignoring the constitution and turning our country into a fascist oligarchy. Therefore, it falls to us, The People, to support and defend the constitution of the United States.</p>
|
||||
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,29 +1,31 @@
|
|||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Resist - A Field Guide for Subversives</title>
|
||||
<meta charset="utf-8" />
|
||||
|
||||
<! --
|
||||
Yes, I know its ugly, but its thrown together quick.
|
||||
|
||||
Cypherpunks feel free to contact via pubkey.
|
||||
|
||||
More coming very soon
|
||||
-->
|
||||
<meta charset="utf-8">
|
||||
<title>A field guide for subversives</title>
|
||||
<link rel="stylesheet" href="/assets/css/styles.css"
|
||||
</head>
|
||||
<body style="background-color: black">
|
||||
<body>
|
||||
<div style="text-align:center;">
|
||||
<div>
|
||||
<img src=omegablk.png>
|
||||
<p style="color: white; font-weight: bold;">Resist</p>
|
||||
<!--<a href=preplist.txt style ="text-align:center; color: red;">Prep List</a> <br/> -->
|
||||
<img src="/assets/images/omegablk.png">
|
||||
</div>
|
||||
<nav>
|
||||
|
||||
<a href="/" class="current">Home</a>
|
||||
|
||||
<a href="/about.html">About</a>
|
||||
|
||||
<a href="/blog.html">Blog</a>
|
||||
|
||||
</nav>
|
||||
|
||||
<p style="color: white; font-weight: bold;">Resist</p>
|
||||
<a href=sparticus.pubkey.txt style="text-align:center; color: red;">GPG Pubkey</a> <br />
|
||||
<p style="color: white;">Matrix: @sparticus:weresist.is</p>
|
||||
<!--<a href=preplist.txt style ="text-align:center; color: red;">Prep List</a> <br/> -->
|
||||
</div>
|
||||
<a href=https://matrix.to/#/#department-of-internautics:weresist.is style="text-align:center; color: red;">United Interwebs Department of Internautics</a> <br/>
|
||||
<a href=https://matrix.to/#/#BureauOfDecentralizedResistance:weresist.is style="text-align:center; color: red;">Bureau of Decentralized Resistance</a>
|
||||
|
||||
</div>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
29
_site/index.html-bak
Normal file
29
_site/index.html-bak
Normal file
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<head>
|
||||
<title>Resist - A Field Guide for Subversives</title>
|
||||
<meta charset="utf-8" />
|
||||
|
||||
<! --
|
||||
Yes, I know its ugly, but its thrown together quick.
|
||||
|
||||
Cypherpunks feel free to contact via pubkey.
|
||||
|
||||
More coming very soon
|
||||
-->
|
||||
</head>
|
||||
<body style="background-color: black">
|
||||
<div style="text-align:center;">
|
||||
<div>
|
||||
<img src=omegablk.png>
|
||||
<p style="color: white; font-weight: bold;">Resist</p>
|
||||
<!--<a href=preplist.txt style ="text-align:center; color: red;">Prep List</a> <br/> -->
|
||||
<a href=sparticus.pubkey.txt style="text-align:center; color: red;">GPG Pubkey</a> <br />
|
||||
<p style="color: white;">Matrix: @sparticus:weresist.is</p>
|
||||
<!--<a href=preplist.txt style ="text-align:center; color: red;">Prep List</a> <br/> -->
|
||||
</div>
|
||||
<a href=https://matrix.to/#/#department-of-internautics:weresist.is style="text-align:center; color: red;">United Interwebs Department of Internautics</a> <br/>
|
||||
<a href=https://matrix.to/#/#BureauOfDecentralizedResistance:weresist.is style="text-align:center; color: red;">Bureau of Decentralized Resistance</a>
|
||||
|
||||
</div>
|
||||
<body>
|
||||
</html>
|
7
about.md
Normal file
7
about.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
layout: default
|
||||
title: About
|
||||
---
|
||||
# About page
|
||||
|
||||
This is a test about page
|
5
assets/css/styles.scss
Normal file
5
assets/css/styles.scss
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
---
|
||||
@import "main";
|
||||
|
||||
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
14
blog.html
Normal file
14
blog.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
layout: default
|
||||
title: Blog
|
||||
---
|
||||
<h1>Latest Posts</h1>
|
||||
|
||||
<ul>
|
||||
{% for post in site.posts %}
|
||||
<li>
|
||||
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
|
||||
{{ post.excerpt }}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
27
index.html
27
index.html
|
@ -1,29 +1,10 @@
|
|||
<!DOCTYPE html>
|
||||
<head>
|
||||
<title>Resist - A Field Guide for Subversives</title>
|
||||
<meta charset="utf-8" />
|
||||
|
||||
<! --
|
||||
Yes, I know its ugly, but its thrown together quick.
|
||||
|
||||
Cypherpunks feel free to contact via pubkey.
|
||||
|
||||
More coming very soon
|
||||
-->
|
||||
</head>
|
||||
<body style="background-color: black">
|
||||
<div style="text-align:center;">
|
||||
<div>
|
||||
<img src=omegablk.png>
|
||||
---
|
||||
layout: default
|
||||
title: A field guide for subversives
|
||||
---
|
||||
<p style="color: white; font-weight: bold;">Resist</p>
|
||||
<!--<a href=preplist.txt style ="text-align:center; color: red;">Prep List</a> <br/> -->
|
||||
<a href=sparticus.pubkey.txt style="text-align:center; color: red;">GPG Pubkey</a> <br />
|
||||
<p style="color: white;">Matrix: @sparticus:weresist.is</p>
|
||||
<!--<a href=preplist.txt style ="text-align:center; color: red;">Prep List</a> <br/> -->
|
||||
</div>
|
||||
<a href=https://matrix.to/#/#department-of-internautics:weresist.is style="text-align:center; color: red;">United Interwebs Department of Internautics</a> <br/>
|
||||
<a href=https://matrix.to/#/#BureauOfDecentralizedResistance:weresist.is style="text-align:center; color: red;">Bureau of Decentralized Resistance</a>
|
||||
|
||||
</div>
|
||||
<body>
|
||||
</html>
|
||||
|
|
29
index.html-bak
Normal file
29
index.html-bak
Normal file
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<head>
|
||||
<title>Resist - A Field Guide for Subversives</title>
|
||||
<meta charset="utf-8" />
|
||||
|
||||
<! --
|
||||
Yes, I know its ugly, but its thrown together quick.
|
||||
|
||||
Cypherpunks feel free to contact via pubkey.
|
||||
|
||||
More coming very soon
|
||||
-->
|
||||
</head>
|
||||
<body style="background-color: black">
|
||||
<div style="text-align:center;">
|
||||
<div>
|
||||
<img src=omegablk.png>
|
||||
<p style="color: white; font-weight: bold;">Resist</p>
|
||||
<!--<a href=preplist.txt style ="text-align:center; color: red;">Prep List</a> <br/> -->
|
||||
<a href=sparticus.pubkey.txt style="text-align:center; color: red;">GPG Pubkey</a> <br />
|
||||
<p style="color: white;">Matrix: @sparticus:weresist.is</p>
|
||||
<!--<a href=preplist.txt style ="text-align:center; color: red;">Prep List</a> <br/> -->
|
||||
</div>
|
||||
<a href=https://matrix.to/#/#department-of-internautics:weresist.is style="text-align:center; color: red;">United Interwebs Department of Internautics</a> <br/>
|
||||
<a href=https://matrix.to/#/#BureauOfDecentralizedResistance:weresist.is style="text-align:center; color: red;">Bureau of Decentralized Resistance</a>
|
||||
|
||||
</div>
|
||||
<body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user