File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ div.post-list {
7
7
color : var (--pst-color-text-base ) !important ;
8
8
}
9
9
10
+ .post-meta {
11
+ color : var (--colorSecondaryDark );
12
+ }
13
+
10
14
.post-list article {
11
15
padding-top : 1.5rem ;
12
16
}
@@ -17,16 +21,15 @@ div.post-list {
17
21
}
18
22
19
23
.post-author {
20
- color : var (--colorSecondaryDark );
21
24
display : inline;
22
25
}
23
26
24
27
.post-author : not (: first-child ): before {
25
28
content : ", " ;
26
29
}
27
30
28
- .post-list . post- date {
29
- color : var ( --colorSecondaryDark ) ;
31
+ .post-date {
32
+ padding-left : 0.5 rem ;
30
33
}
31
34
32
35
.post-list .post-summary {
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ languageCode: "en-us"
3
3
title : " Scientific Python Hugo Theme documentation"
4
4
theme : scientific-python-hugo-theme
5
5
relativeURLs : true
6
- disableKinds : ["term", " taxonomy"]
6
+ disableKinds : ["taxonomy"]
7
7
8
8
markup :
9
9
highlight :
Original file line number Diff line number Diff line change 1
1
< div class ="post-meta ">
2
2
< span class ="post-authors ">
3
3
{{- range .Params.author -}}
4
- < div class ="post-author "> {{ partial "svg-icon" "person" }} {{ . }}</ div >
4
+ < div class ="post-author "> < i class =" fa-solid fa-user " > </ i > {{ . }}</ div >
5
5
{{- end -}}
6
6
</ span >
7
7
{{ if .Date }}
8
- < span class ="post-date "> {{ partial "svg-icon" " calendar" }} {{.Date.Format "January 2, 2006"}}</ span >
8
+ < span class ="post-date "> < i class =" fa-regular fa- calendar "> </ i > {{.Date.Format "January 2, 2006"}}</ span >
9
9
{{ end }}
10
10
{{- if .Params.tags -}}
11
11
< div class ="post-tags ">
12
- {{ partial "svg-icon" " tag" }}
12
+ < i class =" fa-solid fa- tag "> </ i >
13
13
{{- range .Params.tags -}}
14
14
{{- $tag := lower . }}
15
15
< span class ="post-tag "> < a href ="{{ path.Join "/tags/" $tag | relURL }}"> #{{ $tag }}</ a > </ span >
You can’t perform that action at this time.
0 commit comments