Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/salsysd/hugo-assembly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsalomon valverde <x84@sal.sh>2018-06-27 01:17:36 +0300
committersalomon valverde <x84@sal.sh>2018-06-27 01:17:36 +0300
commite6f04948fb482fb760bca8eda6d1139cc0662d9d (patch)
treede1e7633c9927be717bf10d7b3fe325a35a3c1bb /layouts
parent3d3a46ab2b1c7775dc2f8cb9b532692a4597e31e (diff)
fix path to header bg image
Diffstat (limited to 'layouts')
-rw-r--r--layouts/partials/services.html20
1 files changed, 10 insertions, 10 deletions
diff --git a/layouts/partials/services.html b/layouts/partials/services.html
index 5f1e789..5fd0a30 100644
--- a/layouts/partials/services.html
+++ b/layouts/partials/services.html
@@ -1,15 +1,15 @@
<div id="three-column" class="container">
{{ with .Site.Params.services }}
- <div class="title">
- <h2>{{ with .title }}</h2>
- <span class="byline">{{ with .subtitle }}</span>
- </div>
- {{ range .item }}
- <div class="box{{ .weight }}">
- <p>{{ .description | markdownify }}</p>
- <a href="#" class="button button-alt">{{ .button_item_info }}</a>
- </div>
- {{ end }}
+ <div class="title">
+ <h2>{{ .title }}</h2>
+ <span class="byline">{{ .subtitle }}</span>
+ </div>
+ {{ range .item }}
+ <div class="box{{ .weight }}">
+ <p>{{ .description | markdownify }}</p>
+ <a href="#" class="button button-alt">{{ .button_item_info }}</a>
+ </div>
+ {{ end }}
{{ end }}
</div>