initial commit
This commit is contained in:
commit
5be46ec3fa
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
[submodule "themes/hugo-dusk"]
|
||||||
|
path = themes/hugo-dusk
|
||||||
|
url = https://github.com/gyorb/hugo-dusk
|
6
archetypes/default.md
Normal file
6
archetypes/default.md
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
draft: true
|
||||||
|
---
|
||||||
|
|
38
config.toml
Normal file
38
config.toml
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
baseURL = "/"
|
||||||
|
languageCode = "en-us"
|
||||||
|
title = "Symphogear Live Info Center"
|
||||||
|
canonifyurls = true
|
||||||
|
theme = "hugo-dusk"
|
||||||
|
copyright = "Published by YameteTomete; All Symphogear content is property of its respective owners"
|
||||||
|
paginate = 3
|
||||||
|
|
||||||
|
[author]
|
||||||
|
name = "louis"
|
||||||
|
|
||||||
|
SectionPagesMenu = "main"
|
||||||
|
|
||||||
|
[markup]
|
||||||
|
[markup.highlight]
|
||||||
|
style = "rrt"
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
name = "Posts"
|
||||||
|
weight = -120
|
||||||
|
identifier = "post"
|
||||||
|
url = "/post/"
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
name = "Tags"
|
||||||
|
weight = -110
|
||||||
|
identifier = "tag"
|
||||||
|
url = "/tags/"
|
||||||
|
|
||||||
|
[params.meta]
|
||||||
|
keywords = "symphogear, live, concert"
|
||||||
|
description = "Symphogear Live information provided by YameteTomete"
|
||||||
|
|
||||||
|
[params]
|
||||||
|
theme_colors = "purple-dark"
|
||||||
|
twitter = "YameteTomete"
|
||||||
|
discord = "https://discord.gg/fpQZQ8g"
|
||||||
|
official = "https://symphogear-xv.com/live2020/"
|
26
content/post/live2020_postponed.md
Normal file
26
content/post/live2020_postponed.md
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
+++
|
||||||
|
title = "Symphogear Live 2020 Postponed Indefinitely"
|
||||||
|
decription = ""
|
||||||
|
tags = [
|
||||||
|
"symphogear",
|
||||||
|
"live",
|
||||||
|
"2020",
|
||||||
|
"postponement",
|
||||||
|
]
|
||||||
|
date = "2020-09-11"
|
||||||
|
categories = [
|
||||||
|
"Symphogear Live 2020",
|
||||||
|
]
|
||||||
|
+++
|
||||||
|
|
||||||
|
Unfortunately, Symphogear Live 2020, originally scheduled for September 13,
|
||||||
|
2020, has been postponed indefinitely due to the COVID-19 pandemic. Check back
|
||||||
|
here when the next live is announced for information and tips for attending as
|
||||||
|
a foreigner. Don't forget to also follow us on [Twitter](https://twitter.com/YameteTomete)
|
||||||
|
and join our [Discord](https://discord.gg/fpQZQ8g).
|
||||||
|
|
||||||
|
<!--more-->
|
||||||
|
|
||||||
|
Q) Why did you bother making this site
|
||||||
|
|
||||||
|
A) Because I noticed this domain was available
|
23
layouts/_default/summary.html
Normal file
23
layouts/_default/summary.html
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
<article class="post-preview">
|
||||||
|
|
||||||
|
<header>
|
||||||
|
<h2 class="title"> <a href='{{ .Permalink }}'> {{ .Title }}</a> </h2>
|
||||||
|
<div class="meta">
|
||||||
|
<div class="date">
|
||||||
|
{{ .Date.Format "2 Jan, 2006" }}
|
||||||
|
</div>
|
||||||
|
{{ partial "tags.html" . }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<div class="summary">
|
||||||
|
{{ .Summary }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="rmore">
|
||||||
|
<a href='{{ .Permalink }}' class="rmore">Read more</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</article>
|
31
layouts/partials/social-links.html
Normal file
31
layouts/partials/social-links.html
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
|
||||||
|
<div class="social-links-header">
|
||||||
|
{{with .Site.Params.official}}
|
||||||
|
<a href="{{.}}"><div class="social-link">Official Webpage</div></a>
|
||||||
|
{{end}}
|
||||||
|
|
||||||
|
{{with .Site.Params.email}}
|
||||||
|
<a href="mailto:{{.}}"><div class="social-link">email</div></a>
|
||||||
|
{{end}}
|
||||||
|
|
||||||
|
{{with .Site.Params.github}}
|
||||||
|
<a href="https://github.com/{{.}}" target="_blank"><div class="social-link">gh</div></a>
|
||||||
|
{{end}}
|
||||||
|
|
||||||
|
{{with .Site.Params.gitlab}}
|
||||||
|
<a href="https://gitlab.com/{{.}}" target="_blank"><div class="social-link">gl</div></a>
|
||||||
|
{{end}}
|
||||||
|
|
||||||
|
{{with .Site.Params.twitter}}
|
||||||
|
<a href="https://twitter.com/{{.}}" target="_blank"><div class="social-link">Twitter</div></a>
|
||||||
|
{{end}}
|
||||||
|
|
||||||
|
{{with .Site.Params.discord}}
|
||||||
|
<a href="{{.}}" target="_blank"><div class="social-link">Discord</div></a>
|
||||||
|
{{end}}
|
||||||
|
|
||||||
|
{{with .Site.Params.linkedin}}
|
||||||
|
<a href="https://www.linkedin.com/in/{{.}}" target="_blank"><div class="social-link">in</div></a>
|
||||||
|
{{end}}
|
||||||
|
|
||||||
|
</div>
|
173
static/css/purple-dark.css
Normal file
173
static/css/purple-dark.css
Normal file
@ -0,0 +1,173 @@
|
|||||||
|
|
||||||
|
/*
|
||||||
|
* main green: #99cc66
|
||||||
|
* */
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--main-bg-color: #101010;
|
||||||
|
--main-text: #ffffff;
|
||||||
|
--main-sec: #7B1FA2; /* main secondary color for the site */
|
||||||
|
--code-quote-bg: #1D1F21; /* background color for quotes and code blocks */
|
||||||
|
--copyright: #808080; /* copyright text color */
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background: var(--main-bg-color);
|
||||||
|
color: var(--main-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: var(--main-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
.__h_instagram.card {
|
||||||
|
border: 1px solid #303030 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.__h_instagram .card-text {
|
||||||
|
color: var(--main-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
.__h_instagram .card-header {
|
||||||
|
color: var(--main-bg-color);
|
||||||
|
background-color: #101010;
|
||||||
|
}
|
||||||
|
|
||||||
|
.__h_instagram .card-body {
|
||||||
|
color: var(--main-bg-color);
|
||||||
|
background-color: #101010;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
background: var(--main-bg-color);
|
||||||
|
border: 1px solid #303030;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* syntax highlight code block table backround
|
||||||
|
* looks better if overwritten.
|
||||||
|
* */
|
||||||
|
.post .content .highlight table {
|
||||||
|
background-color: #202020 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
background: var(--main-bg-color);
|
||||||
|
border-left: 3px solid var(--main-sec);
|
||||||
|
}
|
||||||
|
|
||||||
|
table { margin: 1em auto; border-collapse: collapse; }
|
||||||
|
table, th, td { border: 1px solid #5C5C5C; }
|
||||||
|
tr:hover { background: #1D1F21; }
|
||||||
|
th { background: #101010; }
|
||||||
|
.siteTitle a {
|
||||||
|
color: var(--main-sec);
|
||||||
|
}
|
||||||
|
|
||||||
|
.post {
|
||||||
|
background: #202020;
|
||||||
|
border-left: 1px solid #303030;
|
||||||
|
border-right: 1px solid #303030;
|
||||||
|
border-top: 1px solid #303030;
|
||||||
|
border-radius: 0.2em;
|
||||||
|
box-shadow: 0 1px 2px 0 #000000, 0 2px 5px 0 #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.post .content h1{ color: var(--main-sec); }
|
||||||
|
.post .content h2{ color: var(--main-sec); }
|
||||||
|
.post .content h3{ color: var(--main-sec); }
|
||||||
|
.post .content h4{ color: var(--main-sec); }
|
||||||
|
.post .content h5{ color: var(--main-sec); }
|
||||||
|
.post .content h6{ color: var(--main-sec); }
|
||||||
|
.post .content a:hover { color: var(--main-sec); }
|
||||||
|
.social-link:hover { color: var(--main-sec); }
|
||||||
|
.nav-item-title:hover { color: var(--main-sec); }
|
||||||
|
.tag a:hover { color: var(--main-sec); }
|
||||||
|
.copyright { color: var(--copyright); }
|
||||||
|
.poweredby { color: var(--copyright); }
|
||||||
|
.poweredby a { color: var(--copyright); }
|
||||||
|
|
||||||
|
.post-preview {
|
||||||
|
border: 1px solid #303030;
|
||||||
|
border-radius: 0.2em;
|
||||||
|
box-shadow: 0 1px 2px 0 #000000, 0 2px 5px 0 #000000;
|
||||||
|
background: #202020;
|
||||||
|
}
|
||||||
|
|
||||||
|
.post-preview .meta {
|
||||||
|
border-bottom: 1px solid #303030;
|
||||||
|
}
|
||||||
|
|
||||||
|
.post-preview .title a {
|
||||||
|
color: var(--main-sec);
|
||||||
|
}
|
||||||
|
|
||||||
|
.post-footer-data {
|
||||||
|
background-color: #101010;
|
||||||
|
border-bottom: 1px solid #303030;
|
||||||
|
}
|
||||||
|
|
||||||
|
.post-footer hr {
|
||||||
|
color: #303030;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-item {
|
||||||
|
background: #202020;
|
||||||
|
border: 1px solid #303030;
|
||||||
|
border-radius: 0.2em;
|
||||||
|
box-shadow: 0 1px 2px 0 #000000, 0 2px 5px 0 #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-item .meta {
|
||||||
|
border-top: 1px dotted #303030;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-item a:hover{
|
||||||
|
text-decoration: underline;
|
||||||
|
color: var(--main-sec);
|
||||||
|
}
|
||||||
|
|
||||||
|
.post-list .title {
|
||||||
|
color: var(--main-sec);
|
||||||
|
}
|
||||||
|
|
||||||
|
.rmore {
|
||||||
|
color: var(--main-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
.rmore a {
|
||||||
|
background: var(--main-bg-color);
|
||||||
|
border: 1px solid #303030;
|
||||||
|
}
|
||||||
|
|
||||||
|
.rmore a:hover {
|
||||||
|
background: #202020;
|
||||||
|
color: var(--main-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
.terms {
|
||||||
|
background: #202020;
|
||||||
|
border: 1px solid #303030;
|
||||||
|
box-shadow: 0 1px 2px 0 #000000, 0 2px 5px 0 #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.terms .term {
|
||||||
|
border-bottom: 1px dotted #303030;
|
||||||
|
}
|
||||||
|
|
||||||
|
.term a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
color: var(--main-sec);
|
||||||
|
}
|
||||||
|
|
||||||
|
.err-404 {
|
||||||
|
border: 1px solid #303030;
|
||||||
|
border-radius: 0.2em;
|
||||||
|
background: #202020;
|
||||||
|
box-shadow: 0 1px 2px 0 #000000, 0 2px 5px 0 #000000;
|
||||||
|
}
|
1
themes/hugo-dusk
Submodule
1
themes/hugo-dusk
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 0e157150a086f4f384b8ee2fce3ee907955f1023
|
Loading…
x
Reference in New Issue
Block a user