This commit is contained in:
fzorb 2025-03-06 12:45:26 +02:00
parent f25c5cb60c
commit 3475c31d71
38 changed files with 158 additions and 359 deletions

View file

@ -1,183 +0,0 @@
body {
color: #222;
font-family: sans-serif;
/* thanks wuxtu xoxo */
margin: 0;
background-color: rgb(238, 238, 238);
}
.header {
background-color: #363636;
color: white;
padding-top: 4px;
border-bottom: 4px solid #252525;
margin: 0 auto;
}
footer {
border-top: 1px solid #222;
margin-top: 1rem;
}
.header a {
color: rgb(228, 228, 228);
text-decoration: none;
}
.header a:hover {
color: rgb(194, 194, 194)
}
.container {
margin: 0 auto;
max-width: 1000px;
}
.header .container {
display: flex;
justify-content: space-between;
}
.header ul {
list-style-type: none;
margin: 0;
margin-left: 4px;
justify-content: flex-end;
}
.header li {
display: inline;
margin-right: 4px;
}
.jumbotron {
padding-bottom: 2rem;
padding-top: 2rem;
background-color: rgb(255, 196, 255);
width: 100%;
max-width: 100%;
text-align: center;
margin-bottom: 4px;
}
.rent-buttons {
margin: auto;
text-align: center;
color: rgb(0, 0, 0);
margin-top: 2rem;
margin-bottom: 2rem;
}
.rent-buttons .button1 {
padding: 1.5rem;
background-color: rgb(141, 212, 212);
max-width: 18rem;
border: 3px solid rgb(132, 184, 184);
border-radius: 8px;
font-size: medium;
margin-right: 4px;
color: black;
}
.rent-buttons .button1:hover {
background-color: rgb(106, 156, 156);
border: 3px solid rgb(78, 109, 109);
cursor: pointer;
color: white;
}
.rent-buttons .button2 {
padding: 1.5rem;
background-color: rgb(212, 141, 141);
max-width: 18rem;
border: 3px solid rgb(184, 132, 132);
border-radius: 8px;
font-size: medium;
color: black;
}
.rent-buttons .button2:hover {
background-color: rgb(156, 106, 106);
border: 3px solid rgb(119, 85, 85);
cursor: pointer;
color: white;
}
.infobox {
margin-top: 50px;
}
.newstitle {
color: rgb(73, 94, 151);
font-size: 1rem;
}
.newsbox {
background-color: white;
padding: 4px;
margin-bottom: 4px;
border-radius: 4px;
border: solid 2px rgb(204, 204, 204);
font-size: 12px;
}
.newsbox p {
margin: 0;
}
.newscontainer {
max-width: 700px;
margin: 0 auto;
}
.newscontainer h2 {
text-align: center;
margin-bottom: 0;
}
.news .meta {
margin: 0;
font-size: 10px;
}
.plangrid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 4px;
grid-row-gap: 4px;
max-width: 750px;
margin: 0 auto;
}
.plan1 { grid-area: 1 / 1 / 2 / 2; }
.plan2 { grid-area: 1 / 2 / 2 / 3; }
.plan3 { grid-area: 1 / 3 / 2 / 4; }
.plan-header {
background-color: rgb(235, 175, 65);
padding: 4px;
text-align: center;
font-weight: 500;
font-size: 1.2rem;
color: white;
border-bottom: 2px solid rgb(182, 136, 51);
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
.plan-main {
background-color: rgb(240, 230, 213);
padding: 4px;
font-weight: 500;
}
.plan-button {
background-color: rgb(235, 175, 65);
border-top: 2px solid rgb(182, 136, 51);
padding: 4px;
text-align: center;
font-weight: 500;
font-size: 1.2rem;
max-width: 100%;
color: white;
display: block;
text-decoration: none;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
}
.plan-button:hover {
background-color: rgb(204, 151, 52);
border-top: 2px solid rgb(121, 91, 36);
}

View file

@ -1,14 +0,0 @@
{{ define "main" }}
{{ .Content }}
{{ range site.RegularPages }}
<div class="news">
<a href="{{ .RelPermalink }}" class="newstitle">{{ .LinkTitle }}</a>
<p class="meta">{{ .Date.Format "2006/01/02" }}</p>
<div class="newsbox">
<p>{{ .Summary | strings.Truncate 384}}{{ if .Truncated }}<a href="{{ .RelPermalink }}"> (read more)</a>{{ end }}</p>
</div>
</div>
{{ end }}
{{ end }}

View file

@ -1,10 +0,0 @@
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
{{ $dateHuman := .Date | time.Format ":date_long" }}
<time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
{{ .Content }}
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
{{ end }}

View file

@ -1 +0,0 @@
<p>Copyright {{ now.Year }}. All rights reserved.</p>

View file

@ -1,9 +0,0 @@
{{- with resources.Get "css/main.css" }}
{{- if eq hugo.Environment "development" }}
<link rel="stylesheet" href="{{ .RelPermalink }}">
{{- else }}
{{- with . | minify | fingerprint }}
<link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
{{- end }}
{{- end }}
{{- end }}

View file

@ -1,11 +0,0 @@
<nav>
<div class="header">
<div class="container">
<a href="/">fzorb.xyz</a>
<ul>
{{ partial "menu.html" (dict "menuID" "main" "page" .) }}
</ul>
</div>
</div>

View file

@ -0,0 +1,22 @@
body {
color: #222;
font-family: sans-serif;
line-height: 1.5;
margin: 1rem;
max-width: 768px;
}
header {
border-bottom: 1px solid #222;
margin-bottom: 1rem;
}
footer {
border-top: 1px solid #222;
margin-top: 1rem;
}
a {
color: #00e;
text-decoration: none;
}

View file

@ -0,0 +1 @@
console.log('This site was generated by Hugo.');

View file

@ -4,16 +4,15 @@
{{ partial "head.html" . }}
</head>
<body>
<header>
{{ partial "header.html" . }}
</header>
<main>
<div class="container">
<div class="content">
<header>
{{ partial "header.html" . }}
</header>
<hr>
{{ block "main" . }}{{ end }}
</div>
</main>
<footer>
{{ partial "footer.html" . }}
</footer>
<footer>
{{ partial "footer.html" . }}
</footer>
</div>
</body>
</html>

View file

@ -0,0 +1,17 @@
{{ define "main" }}
<div class="row">
<main class="one">
{{ .Content }}
</main>
<main class="two">
<ul>
{{ range ( where .Site.RegularPages "Type" "posts" | first 4 ) }}
<li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
{{ end }}
<li><a href="/posts">... and more</a>
</ul>
</main>
</div>
{{ end }}

View file

@ -1,8 +1,9 @@
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
<ul>
{{ range .Pages }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ .Summary }}
<li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
{{ end }}
</ul>
{{ end }}

