Skip to content

Commit 06248d3

Browse files
committed
🐛 Fix syntax error
Former-commit-id: ac7bdef [formerly 42a3923] Former-commit-id: e695f74e3137b1bf56c3d76dd65735977d1f2ae4 Former-commit-id: ab83714
1 parent 64bc848 commit 06248d3

File tree

4 files changed

+3
-17
lines changed

4 files changed

+3
-17
lines changed

exampleSite/cards.toml

-7
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@ theme = "dream-plus"
66
themesDir = "../.." #Don't use this, only for exampleSite
77
paginate = 4
88

9-
#Syntax highlighting
10-
pygmentsCodeFences = true
11-
pygmentsUseClasses = true
12-
pygmentsOptions = "linenos=table"
13-
14-
disqusShortname = "dream-plus"
15-
169
enableRobotsTXT = true
1710

1811
#Enable Hugo Emoji Conversion

exampleSite/deploy-cards.toml

+1-8
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,10 @@ theme = "repo"
66
themesDir = "../.." #Don't use this, only for exampleSite
77
paginate = 4
88

9-
#Syntax highlighting
10-
pygmentsCodeFences = true
11-
pygmentsUseClasses = true
12-
pygmentsOptions = "linenos=table"
13-
14-
disqusShortname = "dream-plus"
15-
169
enableRobotsTXT = true
1710

1811
#Enable Hugo Emoji Conversion
19-
enableEmoji=true
12+
enableEmoji = true
2013

2114
[params]
2215
#Favicon for site

exampleSite/deploy-posts.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ disqusShortname = "dream-plus"
1616
enableRobotsTXT = true
1717

1818
#Enable Hugo Emoji Conversion
19-
enableEmoji=true
19+
enableEmoji = true
2020

2121
[params]
2222
#Favicon for site

layouts/posts/single.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ <h1 class="post-title">
5757
{{ end }}
5858

5959
{{/*Licensing*/}}
60-
{{ $license := .Params.license | lower }}
60+
{{ $license := lower .Params.license }}
6161
{{ with $license }}
6262
<section class="ui secondary attached segment copyright">
6363
{{ partial "license.html" (dict "license" $license ) }}

0 commit comments

Comments
 (0)