initial commit
This commit is contained in:
commit
156bd8ddd6
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
public/
|
||||||
|
**/*.swp
|
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
|
||||||
|
---
|
||||||
|
|
37
config.toml
Normal file
37
config.toml
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
baseURL = "/"
|
||||||
|
languageCode = "en-us"
|
||||||
|
title = "YameteTomete Fansubs"
|
||||||
|
canonifyurls = true
|
||||||
|
theme = "hugo-dusk"
|
||||||
|
copyright = "2021 YameteTomete"
|
||||||
|
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, yametetomete, magireco"
|
||||||
|
description = "YameteTomete Fansubs Homepage"
|
||||||
|
|
||||||
|
[params]
|
||||||
|
theme_colors = "purple-dark"
|
||||||
|
twitter = "YameteTomete"
|
||||||
|
discord = "https://discord.gg/fpQZQ8g"
|
22
content/post/initial_post.md
Normal file
22
content/post/initial_post.md
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
+++
|
||||||
|
title = "Welcome to Our New Homepage"
|
||||||
|
decription = ""
|
||||||
|
tags = [
|
||||||
|
"meta",
|
||||||
|
]
|
||||||
|
date = "2021-01-14"
|
||||||
|
categories = [
|
||||||
|
"Meta",
|
||||||
|
]
|
||||||
|
summary = """
|
||||||
|
Welcome to our new homepage. Check back to keep up-to-date with news and
|
||||||
|
announcements regarding our releases and scheduled projects. Don't forget to
|
||||||
|
also follow us on [Twitter](https://twitter.com/YameteTomete) and join our
|
||||||
|
[Discord](https://discord.gg/fpQZQ8g).
|
||||||
|
"""
|
||||||
|
+++
|
||||||
|
|
||||||
|
Welcome to our new homepage. Check back to keep up-to-date with news and
|
||||||
|
announcements regarding our releases and scheduled projects. Don't forget to
|
||||||
|
also follow us on [Twitter](https://twitter.com/YameteTomete) and join our
|
||||||
|
[Discord](https://discord.gg/fpQZQ8g).
|
28
layouts/_default/summary.html
Normal file
28
layouts/_default/summary.html
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
<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 }}-->
|
||||||
|
{{ if .Params.postsummary }}
|
||||||
|
{{ .Params.postsummary | markdownify }}
|
||||||
|
{{ else }}
|
||||||
|
{{ .Summary }}
|
||||||
|
{{ end }}
|
||||||
|
</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