Compare commits

..

No commits in common. "6e951653c15ac7966c355387fb3f0d2251c168e0" and "eeac3af99b4bbe1b1893fa640be834a8362a3690" have entirely different histories.

7 changed files with 7 additions and 7 deletions

View File

@ -1,2 +0,0 @@
resources/

View File

@ -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

View File

@ -0,0 +1 @@
{"Target":"css/main.min.css","MediaType":"text/css","Data":{}}

View File

@ -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">

View File

@ -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">

View File

@ -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 }}