- Removing all of the remaining frontend leftover from hugo
This commit is contained in:
parent
3041d7fb20
commit
3905f0f3d3
1
frontend/.gitattributes
vendored
1
frontend/.gitattributes
vendored
@ -1 +0,0 @@
|
|||||||
*.gif filter=lfs diff=lfs merge=lfs -text
|
|
@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
title: "{{ replace .Name "-" " " | title }}"
|
|
||||||
date: {{ .Date }}
|
|
||||||
draft: true
|
|
||||||
---
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
|||||||
baseURL = 'https://clips.shockrah.xyz/'
|
|
||||||
languageCode = 'en-us'
|
|
||||||
title = "Shockrah's Clips"
|
|
||||||
|
|
||||||
theme = "clippable"
|
|
||||||
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
title: Shockrah's Clips
|
|
||||||
description: Clips I think are kinda kewl
|
|
||||||
image: /favicon.png
|
|
||||||
---
|
|
@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
title: Shockrah's Clips
|
|
||||||
description: stay a while and watch
|
|
||||||
image: /favicon.png
|
|
||||||
type: collection
|
|
||||||
---
|
|
@ -1,20 +0,0 @@
|
|||||||
The MIT License (MIT)
|
|
||||||
|
|
||||||
Copyright (c) 2021 YOUR_NAME_HERE
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
||||||
this software and associated documentation files (the "Software"), to deal in
|
|
||||||
the Software without restriction, including without limitation the rights to
|
|
||||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
||||||
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
||||||
subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
||||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
||||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
||||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
||||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@ -1,2 +0,0 @@
|
|||||||
+++
|
|
||||||
+++
|
|
@ -1,11 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
{{- partial "head.html" . -}}
|
|
||||||
<body>
|
|
||||||
{{- partial "header.html" . -}}
|
|
||||||
<div id="content">
|
|
||||||
{{- block "main" . }}{{- end }}
|
|
||||||
</div>
|
|
||||||
{{- partial "footer.html" . -}}
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,15 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
{{- partial "head.html" . -}}
|
|
||||||
<script src="/js/collection.js"></script>
|
|
||||||
<body>
|
|
||||||
<div id="layout">
|
|
||||||
<div class="content">
|
|
||||||
{{- block "main" . -}}{{- end -}}
|
|
||||||
<div class="video-gallery" id="main-container">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
|||||||
{{ define "main" }}
|
|
||||||
{{ .Content }}
|
|
||||||
<h1 id="title">{{ .Title }}</h1>
|
|
||||||
{{ end }}
|
|
@ -1,14 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
{{- partial "head.html" . -}}
|
|
||||||
<script src="/js/index.js"></script>
|
|
||||||
<body>
|
|
||||||
<div id="layout">
|
|
||||||
<div class="content">
|
|
||||||
<h1>{{ .Title }}</h1>
|
|
||||||
<div class="video-gallery" id="main-container">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,32 +0,0 @@
|
|||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
<link rel="stylesheet" type="text/css" href="/css/style.css">
|
|
||||||
<link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/pure-min.css" integrity="sha384-nn4HPE8lTHyVtfCBi5yW9d20FjT8BJwUXyWZT9InLYax14RDjBj46LmSztkmNP9w" crossorigin="anonymous">
|
|
||||||
<link rel="shortcut icon" type="image/png" href="/favicon.png"/>
|
|
||||||
{{ $title := print .Title }}
|
|
||||||
{{ if .IsHome }}{{ $title = .Site.Title}}{{end}}
|
|
||||||
<title>{{ $title }}</title>
|
|
||||||
<meta property="og:title" content="{{ $title }}">
|
|
||||||
<meta property="og:site_name" content="Shockrah's not-a-blog">
|
|
||||||
{{ $url := .RelPermalink | absURL }}
|
|
||||||
<meta property="og:url" content="{{$url}}">
|
|
||||||
{{ $desc := print .Description }}
|
|
||||||
{{ if .IsHome }}{{ $desc = .Params.Description }}{{end}}
|
|
||||||
<meta property="og:description" content="{{ $desc }}">
|
|
||||||
<meta property="og:type" content="website">
|
|
||||||
{{ $ogvideo := "" }}
|
|
||||||
{{ if .Params.Video }}
|
|
||||||
{{ $ogvideo = .Params.Video }}
|
|
||||||
<meta property="og:video" content="{{ $ogvideo }}">
|
|
||||||
<meta property="og:video:width" content="640">
|
|
||||||
<meta property="og:video:height" content="480">
|
|
||||||
{{ else }}
|
|
||||||
{{ $ogimage := "/favicon.png" }}
|
|
||||||
{{ if .Params.Image }}
|
|
||||||
{{ $ogimage = .Params.Image }}
|
|
||||||
{{ end }}
|
|
||||||
<meta property="og:image" content="{{ $ogimage }}">
|
|
||||||
{{ end }}
|
|
||||||
</head>
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:92c03626e5ad404ee4aee5925be8a2d3c01eb628f3f2dd7ce41ee56ce1807e8a
|
|
||||||
size 2381961
|
|
@ -1,46 +0,0 @@
|
|||||||
html, body, div, tag {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
border: 0;
|
|
||||||
font-size: 100%;
|
|
||||||
vertical-align: baseline;
|
|
||||||
background: #212121;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
* {
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
.content {
|
|
||||||
margin: 0 auto;
|
|
||||||
padding: 0 2em;
|
|
||||||
line-height: 1.6em;
|
|
||||||
color: whitesmoke;
|
|
||||||
}
|
|
||||||
.video-gallery {
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.video-block {
|
|
||||||
padding: 1em;
|
|
||||||
width: 400px;
|
|
||||||
line-height: 1em;
|
|
||||||
margin-right: 1em;
|
|
||||||
margin-bottom: 1em;
|
|
||||||
background: #191818;
|
|
||||||
border-radius: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color:white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pure-form {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.pure-img {
|
|
||||||
border-radius: 0.5em;
|
|
||||||
}
|
|
@ -1,21 +0,0 @@
|
|||||||
# theme.toml template for a Hugo theme
|
|
||||||
# See https://github.com/gohugoio/hugoThemes#themetoml for an example
|
|
||||||
|
|
||||||
name = "Clippable"
|
|
||||||
license = "MIT"
|
|
||||||
licenselink = "https://github.com/yourname/yourtheme/blob/master/LICENSE"
|
|
||||||
description = ""
|
|
||||||
homepage = "http://example.com/"
|
|
||||||
tags = []
|
|
||||||
features = []
|
|
||||||
min_version = "0.41.0"
|
|
||||||
|
|
||||||
[author]
|
|
||||||
name = ""
|
|
||||||
homepage = ""
|
|
||||||
|
|
||||||
# If porting an existing theme
|
|
||||||
[original]
|
|
||||||
name = ""
|
|
||||||
homepage = ""
|
|
||||||
repo = ""
|
|
Loading…
Reference in New Issue
Block a user