Skip to content

Commit

Permalink
Fix error when creating section pages
Browse files Browse the repository at this point in the history
  • Loading branch information
parsiya committed Apr 22, 2018
1 parent 3cd676c commit 99e5d1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion layouts/_default/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<article role="article">
<header>
<h1 class="entry-title">
{{ .Data.Singular | title }}: {{ .Title }}
{{ if .Data.Singular }}{{ .Data.Singular | title }}: {{ .Title }}{{ end }}
</h1>
</header>
<div id="blog-archives" class="category">
Expand Down
4 changes: 2 additions & 2 deletions static/css/hugo-octopress.css
Original file line number Diff line number Diff line change
Expand Up @@ -1936,8 +1936,8 @@ figure a {
/* LineTableTD */ .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; width: auto; display: block; }
/* LineHighlight */ .chroma .hl { display: block; width: 100%; }
/* LineNumbersTable */ .chroma .lnt { margin-right: 0.4em; padding: 0 0.4em 0 0.4em; }
/* LineNumbers */ .chroma .ln { margin-right: 0.4em; padding: 0 0.4em 0 0.4em; }
/* LineNumbersTable */ .chroma .lnt { margin-right: 0.3em; padding: 0 0.3em 0 0.3em; }
/* LineNumbers */ .chroma .ln { margin-right: 0.3em; padding: 0 0.3em 0 0.3em; }
/* Keyword */ .chroma .k { color: #719e07 }
/* KeywordConstant */ .chroma .kc { color: #cb4b16 }
/* KeywordDeclaration */ .chroma .kd { color: #268bd2 }
Expand Down

0 comments on commit 99e5d1f

Please sign in to comment.