jekyll-dewey-decimal 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/Gemfile +6 -0
- data/Gemfile.lock +77 -0
- data/LICENSE.txt +21 -0
- data/README.md +62 -0
- data/_config.yml +12 -0
- data/_includes/footer.html +6 -0
- data/_includes/header.html +27 -0
- data/_includes/post-list.html +11 -0
- data/_layouts/default.html +24 -0
- data/_layouts/home.html +11 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +30 -0
- data/_posts/2023-10-12-file-1.md +8 -0
- data/_posts/2023-10-13-file-2.md +26 -0
- data/_site/2023/10/12/file-1.html +86 -0
- data/_site/2023/10/13/file-2.html +99 -0
- data/_site/LICENSE.txt +21 -0
- data/_site/README.md +62 -0
- data/_site/about.html +57 -0
- data/_site/assets/styles.css +127 -0
- data/_site/assets/syntax.css +199 -0
- data/_site/contact.html +57 -0
- data/_site/favicon.ico +0 -0
- data/_site/index.html +77 -0
- data/_site/jekyll-dewey-decimal.gemspec +16 -0
- data/_site/profile.png +0 -0
- data/_site/resume.pdf +0 -0
- data/_site/screenshot.png +0 -0
- data/about.md +4 -0
- data/assets/styles.css +127 -0
- data/assets/syntax.css +199 -0
- data/contact.md +4 -0
- data/favicon.ico +0 -0
- data/index.md +4 -0
- data/jekyll-dewey-decimal.gemspec +16 -0
- data/profile.png +0 -0
- data/resume.pdf +0 -0
- data/screenshot.png +0 -0
- metadata +95 -0
data/_site/about.html
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="UTF-8">
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
7
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
8
|
+
<link href="https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Inconsolata:wght@300;400;500;600;700&family=Outfit:wght@100;200;300;400;500;600;700&display=swap" rel="stylesheet">
|
9
|
+
<link rel="stylesheet" href="/assets/styles.css">
|
10
|
+
<link rel="stylesheet" href="/assets/syntax.css">
|
11
|
+
<link href="https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@1,700&family=Inconsolata:wght@300;400;500;600;700&family=Outfit:wght@100;200;300;400;500;600;700&display=swap" rel="stylesheet">
|
12
|
+
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
13
|
+
<title>SITE_TITLE</title>
|
14
|
+
</head>
|
15
|
+
<body>
|
16
|
+
<div class="container">
|
17
|
+
<div class="main-container">
|
18
|
+
<!-- <div class="header-container">
|
19
|
+
<nav>
|
20
|
+
<div class="nav-left">
|
21
|
+
<ul>
|
22
|
+
<li><a href="/">SITE_TITLE</a></li>
|
23
|
+
</ul>
|
24
|
+
</div>
|
25
|
+
<div class="nav-right">
|
26
|
+
<ul>
|
27
|
+
<li><a href="/about">About</a></li>
|
28
|
+
<li><a href="/resume.pdf" target="_blank">Resumé</a></li>
|
29
|
+
<li><a href="/contact">Contact</a></li>
|
30
|
+
</ul>
|
31
|
+
</div>
|
32
|
+
</nav>
|
33
|
+
</div> -->
|
34
|
+
|
35
|
+
<div class="header-container">
|
36
|
+
<ul class="nav-left">
|
37
|
+
<li><a href="/">SITE_TITLE</a></li>
|
38
|
+
</ul>
|
39
|
+
<ul class="nav-right">
|
40
|
+
<li><a href="/about" style="padding-left: 20px;">About</a></li>
|
41
|
+
<li><a href="/resume.pdf" target="_blank" style="padding-left: 20px;">Resumé</a></li>
|
42
|
+
<li><a href="/contact" style="padding-left: 20px;">Contact</a></li>
|
43
|
+
</ul>
|
44
|
+
</div>
|
45
|
+
|
46
|
+
|
47
|
+
|
48
|
+
<footer class="footer">
|
49
|
+
<p class="copyright">
|
50
|
+
© YEAR.
|
51
|
+
Made with ♡ by <a href="mailto:EMAIL@EXAMPLE.COM" class="hard-anchor" title="mailto">AUTHOR_NAME</a> All rights reserved.
|
52
|
+
</p>
|
53
|
+
</footer>
|
54
|
+
</div>
|
55
|
+
</div>
|
56
|
+
</body>
|
57
|
+
</html>
|
@@ -0,0 +1,127 @@
|
|
1
|
+
*{
|
2
|
+
font-family: 'EB Garamond', serif;
|
3
|
+
font-family: 'Inconsolata', monospace;
|
4
|
+
}
|
5
|
+
|
6
|
+
.container{
|
7
|
+
margin-left: 25%;
|
8
|
+
margin-right: 25%;
|
9
|
+
}
|
10
|
+
|
11
|
+
.header-container{
|
12
|
+
padding-top: 20px;
|
13
|
+
font-size: 17px;
|
14
|
+
display: flex;
|
15
|
+
justify-content: space-between;
|
16
|
+
padding-bottom: 20px;
|
17
|
+
}
|
18
|
+
|
19
|
+
.header-container ul{
|
20
|
+
margin-left: 0;
|
21
|
+
padding: 0;
|
22
|
+
list-style-type: none;
|
23
|
+
}
|
24
|
+
|
25
|
+
.header-container ul li{
|
26
|
+
display: inline-block;
|
27
|
+
}
|
28
|
+
|
29
|
+
.header-container ul li a{
|
30
|
+
color: #000000;
|
31
|
+
display: block;
|
32
|
+
text-decoration: none;
|
33
|
+
}
|
34
|
+
|
35
|
+
.header-container ul li a:hover{
|
36
|
+
color: #696969;
|
37
|
+
}
|
38
|
+
|
39
|
+
.profile-container {
|
40
|
+
padding-top: 20px;
|
41
|
+
padding-bottom: 20px;
|
42
|
+
text-align: center;
|
43
|
+
}
|
44
|
+
|
45
|
+
.profile-container img{
|
46
|
+
display: block;
|
47
|
+
margin-left: auto;
|
48
|
+
margin-right: auto;
|
49
|
+
width: 13%;
|
50
|
+
}
|
51
|
+
|
52
|
+
.profile-container h2{
|
53
|
+
font-size: 17px;
|
54
|
+
font-weight: 600;
|
55
|
+
}
|
56
|
+
|
57
|
+
.profile-container h3{
|
58
|
+
font-style: italic;
|
59
|
+
font-size: 15px;
|
60
|
+
font-weight: 400;
|
61
|
+
}
|
62
|
+
|
63
|
+
.post-list-container h2{
|
64
|
+
font-size: 17px;
|
65
|
+
font-weight: 600;
|
66
|
+
}
|
67
|
+
|
68
|
+
.post-list-container .posts-list{
|
69
|
+
margin: 0;
|
70
|
+
padding: 0;
|
71
|
+
font-size: 17px;
|
72
|
+
}
|
73
|
+
|
74
|
+
.post-list-container .posts-list li{
|
75
|
+
padding-top: 5px;
|
76
|
+
padding-bottom: 5px;
|
77
|
+
list-style-type: none;
|
78
|
+
}
|
79
|
+
|
80
|
+
.post-list-container .posts-list li:hover{
|
81
|
+
background-color: #B9E7FA;
|
82
|
+
}
|
83
|
+
|
84
|
+
.post-list-container .posts-list li a{
|
85
|
+
color: #000000;
|
86
|
+
text-decoration: none;
|
87
|
+
}
|
88
|
+
|
89
|
+
.post-wrapper .post-content h1{
|
90
|
+
font-weight: 600;
|
91
|
+
}
|
92
|
+
|
93
|
+
.post-wrapper .post-content .post-tags{
|
94
|
+
padding-top: 20px;
|
95
|
+
}
|
96
|
+
|
97
|
+
.post-wrapper .post-content .post-tags a{
|
98
|
+
padding-left: 5px;
|
99
|
+
padding-right: 5px;
|
100
|
+
text-decoration: none;
|
101
|
+
background-color: #B9E7FA;
|
102
|
+
color: #000000;
|
103
|
+
}
|
104
|
+
|
105
|
+
.backwards-link a{
|
106
|
+
text-decoration: none;
|
107
|
+
color: #000000;
|
108
|
+
}
|
109
|
+
|
110
|
+
.backwards-link a:hover{
|
111
|
+
text-decoration: none;
|
112
|
+
color: #696969;
|
113
|
+
}
|
114
|
+
|
115
|
+
.footer{
|
116
|
+
padding-top: 20px;
|
117
|
+
font-size: 14px;
|
118
|
+
}
|
119
|
+
|
120
|
+
.footer a{
|
121
|
+
color: #33B8EE;
|
122
|
+
text-decoration: none;
|
123
|
+
}
|
124
|
+
|
125
|
+
.footer a:hover{
|
126
|
+
color: #696969;
|
127
|
+
}
|
@@ -0,0 +1,199 @@
|
|
1
|
+
.highlight table td { padding: 5px; }
|
2
|
+
.highlight table pre { margin: 0;}
|
3
|
+
.highlight .gh {
|
4
|
+
color: #999999;
|
5
|
+
}
|
6
|
+
.highlight .sr {
|
7
|
+
color: #f6aa11;
|
8
|
+
}
|
9
|
+
.highlight .go {
|
10
|
+
color: #888888;
|
11
|
+
}
|
12
|
+
.highlight .gp {
|
13
|
+
color: #555555;
|
14
|
+
}
|
15
|
+
.highlight .gs {
|
16
|
+
}
|
17
|
+
|
18
|
+
.highlight .gu {
|
19
|
+
color: #aaaaaa;
|
20
|
+
}
|
21
|
+
.highlight .nb {
|
22
|
+
color: #f6aa11;
|
23
|
+
}
|
24
|
+
.highlight .cm {
|
25
|
+
color: #75715e;
|
26
|
+
}
|
27
|
+
.highlight .cp {
|
28
|
+
color: #75715e;
|
29
|
+
}
|
30
|
+
.highlight .c1 {
|
31
|
+
color: #75715e;
|
32
|
+
}
|
33
|
+
.highlight .cs {
|
34
|
+
color: #75715e;
|
35
|
+
}
|
36
|
+
.highlight .c, .highlight .ch, .highlight .cd, .highlight .cpf {
|
37
|
+
color: #75715e;
|
38
|
+
}
|
39
|
+
.highlight .err {
|
40
|
+
color: #960050;
|
41
|
+
}
|
42
|
+
.highlight .gr {
|
43
|
+
color: #960050;
|
44
|
+
}
|
45
|
+
.highlight .gt {
|
46
|
+
color: #960050;
|
47
|
+
}
|
48
|
+
.highlight .gd {
|
49
|
+
color: #49483e;
|
50
|
+
}
|
51
|
+
.highlight .gi {
|
52
|
+
color: #49483e;
|
53
|
+
}
|
54
|
+
.highlight .ge {
|
55
|
+
color: #49483e;
|
56
|
+
}
|
57
|
+
.highlight .kc {
|
58
|
+
color: #66d9ef;
|
59
|
+
}
|
60
|
+
.highlight .kd {
|
61
|
+
color: #66d9ef;
|
62
|
+
}
|
63
|
+
.highlight .kr {
|
64
|
+
color: #66d9ef;
|
65
|
+
}
|
66
|
+
.highlight .no {
|
67
|
+
color: #66d9ef;
|
68
|
+
}
|
69
|
+
.highlight .kt {
|
70
|
+
color: #66d9ef;
|
71
|
+
}
|
72
|
+
.highlight .mf {
|
73
|
+
color: #ae81ff;
|
74
|
+
}
|
75
|
+
.highlight .mh {
|
76
|
+
color: #ae81ff;
|
77
|
+
}
|
78
|
+
.highlight .il {
|
79
|
+
color: #ae81ff;
|
80
|
+
}
|
81
|
+
.highlight .mi {
|
82
|
+
color: #ae81ff;
|
83
|
+
}
|
84
|
+
.highlight .mo {
|
85
|
+
color: #ae81ff;
|
86
|
+
}
|
87
|
+
.highlight .m, .highlight .mb, .highlight .mx {
|
88
|
+
color: #ae81ff;
|
89
|
+
}
|
90
|
+
.highlight .sc {
|
91
|
+
color: #ae81ff;
|
92
|
+
}
|
93
|
+
.highlight .se {
|
94
|
+
color: #ae81ff;
|
95
|
+
}
|
96
|
+
.highlight .ss {
|
97
|
+
color: #ae81ff;
|
98
|
+
}
|
99
|
+
.highlight .sd {
|
100
|
+
color: #e6db74;
|
101
|
+
}
|
102
|
+
.highlight .s2 {
|
103
|
+
color: #e6db74;
|
104
|
+
}
|
105
|
+
.highlight .sb {
|
106
|
+
color: #e6db74;
|
107
|
+
}
|
108
|
+
.highlight .sh {
|
109
|
+
color: #e6db74;
|
110
|
+
}
|
111
|
+
.highlight .si {
|
112
|
+
color: #e6db74;
|
113
|
+
}
|
114
|
+
.highlight .sx {
|
115
|
+
color: #e6db74;
|
116
|
+
}
|
117
|
+
.highlight .s1 {
|
118
|
+
color: #e6db74;
|
119
|
+
}
|
120
|
+
.highlight .s, .highlight .sa, .highlight .dl {
|
121
|
+
color: #e6db74;
|
122
|
+
}
|
123
|
+
.highlight .na {
|
124
|
+
color: #a6e22e;
|
125
|
+
}
|
126
|
+
.highlight .nc {
|
127
|
+
color: #a6e22e;
|
128
|
+
}
|
129
|
+
.highlight .nd {
|
130
|
+
color: #a6e22e;
|
131
|
+
}
|
132
|
+
.highlight .ne {
|
133
|
+
color: #a6e22e;
|
134
|
+
}
|
135
|
+
.highlight .nf, .highlight .fm {
|
136
|
+
color: #a6e22e;
|
137
|
+
}
|
138
|
+
.highlight .vc {
|
139
|
+
color: #ffffff;
|
140
|
+
background-color: #272822;
|
141
|
+
}
|
142
|
+
.highlight .nn {
|
143
|
+
color: #ffffff;
|
144
|
+
background-color: #272822;
|
145
|
+
}
|
146
|
+
.highlight .nl {
|
147
|
+
color: #ffffff;
|
148
|
+
background-color: #272822;
|
149
|
+
}
|
150
|
+
.highlight .ni {
|
151
|
+
color: #ffffff;
|
152
|
+
background-color: #272822;
|
153
|
+
}
|
154
|
+
.highlight .bp {
|
155
|
+
color: #ffffff;
|
156
|
+
background-color: #272822;
|
157
|
+
}
|
158
|
+
.highlight .vg {
|
159
|
+
color: #ffffff;
|
160
|
+
background-color: #272822;
|
161
|
+
}
|
162
|
+
.highlight .vi {
|
163
|
+
color: #ffffff;
|
164
|
+
background-color: #272822;
|
165
|
+
}
|
166
|
+
.highlight .nv, .highlight .vm {
|
167
|
+
color: #ffffff;
|
168
|
+
background-color: #272822;
|
169
|
+
}
|
170
|
+
.highlight .w {
|
171
|
+
color: #ffffff;
|
172
|
+
background-color: #272822;
|
173
|
+
}
|
174
|
+
.highlight {
|
175
|
+
color: #ffffff;
|
176
|
+
background-color: #272822;
|
177
|
+
}
|
178
|
+
.highlight .n, .highlight .py, .highlight .nx {
|
179
|
+
color: #ffffff;
|
180
|
+
background-color: #272822;
|
181
|
+
}
|
182
|
+
.highlight .ow {
|
183
|
+
color: #f92672;
|
184
|
+
}
|
185
|
+
.highlight .nt {
|
186
|
+
color: #f92672;
|
187
|
+
}
|
188
|
+
.highlight .k, .highlight .kv {
|
189
|
+
color: #f92672;
|
190
|
+
}
|
191
|
+
.highlight .kn {
|
192
|
+
color: #f92672;
|
193
|
+
}
|
194
|
+
.highlight .kp {
|
195
|
+
color: #f92672;
|
196
|
+
}
|
197
|
+
.highlight .o {
|
198
|
+
color: #f92672;
|
199
|
+
}
|
data/_site/contact.html
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="UTF-8">
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
7
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
8
|
+
<link href="https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Inconsolata:wght@300;400;500;600;700&family=Outfit:wght@100;200;300;400;500;600;700&display=swap" rel="stylesheet">
|
9
|
+
<link rel="stylesheet" href="/assets/styles.css">
|
10
|
+
<link rel="stylesheet" href="/assets/syntax.css">
|
11
|
+
<link href="https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@1,700&family=Inconsolata:wght@300;400;500;600;700&family=Outfit:wght@100;200;300;400;500;600;700&display=swap" rel="stylesheet">
|
12
|
+
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
13
|
+
<title>SITE_TITLE</title>
|
14
|
+
</head>
|
15
|
+
<body>
|
16
|
+
<div class="container">
|
17
|
+
<div class="main-container">
|
18
|
+
<!-- <div class="header-container">
|
19
|
+
<nav>
|
20
|
+
<div class="nav-left">
|
21
|
+
<ul>
|
22
|
+
<li><a href="/">SITE_TITLE</a></li>
|
23
|
+
</ul>
|
24
|
+
</div>
|
25
|
+
<div class="nav-right">
|
26
|
+
<ul>
|
27
|
+
<li><a href="/about">About</a></li>
|
28
|
+
<li><a href="/resume.pdf" target="_blank">Resumé</a></li>
|
29
|
+
<li><a href="/contact">Contact</a></li>
|
30
|
+
</ul>
|
31
|
+
</div>
|
32
|
+
</nav>
|
33
|
+
</div> -->
|
34
|
+
|
35
|
+
<div class="header-container">
|
36
|
+
<ul class="nav-left">
|
37
|
+
<li><a href="/">SITE_TITLE</a></li>
|
38
|
+
</ul>
|
39
|
+
<ul class="nav-right">
|
40
|
+
<li><a href="/about" style="padding-left: 20px;">About</a></li>
|
41
|
+
<li><a href="/resume.pdf" target="_blank" style="padding-left: 20px;">Resumé</a></li>
|
42
|
+
<li><a href="/contact" style="padding-left: 20px;">Contact</a></li>
|
43
|
+
</ul>
|
44
|
+
</div>
|
45
|
+
|
46
|
+
|
47
|
+
|
48
|
+
<footer class="footer">
|
49
|
+
<p class="copyright">
|
50
|
+
© YEAR.
|
51
|
+
Made with ♡ by <a href="mailto:EMAIL@EXAMPLE.COM" class="hard-anchor" title="mailto">AUTHOR_NAME</a> All rights reserved.
|
52
|
+
</p>
|
53
|
+
</footer>
|
54
|
+
</div>
|
55
|
+
</div>
|
56
|
+
</body>
|
57
|
+
</html>
|
data/_site/favicon.ico
ADDED
Binary file
|
data/_site/index.html
ADDED
@@ -0,0 +1,77 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="UTF-8">
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
7
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
8
|
+
<link href="https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Inconsolata:wght@300;400;500;600;700&family=Outfit:wght@100;200;300;400;500;600;700&display=swap" rel="stylesheet">
|
9
|
+
<link rel="stylesheet" href="/assets/styles.css">
|
10
|
+
<link rel="stylesheet" href="/assets/syntax.css">
|
11
|
+
<link href="https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@1,700&family=Inconsolata:wght@300;400;500;600;700&family=Outfit:wght@100;200;300;400;500;600;700&display=swap" rel="stylesheet">
|
12
|
+
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
13
|
+
<title>SITE_TITLE</title>
|
14
|
+
</head>
|
15
|
+
<body>
|
16
|
+
<div class="container">
|
17
|
+
<div class="main-container">
|
18
|
+
<!-- <div class="header-container">
|
19
|
+
<nav>
|
20
|
+
<div class="nav-left">
|
21
|
+
<ul>
|
22
|
+
<li><a href="/">SITE_TITLE</a></li>
|
23
|
+
</ul>
|
24
|
+
</div>
|
25
|
+
<div class="nav-right">
|
26
|
+
<ul>
|
27
|
+
<li><a href="/about">About</a></li>
|
28
|
+
<li><a href="/resume.pdf" target="_blank">Resumé</a></li>
|
29
|
+
<li><a href="/contact">Contact</a></li>
|
30
|
+
</ul>
|
31
|
+
</div>
|
32
|
+
</nav>
|
33
|
+
</div> -->
|
34
|
+
|
35
|
+
<div class="header-container">
|
36
|
+
<ul class="nav-left">
|
37
|
+
<li><a href="/">SITE_TITLE</a></li>
|
38
|
+
</ul>
|
39
|
+
<ul class="nav-right">
|
40
|
+
<li><a href="/about" style="padding-left: 20px;">About</a></li>
|
41
|
+
<li><a href="/resume.pdf" target="_blank" style="padding-left: 20px;">Resumé</a></li>
|
42
|
+
<li><a href="/contact" style="padding-left: 20px;">Contact</a></li>
|
43
|
+
</ul>
|
44
|
+
</div>
|
45
|
+
<div class="profile-container">
|
46
|
+
<h2>AUTHOR_NAME</h2>
|
47
|
+
<img src="/profile.png" alt="">
|
48
|
+
<h3>Welcome to my space on<br>the Internet.</h3>
|
49
|
+
</div>
|
50
|
+
<div class="posts-container">
|
51
|
+
<div class="post-list-container">
|
52
|
+
<h2>Blog posts</h2>
|
53
|
+
<ul class="posts-list">
|
54
|
+
|
55
|
+
<li>
|
56
|
+
<span class="post-date" style="color: #696969;">13 Oct 2023 »</span>
|
57
|
+
<a href="/2023/10/13/file-2.html" class="caption" title="🔖 book and ux">Example Post 2: The extraordinarily, ordinary life of myself.</a>
|
58
|
+
</li>
|
59
|
+
|
60
|
+
<li>
|
61
|
+
<span class="post-date" style="color: #696969;">12 Oct 2023 »</span>
|
62
|
+
<a href="/2023/10/12/file-1.html" class="caption" title="🔖 book, review, ux, and design">Example Post 1: Welcome to my space on the Internet!</a>
|
63
|
+
</li>
|
64
|
+
|
65
|
+
</ul>
|
66
|
+
</div>
|
67
|
+
</div>
|
68
|
+
<footer class="footer">
|
69
|
+
<p class="copyright">
|
70
|
+
© YEAR.
|
71
|
+
Made with ♡ by <a href="mailto:EMAIL@EXAMPLE.COM" class="hard-anchor" title="mailto">AUTHOR_NAME</a> All rights reserved.
|
72
|
+
</p>
|
73
|
+
</footer>
|
74
|
+
</div>
|
75
|
+
</div>
|
76
|
+
</body>
|
77
|
+
</html>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = "jekyll-dewey-decimal"
|
5
|
+
spec.version = "0.1.0"
|
6
|
+
spec.authors = ["Revati Tambe"]
|
7
|
+
spec.email = ["109561627+djarty24@users.noreply.github.com"]
|
8
|
+
|
9
|
+
spec.summary = "A content-first, minimal personal weblog and portfolio."
|
10
|
+
spec.homepage = "https://github.com/djarty24/jekyll-dewey-decimal"
|
11
|
+
spec.license = "MIT"
|
12
|
+
|
13
|
+
spec.files = Dir["**/*"]
|
14
|
+
|
15
|
+
spec.add_runtime_dependency "jekyll", "~> 4.3"
|
16
|
+
end
|
data/_site/profile.png
ADDED
Binary file
|
data/_site/resume.pdf
ADDED
Binary file
|
Binary file
|
data/about.md
ADDED
data/assets/styles.css
ADDED
@@ -0,0 +1,127 @@
|
|
1
|
+
*{
|
2
|
+
font-family: 'EB Garamond', serif;
|
3
|
+
font-family: 'Inconsolata', monospace;
|
4
|
+
}
|
5
|
+
|
6
|
+
.container{
|
7
|
+
margin-left: 25%;
|
8
|
+
margin-right: 25%;
|
9
|
+
}
|
10
|
+
|
11
|
+
.header-container{
|
12
|
+
padding-top: 20px;
|
13
|
+
font-size: 17px;
|
14
|
+
display: flex;
|
15
|
+
justify-content: space-between;
|
16
|
+
padding-bottom: 20px;
|
17
|
+
}
|
18
|
+
|
19
|
+
.header-container ul{
|
20
|
+
margin-left: 0;
|
21
|
+
padding: 0;
|
22
|
+
list-style-type: none;
|
23
|
+
}
|
24
|
+
|
25
|
+
.header-container ul li{
|
26
|
+
display: inline-block;
|
27
|
+
}
|
28
|
+
|
29
|
+
.header-container ul li a{
|
30
|
+
color: #000000;
|
31
|
+
display: block;
|
32
|
+
text-decoration: none;
|
33
|
+
}
|
34
|
+
|
35
|
+
.header-container ul li a:hover{
|
36
|
+
color: #696969;
|
37
|
+
}
|
38
|
+
|
39
|
+
.profile-container {
|
40
|
+
padding-top: 20px;
|
41
|
+
padding-bottom: 20px;
|
42
|
+
text-align: center;
|
43
|
+
}
|
44
|
+
|
45
|
+
.profile-container img{
|
46
|
+
display: block;
|
47
|
+
margin-left: auto;
|
48
|
+
margin-right: auto;
|
49
|
+
width: 13%;
|
50
|
+
}
|
51
|
+
|
52
|
+
.profile-container h2{
|
53
|
+
font-size: 17px;
|
54
|
+
font-weight: 600;
|
55
|
+
}
|
56
|
+
|
57
|
+
.profile-container h3{
|
58
|
+
font-style: italic;
|
59
|
+
font-size: 15px;
|
60
|
+
font-weight: 400;
|
61
|
+
}
|
62
|
+
|
63
|
+
.post-list-container h2{
|
64
|
+
font-size: 17px;
|
65
|
+
font-weight: 600;
|
66
|
+
}
|
67
|
+
|
68
|
+
.post-list-container .posts-list{
|
69
|
+
margin: 0;
|
70
|
+
padding: 0;
|
71
|
+
font-size: 17px;
|
72
|
+
}
|
73
|
+
|
74
|
+
.post-list-container .posts-list li{
|
75
|
+
padding-top: 5px;
|
76
|
+
padding-bottom: 5px;
|
77
|
+
list-style-type: none;
|
78
|
+
}
|
79
|
+
|
80
|
+
.post-list-container .posts-list li:hover{
|
81
|
+
background-color: #B9E7FA;
|
82
|
+
}
|
83
|
+
|
84
|
+
.post-list-container .posts-list li a{
|
85
|
+
color: #000000;
|
86
|
+
text-decoration: none;
|
87
|
+
}
|
88
|
+
|
89
|
+
.post-wrapper .post-content h1{
|
90
|
+
font-weight: 600;
|
91
|
+
}
|
92
|
+
|
93
|
+
.post-wrapper .post-content .post-tags{
|
94
|
+
padding-top: 20px;
|
95
|
+
}
|
96
|
+
|
97
|
+
.post-wrapper .post-content .post-tags a{
|
98
|
+
padding-left: 5px;
|
99
|
+
padding-right: 5px;
|
100
|
+
text-decoration: none;
|
101
|
+
background-color: #B9E7FA;
|
102
|
+
color: #000000;
|
103
|
+
}
|
104
|
+
|
105
|
+
.backwards-link a{
|
106
|
+
text-decoration: none;
|
107
|
+
color: #000000;
|
108
|
+
}
|
109
|
+
|
110
|
+
.backwards-link a:hover{
|
111
|
+
text-decoration: none;
|
112
|
+
color: #696969;
|
113
|
+
}
|
114
|
+
|
115
|
+
.footer{
|
116
|
+
padding-top: 20px;
|
117
|
+
font-size: 14px;
|
118
|
+
}
|
119
|
+
|
120
|
+
.footer a{
|
121
|
+
color: #33B8EE;
|
122
|
+
text-decoration: none;
|
123
|
+
}
|
124
|
+
|
125
|
+
.footer a:hover{
|
126
|
+
color: #696969;
|
127
|
+
}
|