File tree Expand file tree Collapse file tree 5 files changed +25
-19
lines changed Expand file tree Collapse file tree 5 files changed +25
-19
lines changed Original file line number Diff line number Diff line change 2
2
/* ! bulma.io v0.9.1 | MIT License | github.com/jgthms/bulma */
3
3
@import " utilities/_all"
4
4
@import " base/_all"
5
- @import " elements/_all"
6
- @import " form/_all"
7
- @import " components/_all"
5
+ @import " elements/button"
6
+ @import " elements/box"
7
+ @import " elements/content"
8
+ @import " elements/container"
9
+ @import " elements/other"
10
+ @import " elements/title"
11
+ @import " components/card"
12
+ @import " components/navbar"
8
13
@import " grid/_all"
9
14
@import " helpers/_all"
10
15
@import " layout/_all"
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ $text-strong: darken($text, 5);
36
36
37
37
$link : $blue ;
38
38
$code : lighten ($red , 8 );
39
+ $code-border-radius : 0.25em ;
39
40
40
41
$pagination-background-color : $grey-lighter ;
41
42
@@ -202,3 +203,13 @@ h5 {
202
203
h6 {
203
204
font-size : 1.2rem ;
204
205
}
206
+
207
+ code {
208
+ border-radius : $code-border-radius ;
209
+ }
210
+
211
+ .commit {
212
+ code {
213
+ background : darken ($grey-darker , 4 );
214
+ }
215
+ }
Original file line number Diff line number Diff line change 14
14
{{ $sitetitle := .Site.Title }}
15
15
{{ with .OutputFormats.Get "RSS" }}
16
16
< link
17
- href ="{{ .RelPermalink }} "
18
- rel ="alternate "
19
- type ="application/rss+xml "
20
- title ="{{ $sitetitle }} "
21
- />
17
+ href ="{{ .RelPermalink }} "
18
+ rel ="alternate "
19
+ type ="application/rss+xml "
20
+ title ="{{ $sitetitle }} "
21
+ />
22
22
{{ end }}
23
23
{{ partial "head_includes.html" . }}
24
24
</ head >
@@ -112,7 +112,7 @@ <h3>Nightly</h3>
112
112
113
113
const commEl = el . querySelector ( '.commit' ) ;
114
114
if ( commEl ) {
115
- commEl . innerText = info . commit ;
115
+ commEl . innerHTML = "<code>" + info . commit . slice ( 0 , 7 ) + "</code>" ;
116
116
}
117
117
118
118
const linkEl = el . parentNode . querySelector ( '.link' ) ;
Original file line number Diff line number Diff line change 3
3
{{ $style := $sass | resources.ToCSS $sassOpts }}
4
4
< link rel ="stylesheet " href ="{{ $style.Permalink }} " />
5
5
6
- < link
7
- href ="https://cdn.jsdelivr.net/npm/highlightjs@9.12.0/styles/github-gist.css "
8
- rel ="stylesheet "
9
- />
10
-
11
6
< link rel ="shortcut icon " sizes ="48x48 " href ="/img/favicon.ico ">
12
7
< link rel ="icon " type ="image/png " sizes ="16x16 " href ="/img/favicon/favicon-16x16.png ">
13
8
< link rel ="icon " type ="image/png " sizes ="32x32 " href ="/img/favicon/favicon-32x32.png ">
14
9
< link rel ="apple-touch-icon " sizes ="180x180 " href ="/img/favicon/apple-touch-icon.png ">
15
10
< link rel ="icon " type ="image/png " sizes ="192x192 " href ="/img/favicon/android-chrome-192x192.png ">
16
- < link rel ="manifest " href ="/site.webmanifest ">
Original file line number Diff line number Diff line change 1
- < script src ="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.14.2/highlight.min.js "> </ script >
2
1
3
- < script >
4
- hljs . initHighlightingOnLoad ( ) ;
5
- </ script >
You can’t perform that action at this time.
0 commit comments