This repository was archived by the owner on Mar 26, 2023. It is now read-only.
File tree 4 files changed +20
-57
lines changed
4 files changed +20
-57
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ <h1 class="text-center"><a href="/">{{ site.title }}</a></h1>
9
9
< div class ="mx-auto col-md-8 col-md-offset-2 ">
10
10
< div class ="mx-auto tagline col-md-8 col-md-offset-2 ">
11
11
< h2 > A < a href ="/authors "> community-driven</ a > weekly newsletter about what's happening in the Swift open source projects at < a href ="https://swift.org/ " target ="_blank "> Swift.org</ a > .
12
- Curated by < a href ="https://twitter.com/fassko "> Kristaps Grinbergs</ a > . Started by < a href ="https://jessesquires.com " target ="_blank "> Jesse Squires</ a > , continued by < a href ="https://twitter.com/BasThomas " target ="_blank "> Bas Broek</ a > . Published for free every other Thursday.</ h2 >
13
12
</ div > <!-- col -->
14
13
</ div > <!-- col -->
15
14
</ div > <!-- row -->
Original file line number Diff line number Diff line change 5
5
< a class ="btn btn-outline-secondary " href ="/sponsorship " title ="Become a sponsor "> < i class ="fa fa-star " aria-hidden ="true "> </ i > Sponsor</ a >
6
6
< a class ="btn btn-outline-secondary " href ="{{ site.links.twitter }} " title ="Follow us on Twitter "> < i class ="fa fa-twitter " aria-hidden ="true "> </ i > Follow</ a >
7
7
< a class ="btn btn-outline-secondary " href ="/search " title ="Search all issues "> < i class ="fa fa-search " aria-hidden ="true "> </ i > Search all issues</ a >
8
- < a class ="btn btn-outline-secondary " href ="https://spec.fm/podcasts/swift-unwrapped " title ="Swift Unwrapped "> < i class ="fa fa-podcast " aria-hidden ="true "> </ i > Podcast</ a >
8
+ < a class ="btn btn-outline-secondary " href ="https://swiftunwrapped.github.io " title ="Swift Unwrapped "> < i class ="fa fa-podcast " aria-hidden ="true "> </ i > Podcast</ a >
9
9
</ nav >
10
10
</ div > <!-- col -->
11
11
</ div > <!-- row -->
Original file line number Diff line number Diff line change 2
2
3
3
: root {
4
4
color-scheme : light dark;
5
-
5
+
6
6
--background : # ffffff ;
7
7
--body-text : # 606060 ;
8
8
--secondary-text : # 666666 ;
9
-
9
+
10
10
--code-fg : # c7254e ;
11
11
--code-bg : # f9f2f4 ;
12
-
12
+
13
13
--button-fg : # 666666 ;
14
14
--button-bg : # fff ;
15
15
--button-bg-hover : # eee ;
16
-
16
+
17
17
--social-fg : # 444444 ;
18
18
--social-fg-hover : # 666666 ;
19
-
19
+
20
20
--link-fg : # DC3A1D ;
21
21
--link-fg-visited : # DC3A1D ;
22
22
--link-fg-hover : # fbaf40 ;
23
-
23
+
24
24
--hr-border : # 666 ;
25
-
25
+
26
26
--post-title-font-weight : lighter;
27
-
27
+
28
28
--list-background-color : # f3f3f3 ;
29
29
}
30
30
34
34
--background : # 1c1c1c ;
35
35
--body-text : # b2b2b2 ;
36
36
--secondary-text : # 878787 ;
37
-
37
+
38
38
--code-fg : # 000000 ;
39
39
--code-bg : # 959595 ;
40
-
40
+
41
41
--button-fg : # 878787 ;
42
42
--button-bg : # 1c1c1c ;
43
43
--button-bg-hover : # 2f2f2f ;
44
-
44
+
45
45
--social-fg : # 979797 ;
46
46
--social-fg-hover : # 878787 ;
47
-
47
+
48
48
--link-fg : # f7492e ;
49
49
--link-fg-visited : # f7492e ;
50
50
--link-fg-hover : # f7ad2e ;
51
-
51
+
52
52
--hr-border : # 999 ;
53
-
53
+
54
54
--post-title-font-weight : 300 ; /* 400 is normal */
55
55
--list-background-color : # 111111 ;
56
56
}
@@ -63,12 +63,6 @@ body {
63
63
padding-top : 1rem ;
64
64
}
65
65
66
- body p {
67
- line-height : 1.6rem ;
68
- padding : 0.5rem 0rem 0.5rem 0rem ;
69
- font-size : 16px ;
70
- }
71
-
72
66
hr {
73
67
border-color : var (--hr-border );
74
68
width : 50% ;
@@ -174,7 +168,6 @@ header h2 {
174
168
175
169
.post-list-item {
176
170
margin-top : 20px ;
177
- background-color : var (--list-background-color );
178
171
padding : 12px 30px ;
179
172
border-radius : 15px ;
180
173
overflow : hidden;
Original file line number Diff line number Diff line change 3
3
title: Home
4
4
---
5
5
6
- <!-- post-list -->
7
6
< div >
8
- {% for post in paginator .posts %}
7
+ {% for post in site .posts %}
9
8
{% assign author = site.data.authors[post.author] %}
10
- < div class ="post-list-item ">
11
- < article class ="post ">
12
- < h1 class ="post-title ">
9
+ < div class ="pt-2 pb-2 ">
10
+ < h2 class ="text-center fw-normal ">
13
11
< a href ="{{ post.url }} "> {{ post.title }}</ a >
14
- < small class ="post-date "> {{ post.date | date_to_string }}</ small >
15
- </ h1 >
16
- < p class ="lead "> < em > Written by: < a href ="https://twitter.com/{{ author.twitter }} " target ="_blank "> {{ author.name }}</ a > </ em > </ p >
17
- < div class ="post-content ">
18
- {{ post.excerpt }}
19
- </ div >
20
- < p class ="post-readmore ">
21
- < a href ="{{ post.url }} "> Read more »</ a >
22
- </ p >
23
- </ article >
12
+ < small class ="text-muted "> {{ post.date | date_to_string }}</ small >
13
+ </ h2 >
24
14
</ div >
25
15
{% endfor %}
26
16
</ div >
27
-
28
- <!-- Pagination links -->
29
- {% if paginator.total_pages > 1 %}
30
- < div class ="post-list-pagination ">
31
- {% if paginator.previous_page %}
32
- < a href ="{{ paginator.previous_page_path }} " class ="previous ">
33
- « Previous
34
- </ a >
35
- {% endif %}
36
-
37
- < span class ="page_number ">
38
- Page: {{ paginator.page }} of {{ paginator.total_pages }}
39
- </ span >
40
-
41
- {% if paginator.next_page %}
42
- < a href ="{{ paginator.next_page_path }} " class ="next "> Next »</ a >
43
- {% endif %}
44
- </ div >
45
- {% endif %}
You can’t perform that action at this time.
0 commit comments