File tree Expand file tree Collapse file tree 7 files changed +56
-18
lines changed Expand file tree Collapse file tree 7 files changed +56
-18
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ JEKYLL_VERSION=3.8
2
2
3
3
watch :
4
4
docker run --rm \
5
- --volume=" $( PWD) :/srv/jekyll" \
5
+ --volume=" $( PWD) :/srv/jekyll:Z " \
6
6
-p 4000:4000 \
7
- -it jekyll/jekyll :${JEKYLL_VERSION} \
8
- jekyll serve --watch --future
7
+ -it jekyll/jekyll:${JEKYLL_VERSION} \
8
+ jekyll serve --future
Original file line number Diff line number Diff line change 3
3
< head >
4
4
< meta charset ="utf-8 " />
5
5
< title > {{ page.title }}</ title >
6
+ < link rel ="stylesheet " type ="text/css " href ="/assets/css/theme.css " />
7
+ < link rel ="stylesheet " type ="text/css " href ="/assets/css/monokai.css " />
8
+
6
9
< link rel ="alternate " type ="application/atom+xml " href ="/atom.xml " title ="Atom feed " />
7
10
{% if page.icon %}
8
11
< link rel ="shortcut icon " href ="{{ page.icon }} " />
34
37
35
38
{% if page.description %}< meta property ="og:description " content ="{{ page.description }} " /> {% endif %}
36
39
37
- {% if page.cover_image %}
38
- < meta property ="og:image " content ="{{ page.cover_image }} " />
39
- < meta property ="twitter:image " content ="{{ page.cover_image }} " />
40
- {% else %}
41
- < meta property ="og:image " content ="https://evertpot.com/assets/cover/flower.png " />
42
- < meta property ="twitter:image " content ="https://evertpot.com/assets/cover/flower.png " />
43
- {% endif %}
40
+ {% if page.cover_image %}
41
+ < meta property ="og:image " content ="{{ page.cover_image }} " />
42
+ < meta property ="twitter:image " content ="{{ page.cover_image }} " />
43
+ {% else %}
44
+ < meta property ="og:image " content ="https://evertpot.com/assets/cover/flower.png " />
45
+ < meta property ="twitter:image " content ="https://evertpot.com/assets/cover/flower.png " />
46
+ {% endif %}
44
47
45
48
< link href ="https://fonts.googleapis.com/css?family=PT+Serif:400,400i,700 " rel ="stylesheet " />
46
49
47
-
48
- < style >
49
- {% include css/ stylesheet.css %}
50
- {% include css/ monokai.css %}
51
- </ style >
52
-
53
50
< script async src ="/assets/js/webmentions.js "> </ script >
54
51
< script async type ="module " src ="/assets/js/download-counter.mjs "> </ script >
55
52
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 9
9
body {
10
10
font-family : 'PT Serif' , serif;
11
11
width : 100% ;
12
- background-color : # EEE ;
12
+ background-color : # FAFAFA ;
13
13
margin : 0 ;
14
14
height : 100% ;
15
15
display : flex;
@@ -343,14 +343,39 @@ body.map main #map {
343
343
overflow-x : auto;
344
344
}
345
345
346
-
347
346
.draft-warning {
348
347
background : # C33 ;
349
348
color : white;
350
349
font-size : 120% ;
351
350
text-align : center;
352
351
}
353
352
353
+ .tag-cloud {
354
+ margin : 0 ;
355
+ padding : 0 ;
356
+ display : flex;
357
+ flex-wrap : wrap;
358
+
359
+ li {
360
+ list-style : none;
361
+ padding : 5px ;
362
+
363
+ }
364
+ .weight1 { font-size : 11px ; }
365
+ .weight2 { font-size : 12px ; }
366
+ .weight3 { font-size : 13px ; }
367
+ .weight4 { font-size : 14px ; }
368
+ .weight5 { font-size : 15px ; }
369
+ .weight6 { font-size : 17px ; }
370
+ .weight7 { font-size : 19px ; }
371
+ .weight8 { font-size : 21px ; }
372
+ .weight9 { font-size : 23px ; }
373
+ .weight10 { font-size : 25px ; }
374
+ li ::after {
375
+ content : "" ;
376
+ }
377
+ }
378
+
354
379
figure * {
355
380
margin : 0 auto;
356
381
}
Original file line number Diff line number Diff line change
1
+ ---
2
+ layout: default
3
+ title: Evert's dugout - All Tags
4
+ permalink: "/tags/"
5
+ ---
6
+
7
+ < h1 > Tags</ h1 >
8
+
9
+ < p > I don't know yet how how create pages that link from here. So, this page is useless
10
+ until I figure that out.</ p >
11
+
12
+ < ul class ="tag-cloud ">
13
+ {% for tag in site.tags %}
14
+ < li class ="weight{{ tag[1] | size | at_most: 14 | divide 2 | round }} "> {{ tag[0] }}</ li >
15
+ {% endfor %}
16
+ </ ul >
You can’t perform that action at this time.
0 commit comments