View file

@ -0,0 +1,10 @@
{{ define "main" }}
<a href="/"><- return to index</a>
<h1>{{ .Title }}</h1>
{{ if .Date }}
<time datetime="{{ .Date }}">{{ .Date.Format "January 2, 2006" }}</time>
{{ end }}
{{ .Content }}
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
{{ end }}

View file

@ -0,0 +1,9 @@
<hr>
<div class="links">
Live free or die<br>
[<a href="mailto:fzorb@fzorb.xyz">email</a>] // [<a href="xmpp:fzorb@xmpp.is">xmpp</a>] // [<a href="/pub.asc">pgp</a>]<br>
All content on this page is released under <a href='https://creativecommons.org/publicdomain/zero/1.0/'>CC0</a>
</div>
<!--<div class="links">
[<a href="">tor</a>] // [<a href="">i2p</a>] // [<a href="">yggdrasil</a>]
</div>-->

View file

@ -0,0 +1,2 @@
<link rel="stylesheet" href="/style.css">

View file

@ -0,0 +1 @@
<h1>{{ site.Title }}</h1>

View file

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Before After
Before After

View file

@ -0,0 +1,33 @@
body {
background: #221c1c;
color: #fdfaff;
font-family: Serif;
}
a {
color: #FFB2C6ED;
}
.links {
text-align: center;
}
.content {
max-width: 550px;
text-align: justified;
margin: 0 auto;
}
.row {
display: grid;
grid-template-columns: 50% 50%;
gap: 0px 2px;
grid-auto-flow: row;
grid-template-areas:
"one two";
}
.one { grid-area: one; }
.two { grid-area: two; }