Get rid of extraneous icons on homepage

This commit is contained in:
Ryan Watters
2017-03-15 00:58:01 -05:00
parent 5ee2949b4e
commit 093848374e
10 changed files with 33 additions and 45 deletions
+3 -3
View File
@@ -1,11 +1,11 @@
[[feature]]
name = "Blistering Speed"
description = "Jettison expensive runtime dependencies, and let Go's incomparable I/O primitives do the work for you. For the first time, build your sites in micro- and milliseconds."
description = "Jettison expensive runtime dependencies, and let Go's incomparable I/O primitives do the work for you. For the first time, measure build times in micro- and milliseconds."
order = 1
[[feature]]
name = "Markdown Without Limits"
description = "Hugo natively supports GFM, as well as Asciidoc, reStructuredText, and Org-mode through external helpers. Shortcodes keeps your content readable and infinitely extensible."
description = "Hugo natively supports GFM, as well as Asciidoc, reStructuredText, and Org-mode through external helpers. Shortcodes keep your content readable and infinitely extensible."
order = 2
[[feature]]
@@ -15,7 +15,7 @@
[[feature]]
name = "Cross-Platform"
description = "Hugo has equally simple installation on OS X, Linux BSD, Windows, Dragonfly BSD, OpenBSD, Plan 9, and anywhere else the Go compiler tool chain can run."
description = "Hugo has equally simple installation on macOS, Linux BSD, Windows, Dragonfly BSD, OpenBSD, Plan 9, and anywhere else the Go compiler tool chain can run."
order = 4
[[feature]]
+1 -1
View File
@@ -1,7 +1,7 @@
[[tweet]]
name = "Hans Beck"
twitter_handle = "@EnrichedGamesHB"
quote = "Diving deeper into <a href='https://twitter.com/GoHugoIO' target='_blank'>@GoHugoIO</a>. A lot of docs there, top work! But I've the impressed that <a href='https://twitter.com/hashtag/gohugo' target='_blank'>#gohugo</a> is far easier than its feels from the docs!"
quote = "Diving deeper into <a href='https://twitter.com/GoHugoIO' target='_blank'>@GoHugoIO</a>. A lot of docs there, top work! But I've the impression that <a href='https://twitter.com/hashtag/gohugo' target='_blank'>#gohugo</a> is far easier than its feels from the docs!"
link = "https://twitter.com/EnrichedGamesHB/status/836854762440130560"
date = 2017-03-01T00:00:00Z
Binary file not shown.
@@ -1,5 +1,4 @@
<h2>What Makes Hugo Special? <br><span>These are just a few of Hugo's Powerful Features</span></h2>
<h2>What Makes Hugo Special? <br><span>Check Out Just a Few of Hugo's Powerful Features</span></h2>
{{ range sort $.Site.Data.homepagefeatures.feature "order" }}
<div class="home-row-content-feature" id="{{ .name | urlize }}">
<h3>{{.name}}</h3>
@@ -1,11 +1,5 @@
<div class="half half-content">
<h2>Focus on your content and design.</h2>
<div>
<h1>Making websites should be fun.</h1>
<hr class="hr">
<p>Forget databases, security updates, and cofee breaks spent staring at your command line while you wait for your static site to build.</p>
<p>Golang's speed combined with markdown's elegant simplicity mean Hugo is the first static site generator fast enough to keep up with your creativity.</p>
</div>
<div class="focus-svgs">
{{ partial "svg-icons/hugo-home.svg" . }}
<!-- {{ partial "svg-icons/content.svg" . }}
{{ partial "svg-icons/design.svg" . }} -->
<p>Forget databases, security updates, and coffee breaks spent staring at your command line while you wait for your static site to build. Hugo's speed fosters creativity. It makes building a website fun again.</p>
</div>
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 65 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 65 KiB

+1
View File
@@ -34,6 +34,7 @@
margin-left: -1em;
img {
height: $site-header-height * .7;
max-height: $site-header-height * .7;
margin-right: .25em;
}
.hugo-v {
+14 -19
View File
@@ -167,29 +167,24 @@ ul.animated {
.home-row-content-focus {
display: flex;
.half.half-content {
order: 2;
@include MQ(M) {
order: 1;
}
justify-content:space-around;
max-width:$M;
text-align:center;
h1 {
// text-align:center;
}
.focus-svgs {
order: 1;
display: flex;
justify-content: space-around;
margin-left: auto;
margin-right: auto;
@include MQ(M) {
max-width: 48%;
order: 2;
}
hr {
border-top: 1px solid $base-font-color;
height:0px;
}
.svg-wrapper {
margin-left:auto;
margin-right:auto;
max-width:200px;
svg {
max-width: 250px;
max-width: 200px;
}
}
#content-halo {
fill: $hugo-blue!important;
}
}
.home-row-content-features {
+1 -1
View File
File diff suppressed because one or more lines are too long