Skullfairy 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +2 -0
- data/_includes/footer.html +5 -0
- data/_includes/head.html +8 -0
- data/_includes/header.html +11 -0
- data/_includes/javascript.html +30 -0
- data/_includes/socialmedia.html +8 -0
- data/_includes/style.html +126 -0
- data/_includes/theme.html +1 -0
- data/_layouts/default.html +8 -0
- data/_layouts/index.html +8 -0
- data/_layouts/page.html +8 -0
- data/_layouts/post.html +8 -0
- data/assets/banner.png +0 -0
- metadata +100 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 421231e685da129da8e3a74c76882937666b807936fabd518e1b1d46737969e6
|
4
|
+
data.tar.gz: 474c2206bc2b6723403ac572fa35db4779acb9937f96b94e6d4de847fce946a6
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a71f78a8ad47b747fba580bbf207b138037d789747082683dbe979f6088f19fc63403d11e071b8f1ed74e9694d094b2a9fa5c1529794cb62c7ff93599692c738
|
7
|
+
data.tar.gz: cfe733c6912e9d60c7549cb43cb97c980be921eafec6d0417e744a8a244aa812caf6eb513b2e7315c23e6d2dfefb43c5583552945b64a89f8b06c3ff58cda067
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2021 Gitea
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
data/_includes/head.html
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
<meta charset="UTF-8">
|
2
|
+
|
3
|
+
<center>
|
4
|
+
<div>
|
5
|
+
<h1>SkullFairy Wasteland</h1>
|
6
|
+
<center><img src="https://raw.githubusercontent.com/LWFlouisa/SkullFairyWasteland/main/assets/banner.png" width="75%" alt="A video platform for clinical vampires."></center>
|
7
|
+
</div>
|
8
|
+
</center>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<center>
|
2
|
+
<div>
|
3
|
+
<h3>
|
4
|
+
<a href="https://lwflouisa.github.io/SkullFairyWasteland/Blog/archive">Blog</a>
|
5
|
+
<a href="https://lwflouisa.github.io/SkullFairyWasteland/Gallery/archive">Art Show</a>
|
6
|
+
<a href="https://lwflouisa.github.io/SkullFairyWasteland/Videos/archive">The Tube</a>
|
7
|
+
<a href="https://lwflouisa.github.io/SkullFairyWasteland/Podcast/archive">Podcast</a>
|
8
|
+
<a href="https://lwflouisa.github.io/VampirePortfolio">Exit Skullfairy Realm</a>
|
9
|
+
</h3>
|
10
|
+
</div>
|
11
|
+
</center>
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<script>
|
2
|
+
var slideIndex = 1;
|
3
|
+
showSlides(slideIndex);
|
4
|
+
|
5
|
+
// Next/previous controls
|
6
|
+
function plusSlides(n) {
|
7
|
+
showSlides(slideIndex += n);
|
8
|
+
}
|
9
|
+
|
10
|
+
// Thumbnail image controls
|
11
|
+
function currentSlide(n) {
|
12
|
+
showSlides(slideIndex = n);
|
13
|
+
}
|
14
|
+
|
15
|
+
function showSlides(n) {
|
16
|
+
var i;
|
17
|
+
var slides = document.getElementsByClassName("mySlides");
|
18
|
+
var dots = document.getElementsByClassName("dot");
|
19
|
+
if (n > slides.length) {slideIndex = 1}
|
20
|
+
if (n < 1) {slideIndex = slides.length}
|
21
|
+
for (i = 0; i < slides.length; i++) {
|
22
|
+
slides[i].style.display = "none";
|
23
|
+
}
|
24
|
+
for (i = 0; i < dots.length; i++) {
|
25
|
+
dots[i].className = dots[i].className.replace(" active", "");
|
26
|
+
}
|
27
|
+
slides[slideIndex-1].style.display = "block";
|
28
|
+
dots[slideIndex-1].className += " active";
|
29
|
+
}
|
30
|
+
</script>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<a href="https://diasp.org/u/lwflouisa">Diasporg</a>
|
2
|
+
<a href="https://pixelfed.de/LWFlouisa">Pixelfed</a>
|
3
|
+
<a href="https://video.ploud.jp/c/mytalkshow/videos?languageOneOf=en&s=2">Peertube</a>
|
4
|
+
<a href="https://pawoo.net/web/accounts/1287123">Pawoo</a>
|
5
|
+
<a href="https://flowfo.me/profile/SRWeaver#artworks">Flowfo</a>
|
6
|
+
<a href="https://codeberg.org/LWFlouisa">Codeberg</a>
|
7
|
+
<a href="https://git.disroot.org/LWFlouisa">Disroot</a>
|
8
|
+
<a href="https://lwflouisa.github.io/UploadedFairy">Webcomic</a>
|
@@ -0,0 +1,126 @@
|
|
1
|
+
<style>
|
2
|
+
body {
|
3
|
+
background-color: #050505;
|
4
|
+
|
5
|
+
padding-left: 120px;
|
6
|
+
padding-right: 120px;
|
7
|
+
}
|
8
|
+
|
9
|
+
h1, h2, h3, h4, h5, h6, p, pre {
|
10
|
+
color: white;
|
11
|
+
font-weight: bold;
|
12
|
+
}
|
13
|
+
|
14
|
+
h1, h2, h3, h4, h5, h6 {
|
15
|
+
text-align: center;
|
16
|
+
}
|
17
|
+
|
18
|
+
hr {
|
19
|
+
color: 8A0000;
|
20
|
+
}
|
21
|
+
|
22
|
+
a {
|
23
|
+
color: white;
|
24
|
+
}
|
25
|
+
|
26
|
+
div {
|
27
|
+
background-color: #A80000;
|
28
|
+
}
|
29
|
+
|
30
|
+
|
31
|
+
* {box-sizing:border-box}
|
32
|
+
|
33
|
+
/* Slideshow container */
|
34
|
+
.slideshow-container {
|
35
|
+
max-width: 1000px;
|
36
|
+
position: relative;
|
37
|
+
margin: auto;
|
38
|
+
}
|
39
|
+
|
40
|
+
/* Hide the images by default */
|
41
|
+
.mySlides {
|
42
|
+
display: none;
|
43
|
+
}
|
44
|
+
|
45
|
+
/* Next & previous buttons */
|
46
|
+
.prev, .next {
|
47
|
+
cursor: pointer;
|
48
|
+
position: absolute;
|
49
|
+
top: 50%;
|
50
|
+
width: auto;
|
51
|
+
margin-top: -22px;
|
52
|
+
padding: 16px;
|
53
|
+
color: white;
|
54
|
+
font-weight: bold;
|
55
|
+
font-size: 18px;
|
56
|
+
transition: 0.6s ease;
|
57
|
+
border-radius: 0 3px 3px 0;
|
58
|
+
user-select: none;
|
59
|
+
}
|
60
|
+
|
61
|
+
/* Position the "next button" to the right */
|
62
|
+
.next {
|
63
|
+
right: 0;
|
64
|
+
border-radius: 3px 0 0 3px;
|
65
|
+
}
|
66
|
+
|
67
|
+
/* On hover, add a black background color with a little bit see-through */
|
68
|
+
.prev:hover, .next:hover {
|
69
|
+
background-color: rgba(0,0,0,0.8);
|
70
|
+
}
|
71
|
+
|
72
|
+
/* Caption text */
|
73
|
+
.text {
|
74
|
+
color: #f2f2f2;
|
75
|
+
font-size: 15px;
|
76
|
+
padding: 8px 12px;
|
77
|
+
position: absolute;
|
78
|
+
bottom: 8px;
|
79
|
+
width: 100%;
|
80
|
+
text-align: center;
|
81
|
+
}
|
82
|
+
|
83
|
+
|
84
|
+
/* Number text (1/3 etc) */
|
85
|
+
.numbertext {
|
86
|
+
color: #290000;
|
87
|
+
font-size: 12px;
|
88
|
+
padding: 8px 12px;
|
89
|
+
position: absolute;
|
90
|
+
top: 0;
|
91
|
+
}
|
92
|
+
|
93
|
+
/* The dots/bullets/indicators */
|
94
|
+
.dot {
|
95
|
+
cursor: pointer;
|
96
|
+
height: 15px;
|
97
|
+
width: 15px;
|
98
|
+
margin: 0 2px;
|
99
|
+
background-color: #6B0000;
|
100
|
+
border-radius: 50%;
|
101
|
+
display: inline-block;
|
102
|
+
transition: background-color 0.6s ease;
|
103
|
+
}
|
104
|
+
|
105
|
+
.active, .dot:hover {
|
106
|
+
background-color: #6B0000;
|
107
|
+
}
|
108
|
+
|
109
|
+
/* Fading animation */
|
110
|
+
.fade {
|
111
|
+
-webkit-animation-name: fade;
|
112
|
+
-webkit-animation-duration: 1.5s;
|
113
|
+
animation-name: fade;
|
114
|
+
animation-duration: 1.5s;
|
115
|
+
}
|
116
|
+
|
117
|
+
@-webkit-keyframes fade {
|
118
|
+
from {opacity: .4}
|
119
|
+
to {opacity: 1}
|
120
|
+
}
|
121
|
+
|
122
|
+
@keyframes fade {
|
123
|
+
from {opacity: .4}
|
124
|
+
to {opacity: 1}
|
125
|
+
}
|
126
|
+
</style>
|
@@ -0,0 +1 @@
|
|
1
|
+
<a href="">[ SkullFairy Wasteland ] by S.R. Weaver</a>
|
data/_layouts/index.html
ADDED
data/_layouts/page.html
ADDED
data/_layouts/post.html
ADDED
data/assets/banner.png
ADDED
Binary file
|
metadata
ADDED
@@ -0,0 +1,100 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: Skullfairy
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- LWFlouisa
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-10-13 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: jekyll
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.8'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.8'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.16'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.16'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '12.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '12.0'
|
55
|
+
description:
|
56
|
+
email:
|
57
|
+
- lwflouisa@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- LICENSE.txt
|
63
|
+
- README.md
|
64
|
+
- _includes/footer.html
|
65
|
+
- _includes/head.html
|
66
|
+
- _includes/header.html
|
67
|
+
- _includes/javascript.html
|
68
|
+
- _includes/socialmedia.html
|
69
|
+
- _includes/style.html
|
70
|
+
- _includes/theme.html
|
71
|
+
- _layouts/default.html
|
72
|
+
- _layouts/index.html
|
73
|
+
- _layouts/page.html
|
74
|
+
- _layouts/post.html
|
75
|
+
- assets/banner.png
|
76
|
+
homepage: https://lwflouisa.github.io/SkullFairyWasteland
|
77
|
+
licenses:
|
78
|
+
- MIT
|
79
|
+
metadata: {}
|
80
|
+
post_install_message:
|
81
|
+
rdoc_options: []
|
82
|
+
require_paths:
|
83
|
+
- lib
|
84
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0'
|
89
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
90
|
+
requirements:
|
91
|
+
- - ">="
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
requirements: []
|
95
|
+
rubyforge_project:
|
96
|
+
rubygems_version: 2.7.8
|
97
|
+
signing_key:
|
98
|
+
specification_version: 4
|
99
|
+
summary: Enter the realm of skullfairies.
|
100
|
+
test_files: []
|