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
parent3d3a46ab2b1c7775dc2f8cb9b532692a4597e31e (diff)
fix path to header bg image
-rw-r--r--config.toml94
-rw-r--r--layouts/partials/services.html20
-rwxr-xr-xstatic/css/default.css2
3 files changed, 61 insertions, 55 deletions
diff --git a/config.toml b/config.toml
index e1636c4..48ef612 100644
--- a/config.toml
+++ b/config.toml
@@ -22,7 +22,7 @@ title = "My Hugo Config"
[params.nav]
home = "Welcome"
services = "What we Do"
- about = "About Us"
+ team = "About Us"
contact = "Contact Us"
# Services section
@@ -41,6 +41,7 @@ title = "My Hugo Config"
# [[params.services.images.list]]
# img = "images/img_1.jpg"
+ # 4 column
[[params.services.item]]
weight = 1
description = "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repudiandae aliquid aperiam eveniet officia molestiae temporibus beatae dolores dignissimos"
@@ -56,56 +57,61 @@ title = "My Hugo Config"
description = "Possimus id dicta consequuntur veritatis, reiciendis at expedita voluptate sint distinctio eligendi!"
button_item_info = "My Bounty"
+ [[params.services.item]]
+ weight = 4
+ description = "Possimus id dicta consequuntur veritatis, reiciendis at expedita voluptate sint distinctio eligendi!"
+ button_item_info = "My Bounty"
+
# Team section
[params.team]
enable = true
- title = "About the Team"
- description = "Lorem ipsum dolor sit amet consectetur adipisicing elit. Eveniet nam itaque ipsam iste provident quo ipsam iste provident."
-
- [[params.team.item]]
- name = "Jean Doe"
- position = "Chief legend"
- description = "Lorem ipsum dolor sit amet consectetur adipisicing elit. Eveniet nam itaque ipsam iste provident quo ipsam iste provident."
- img = "images/person1.jpg"
- facebook = "#"
- twitter = "#"
- dribbble = "#"
- instagram = "#"
- github = "#"
- linkedin = "#"
-
- [[params.team.item]]
- name = "Alice Doe"
- position = "Chief overlord"
- description = "Lorem ipsum dolor sit amet consectetur adipisicing elit. Eveniet nam itaque ipsam iste provident quo ipsam iste provident."
- img = "images/person2.jpg"
- facebook = "#"
- twitter = "#"
- dribbble = "#"
- instagram = "#"
- github = "#"
-
- [[params.team.item]]
- name = "John Doe"
- position = "Chief haranguer"
- description = "Lorem ipsum dolor sit amet consectetur adipisicing elit. Eveniet nam itaque ipsam iste provident quo ipsam iste provident."
- img = "images/person3.jpg"
- facebook = "#"
- twitter = "#"
- dribbble = "#"
- instagram = "#"
- github = "#"
+# title = "About the Team"
+# description = "Lorem ipsum dolor sit amet consectetur adipisicing elit. Eveniet nam itaque ipsam iste provident quo ipsam iste provident."
+
+# [[params.team.item]]
+# name = "Jean Doe"
+# position = "Chief legend"
+# description = "Lorem ipsum dolor sit amet consectetur adipisicing elit. Eveniet nam itaque ipsam iste provident quo ipsam iste provident."
+# img = "images/person1.jpg"
+# facebook = "#"
+# twitter = "#"
+# dribbble = "#"
+# instagram = "#"
+# github = "#"
+# linkedin = "#"
+
+# [[params.team.item]]
+# name = "Alice Doe"
+# position = "Chief overlord"
+# description = "Lorem ipsum dolor sit amet consectetur adipisicing elit. Eveniet nam itaque ipsam iste provident quo ipsam iste provident."
+# img = "images/person2.jpg"
+# facebook = "#"
+# twitter = "#"
+# dribbble = "#"
+# instagram = "#"
+# github = "#"
+
+# [[params.team.item]]
+# name = "John Doe"
+# position = "Chief haranguer"
+# description = "Lorem ipsum dolor sit amet consectetur adipisicing elit. Eveniet nam itaque ipsam iste provident quo ipsam iste provident."
+# img = "images/person3.jpg"
+# facebook = "#"
+# twitter = "#"
+# dribbble = "#"
+# instagram = "#"
+# github = "#"
# Contact section
[params.contact]
enable = true
- title = "Get In Touch"
- message = "Lorem ipsum dolor sit amet consectetur adipisicing elit. Eveniet nam itaque ipsam iste provident quo ipsam iste provident."
- name_placeholder = "Your name"
- email_placeholder = "Your email"
- email_disclaimer = "We'll never share your email with anyone else."
- message_placeholder = "Please enter a message."
- button_text = "Submit"
+# title = "Get In Touch"
+# message = "Lorem ipsum dolor sit amet consectetur adipisicing elit. Eveniet nam itaque ipsam iste provident quo ipsam iste provident."
+# name_placeholder = "Your name"
+# email_placeholder = "Your email"
+# email_disclaimer = "We'll never share your email with anyone else."
+# message_placeholder = "Please enter a message."
+# button_text = "Submit"
# Footer section
[params.footer]
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>
diff --git a/static/css/default.css b/static/css/default.css
index 496488a..7e2e02f 100755
--- a/static/css/default.css
+++ b/static/css/default.css
@@ -299,7 +299,7 @@
{
position: relative;
padding: 5em 0em 7em 0em;
- background: #111111 url(images/header-bg.jpg) no-repeat center;
+ background: #111111 url(../images/header-bg.jpg) no-repeat center;
background-size: cover;
}