Compare commits
No commits in common. "6e951653c15ac7966c355387fb3f0d2251c168e0" and "eeac3af99b4bbe1b1893fa640be834a8362a3690" have entirely different histories.
6e951653c1
...
eeac3af99b
|
@ -1,2 +0,0 @@
|
|||
resources/
|
||||
|
|
@ -12,8 +12,7 @@ buildFuture = true
|
|||
copyright = "©{year}, All Rights Reserved"
|
||||
timeout = 10000
|
||||
enableEmoji = true
|
||||
[pagination]
|
||||
pagerSize = 13
|
||||
paginate = 13
|
||||
rssLimit = 100
|
||||
|
||||
enableGitInfo = false
|
||||
|
@ -38,6 +37,7 @@ googleAnalytics = ""
|
|||
[outputs]
|
||||
home = ["HTML", "RSS", "SearchIndex"]
|
||||
section = ["HTML", "RSS", "SearchIndex"]
|
||||
taxonomyTerm = ["HTML", "RSS", "SearchIndex"]
|
||||
taxonomy = ["HTML", "RSS", "SearchIndex"]
|
||||
|
||||
[outputFormats]
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1 @@
|
|||
{"Target":"css/main.min.css","MediaType":"text/css","Data":{}}
|
|
@ -1,7 +1,7 @@
|
|||
{{ $isPad := or (in (slice "archive" "posts" "page") .Type) }}
|
||||
{{ $isPad = or $isPad (and (eq .Kind "page") (not (in (slice "about" "contact" "publication") .Type))) }}
|
||||
{{ $isPad = or $isPad (and (eq .Kind "section") (eq .Type "publication")) }}
|
||||
{{ $isPad = or $isPad (and (eq .Type "tags") (ne .Kind "taxonomy")) }}
|
||||
{{ $isPad = or $isPad (and (eq .Type "tags") (ne .Kind "taxonomyTerm")) }}
|
||||
|
||||
{{ if eq ($.Param "languagedir") "rtl" }}
|
||||
<div class="wrapper__left hide" data-pad="{{ $isPad }}" dir="rtl">
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{{ $isPad := or (in (slice "archive" "posts" "page") .Type) }}
|
||||
{{ $isPad = or $isPad (and (eq .Kind "page") (not (in (slice "about" "contact" "publication") .Type))) }}
|
||||
{{ $isPad = or $isPad (and (eq .Kind "section") (eq .Type "publication")) }}
|
||||
{{ $isPad = or $isPad (and (eq .Type "tags") (ne .Kind "taxonomy")) }}
|
||||
{{ $isPad = or $isPad (and (eq .Type "tags") (ne .Kind "taxonomyTerm")) }}
|
||||
|
||||
{{ if ne ($.Param "languagedir") "rtl" }}
|
||||
<div class="wrapper__right hide" data-pad="{{ $isPad }}" dir="ltr">
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
{{ range .Site.Params.custom_css }}
|
||||
{{ $custom_template := resources.Get . }}
|
||||
{{ if $custom_template }}
|
||||
{{ $custom_style := $custom_template | css.Sass | resources.Minify }}
|
||||
{{ $custom_style := $custom_template | resources.ToCSS | resources.Minify }}
|
||||
<link rel="stylesheet" href="{{ $custom_style.RelPermalink }}">
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
|
Loading…
Reference in New Issue