jekyll-podcaster 1.0.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 +23 -0
- data/README.md +136 -0
- data/_includes/analytics.html +9 -0
- data/_includes/cover.html +1 -0
- data/_includes/date.html +18 -0
- data/_includes/disqus.html +5 -0
- data/_includes/footer.html +5 -0
- data/_includes/head.html +40 -0
- data/_includes/header.html +29 -0
- data/_includes/player.html +5 -0
- data/_includes/playerjs.html +58 -0
- data/_includes/shownotes.html +20 -0
- data/_includes/sidebar.html +26 -0
- data/_includes/video.html +4 -0
- data/_layouts/default.html +38 -0
- data/_layouts/home.html +91 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +47 -0
- data/_sass/archive.scss +33 -0
- data/_sass/background.scss +119 -0
- data/_sass/base.scss +55 -0
- data/_sass/header.scss +187 -0
- data/_sass/home.scss +62 -0
- data/_sass/player.scss +6 -0
- data/_sass/post.scss +63 -0
- data/_sass/sidebar.scss +87 -0
- data/assets/css/main.scss +4 -0
- data/assets/css/mobile.scss +186 -0
- data/assets/img/Podcast_Cover.jpg +0 -0
- data/assets/img/Podcast_Cover_500.jpg +0 -0
- data/assets/img/Podcast_Cover_Small.jpg +0 -0
- data/assets/js/disqus.js +11 -0
- data/assets/screenshots/Homepage.png +0 -0
- data/assets/screenshots/Mobile.png +0 -0
- metadata +119 -0
data/_sass/home.scss
ADDED
@@ -0,0 +1,62 @@
|
|
1
|
+
.content{
|
2
|
+
.post{
|
3
|
+
-webkit-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.5);
|
4
|
+
-moz-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.5);
|
5
|
+
box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.5);
|
6
|
+
|
7
|
+
height: 210px;
|
8
|
+
margin-bottom: 80px;
|
9
|
+
background-color: white;
|
10
|
+
p{
|
11
|
+
padding: 0 5px;
|
12
|
+
}
|
13
|
+
a{
|
14
|
+
color: black;
|
15
|
+
}
|
16
|
+
h2{
|
17
|
+
padding-top: 5px;
|
18
|
+
margin-right: 5px;
|
19
|
+
a{
|
20
|
+
margin-bottom: 10px;
|
21
|
+
}
|
22
|
+
}
|
23
|
+
img{
|
24
|
+
width: auto;
|
25
|
+
height: 210px;
|
26
|
+
float: left;
|
27
|
+
margin-right: 10px;
|
28
|
+
}
|
29
|
+
.player-container{
|
30
|
+
margin: 10px auto;
|
31
|
+
}
|
32
|
+
.info{
|
33
|
+
margin-bottom: 10px;
|
34
|
+
font-size: 1rem;
|
35
|
+
font-style: italic;
|
36
|
+
}
|
37
|
+
}
|
38
|
+
.pagination a, .pagination span {
|
39
|
+
padding: 7px 18px;
|
40
|
+
border: 1px solid #eee;
|
41
|
+
margin-left: -2px;
|
42
|
+
margin-right: -2px;
|
43
|
+
background-color: #ffffff;
|
44
|
+
display: inline-block;
|
45
|
+
color: $base-color;
|
46
|
+
}
|
47
|
+
|
48
|
+
.pagination a {
|
49
|
+
&:hover {
|
50
|
+
background-color: #f1f1f1;
|
51
|
+
color: #333;
|
52
|
+
}
|
53
|
+
}
|
54
|
+
|
55
|
+
.pagination {
|
56
|
+
text-align: center;
|
57
|
+
margin-bottom: 30px;
|
58
|
+
.inactive{
|
59
|
+
background-color: #f1f1f1;
|
60
|
+
}
|
61
|
+
}
|
62
|
+
}
|
data/_sass/player.scss
ADDED
data/_sass/post.scss
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
.container{
|
2
|
+
.content{
|
3
|
+
.single-post{
|
4
|
+
padding-bottom: 100px;
|
5
|
+
.categories{
|
6
|
+
text-align: center;
|
7
|
+
font-size: 1.2rem;
|
8
|
+
}
|
9
|
+
img{
|
10
|
+
max-width: 400px;
|
11
|
+
display: block;
|
12
|
+
margin-left: auto;
|
13
|
+
margin-right: auto;
|
14
|
+
width: 50%;
|
15
|
+
margin-bottom: 20px;
|
16
|
+
margin-top: 10px;
|
17
|
+
}
|
18
|
+
p{
|
19
|
+
font-size: 1.1rem;
|
20
|
+
}
|
21
|
+
h2{
|
22
|
+
text-align: center;
|
23
|
+
}
|
24
|
+
h3{
|
25
|
+
text-align: center;
|
26
|
+
margin-top: 30px;
|
27
|
+
}
|
28
|
+
a{
|
29
|
+
text-decoration: none;
|
30
|
+
color: black;
|
31
|
+
display: inline-block;
|
32
|
+
font-style: italic;
|
33
|
+
border-bottom: 1px solid $base-color;
|
34
|
+
line-height: 0.9;
|
35
|
+
transition: background-color 0.1s cubic-bezier(.33,.66,.66,1);
|
36
|
+
}
|
37
|
+
a:hover{
|
38
|
+
background-color: rgba(1,160,228,0.3);
|
39
|
+
border-bottom: none;
|
40
|
+
}
|
41
|
+
.video{
|
42
|
+
display: block;
|
43
|
+
margin-left: auto;
|
44
|
+
margin-right: auto;
|
45
|
+
width: 50%;
|
46
|
+
margin-bottom: 30px;
|
47
|
+
height: 0;
|
48
|
+
overflow: hidden;
|
49
|
+
padding-bottom: 29.25%;
|
50
|
+
padding-top: 30px;
|
51
|
+
position: relative;
|
52
|
+
iframe, object, embed{
|
53
|
+
height: 100%;
|
54
|
+
left: 0;
|
55
|
+
position: absolute;
|
56
|
+
top: 0;
|
57
|
+
width: 100%;
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
}
|
62
|
+
}
|
63
|
+
}
|
data/_sass/sidebar.scss
ADDED
@@ -0,0 +1,87 @@
|
|
1
|
+
$twitter: #1DA1F2;
|
2
|
+
$rss: #f26522;
|
3
|
+
$mail: #5d5c5d;
|
4
|
+
$instagram: #e1306c;
|
5
|
+
$facebook: #3b5998;
|
6
|
+
$youtube: #ff0000;
|
7
|
+
$grey: #a2a2a2;
|
8
|
+
|
9
|
+
.container{
|
10
|
+
.sidebar{
|
11
|
+
width: 15%;
|
12
|
+
order: 5;
|
13
|
+
background-color: white;
|
14
|
+
padding-bottom: 30px;
|
15
|
+
margin-bottom: 50px;
|
16
|
+
border-radius: 10px;
|
17
|
+
text-align: center;
|
18
|
+
-webkit-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.5);
|
19
|
+
-moz-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.5);
|
20
|
+
box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.5);
|
21
|
+
#info{
|
22
|
+
margin-left: 6px;
|
23
|
+
margin-right: 6px;
|
24
|
+
}
|
25
|
+
a{
|
26
|
+
text-decoration: none;
|
27
|
+
}
|
28
|
+
ul{
|
29
|
+
list-style-type: none;
|
30
|
+
li{
|
31
|
+
margin-bottom: 3px;
|
32
|
+
a{
|
33
|
+
color: $base-color;
|
34
|
+
}
|
35
|
+
a:hover{
|
36
|
+
text-decoration: underline;
|
37
|
+
}
|
38
|
+
}
|
39
|
+
}
|
40
|
+
img{
|
41
|
+
max-width: 100%;
|
42
|
+
height: auto;
|
43
|
+
border-radius: 5px;
|
44
|
+
margin-bottom: 5px;
|
45
|
+
}
|
46
|
+
#social::before{
|
47
|
+
display: block;
|
48
|
+
content: '';
|
49
|
+
width: 5rem;
|
50
|
+
height: 1px;
|
51
|
+
margin: 23px auto;
|
52
|
+
background-color: #d5d5d5;
|
53
|
+
}
|
54
|
+
#social::after{
|
55
|
+
display: block;
|
56
|
+
content: '';
|
57
|
+
width: 5rem;
|
58
|
+
height: 1px;
|
59
|
+
margin: 23px auto;
|
60
|
+
background-color: #d5d5d5;
|
61
|
+
}
|
62
|
+
#social{
|
63
|
+
a{
|
64
|
+
color: $grey;
|
65
|
+
margin: 2px;
|
66
|
+
}
|
67
|
+
#twitter:hover{
|
68
|
+
color: $twitter;
|
69
|
+
}
|
70
|
+
#rss:hover{
|
71
|
+
color: $rss;
|
72
|
+
}
|
73
|
+
#envelope:hover{
|
74
|
+
color: $mail;
|
75
|
+
}
|
76
|
+
#instagram:hover{
|
77
|
+
color: $instagram;
|
78
|
+
}
|
79
|
+
#facebook:hover{
|
80
|
+
color: $facebook;
|
81
|
+
}
|
82
|
+
#youtube:hover{
|
83
|
+
color: $youtube;
|
84
|
+
}
|
85
|
+
}
|
86
|
+
}
|
87
|
+
}
|
@@ -0,0 +1,186 @@
|
|
1
|
+
---
|
2
|
+
---
|
3
|
+
@media screen and (max-width: 990px){
|
4
|
+
|
5
|
+
#header{
|
6
|
+
#desktop-nav{
|
7
|
+
display: none;
|
8
|
+
}
|
9
|
+
h1{
|
10
|
+
padding: 10px;
|
11
|
+
padding-top: 7px;
|
12
|
+
max-width: 420px;
|
13
|
+
}
|
14
|
+
}
|
15
|
+
body{
|
16
|
+
background-size: 286%;
|
17
|
+
background-position-x: 31%;
|
18
|
+
}
|
19
|
+
}
|
20
|
+
|
21
|
+
@media (min-width: 990px){
|
22
|
+
#hammenuToggle{
|
23
|
+
display: none !important;
|
24
|
+
visibility: hidden !important;
|
25
|
+
position: absolute !important;
|
26
|
+
}
|
27
|
+
}
|
28
|
+
|
29
|
+
@media (max-width: 1400px){
|
30
|
+
body{
|
31
|
+
background-size: 140%;
|
32
|
+
}
|
33
|
+
}
|
34
|
+
|
35
|
+
@media (max-width: 1330px){
|
36
|
+
.container{
|
37
|
+
flex-direction: column;
|
38
|
+
align-items: center;
|
39
|
+
align-content: center;
|
40
|
+
.content{
|
41
|
+
width: 90% !important;
|
42
|
+
}
|
43
|
+
.sidebar{
|
44
|
+
margin-top: 30px;
|
45
|
+
width: 25% !important;
|
46
|
+
}
|
47
|
+
}
|
48
|
+
}
|
49
|
+
@media (min-width: 820px){
|
50
|
+
.container{
|
51
|
+
.content{
|
52
|
+
.post{
|
53
|
+
position: relative;
|
54
|
+
height: 262px;
|
55
|
+
.player-container{
|
56
|
+
position: absolute;
|
57
|
+
bottom: 0;
|
58
|
+
width: 100%;
|
59
|
+
margin: 0;
|
60
|
+
}
|
61
|
+
.short-excerpt{
|
62
|
+
display: none;
|
63
|
+
}
|
64
|
+
}
|
65
|
+
}
|
66
|
+
}
|
67
|
+
}
|
68
|
+
@media (max-width: 820px){
|
69
|
+
.container{
|
70
|
+
.content{
|
71
|
+
.post{
|
72
|
+
.long-excerpt{
|
73
|
+
display: none;
|
74
|
+
}
|
75
|
+
h2{
|
76
|
+
line-height: 1.4rem;
|
77
|
+
a{
|
78
|
+
font-size: 1.2rem;
|
79
|
+
}
|
80
|
+
}
|
81
|
+
img{
|
82
|
+
height: 135px;
|
83
|
+
}
|
84
|
+
height: 230px;
|
85
|
+
}
|
86
|
+
}
|
87
|
+
.sidebar{
|
88
|
+
margin-top: 30px;
|
89
|
+
width: 35% !important;
|
90
|
+
}
|
91
|
+
|
92
|
+
}
|
93
|
+
}
|
94
|
+
|
95
|
+
@media (max-width: 580px){
|
96
|
+
.container{
|
97
|
+
.content{
|
98
|
+
.post{
|
99
|
+
height: 300px;
|
100
|
+
img{
|
101
|
+
height: 135px;
|
102
|
+
}
|
103
|
+
h2{
|
104
|
+
margin: 0px;
|
105
|
+
}
|
106
|
+
.player-container{
|
107
|
+
margin-top: 0px;
|
108
|
+
}
|
109
|
+
.title{
|
110
|
+
height: 135px;
|
111
|
+
}
|
112
|
+
}
|
113
|
+
}
|
114
|
+
}
|
115
|
+
}
|
116
|
+
|
117
|
+
@media (max-width: 520px){
|
118
|
+
#header{
|
119
|
+
h1{
|
120
|
+
max-width: 300px;
|
121
|
+
}
|
122
|
+
}
|
123
|
+
.container{
|
124
|
+
.sidebar{
|
125
|
+
margin-top: 30px;
|
126
|
+
width: 40% !important;
|
127
|
+
}
|
128
|
+
}
|
129
|
+
}
|
130
|
+
|
131
|
+
@media (max-width: 728px){
|
132
|
+
body{
|
133
|
+
background-size: 300%;
|
134
|
+
background-position-x: 40%;
|
135
|
+
}
|
136
|
+
}
|
137
|
+
|
138
|
+
@media (max-width: 420px){
|
139
|
+
body{
|
140
|
+
background-size: 430% !important;
|
141
|
+
background-position-x: 40%;
|
142
|
+
}
|
143
|
+
.container{
|
144
|
+
.sidebar{
|
145
|
+
margin-top: 30px;
|
146
|
+
width: 50% !important;
|
147
|
+
}
|
148
|
+
.post{
|
149
|
+
height: 325px !important;
|
150
|
+
.info{
|
151
|
+
font-size: 0.95rem;
|
152
|
+
}
|
153
|
+
h2{
|
154
|
+
line-height: 1.3rem !important;
|
155
|
+
}
|
156
|
+
}
|
157
|
+
}
|
158
|
+
}
|
159
|
+
|
160
|
+
@media screen and (max-width: 350px){
|
161
|
+
#header{
|
162
|
+
margin-bottom: 100px;
|
163
|
+
h1{
|
164
|
+
max-width: 200px;
|
165
|
+
}
|
166
|
+
}
|
167
|
+
body{
|
168
|
+
background-size: 330%;
|
169
|
+
}
|
170
|
+
}
|
171
|
+
|
172
|
+
|
173
|
+
@media (max-width: 330px){
|
174
|
+
.container{
|
175
|
+
.content{
|
176
|
+
.post{
|
177
|
+
height: 350px;
|
178
|
+
h2{
|
179
|
+
a{
|
180
|
+
font-size: 0.98rem;
|
181
|
+
}
|
182
|
+
}
|
183
|
+
}
|
184
|
+
}
|
185
|
+
}
|
186
|
+
}
|
Binary file
|
Binary file
|
Binary file
|
data/assets/js/disqus.js
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
var disqus_config = function () {
|
2
|
+
this.page.url = document.location.href;
|
3
|
+
this.page.identifier = document.location.pathname;
|
4
|
+
};
|
5
|
+
|
6
|
+
(function() {
|
7
|
+
var d = document, s = d.createElement('script');
|
8
|
+
s.src = '//YOURSHORTNAMEHERE.disqus.com/embed.js'; //Edit here
|
9
|
+
s.setAttribute('data-timestamp', +new Date());
|
10
|
+
(d.head || d.body).appendChild(s);
|
11
|
+
})();
|
Binary file
|
Binary file
|
metadata
ADDED
@@ -0,0 +1,119 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jekyll-podcaster
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- PandaSekh
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-07-20 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: '4.0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 2.1.4
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 2.1.4
|
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
|
+
- alessiofranceschi2@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- LICENSE.txt
|
63
|
+
- README.md
|
64
|
+
- _includes/analytics.html
|
65
|
+
- _includes/cover.html
|
66
|
+
- _includes/date.html
|
67
|
+
- _includes/disqus.html
|
68
|
+
- _includes/footer.html
|
69
|
+
- _includes/head.html
|
70
|
+
- _includes/header.html
|
71
|
+
- _includes/player.html
|
72
|
+
- _includes/playerjs.html
|
73
|
+
- _includes/shownotes.html
|
74
|
+
- _includes/sidebar.html
|
75
|
+
- _includes/video.html
|
76
|
+
- _layouts/default.html
|
77
|
+
- _layouts/home.html
|
78
|
+
- _layouts/page.html
|
79
|
+
- _layouts/post.html
|
80
|
+
- _sass/archive.scss
|
81
|
+
- _sass/background.scss
|
82
|
+
- _sass/base.scss
|
83
|
+
- _sass/header.scss
|
84
|
+
- _sass/home.scss
|
85
|
+
- _sass/player.scss
|
86
|
+
- _sass/post.scss
|
87
|
+
- _sass/sidebar.scss
|
88
|
+
- assets/css/main.scss
|
89
|
+
- assets/css/mobile.scss
|
90
|
+
- assets/img/Podcast_Cover.jpg
|
91
|
+
- assets/img/Podcast_Cover_500.jpg
|
92
|
+
- assets/img/Podcast_Cover_Small.jpg
|
93
|
+
- assets/js/disqus.js
|
94
|
+
- assets/screenshots/Homepage.png
|
95
|
+
- assets/screenshots/Mobile.png
|
96
|
+
homepage: https://alessiofranceschi.me
|
97
|
+
licenses:
|
98
|
+
- MIT
|
99
|
+
metadata: {}
|
100
|
+
post_install_message:
|
101
|
+
rdoc_options: []
|
102
|
+
require_paths:
|
103
|
+
- lib
|
104
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
105
|
+
requirements:
|
106
|
+
- - ">="
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
version: '0'
|
109
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
110
|
+
requirements:
|
111
|
+
- - ">="
|
112
|
+
- !ruby/object:Gem::Version
|
113
|
+
version: '0'
|
114
|
+
requirements: []
|
115
|
+
rubygems_version: 3.0.3
|
116
|
+
signing_key:
|
117
|
+
specification_version: 4
|
118
|
+
summary: Jekyll theme for Podcasts
|
119
|
+
test_files: []
|