Browse Source

Merge pull request #2 from budparr/dev

update from DEV
tags/v1.1
Bud Parr 7 years ago
parent
commit
a0fe222c18
3 changed files with 11 additions and 5 deletions
  1. 1
    0
      README.md
  2. 5
    0
      layouts/_default/baseof.html
  3. 5
    5
      layouts/shortcodes/form-contact.html

+ 1
- 0
README.md View File

@@ -13,6 +13,7 @@ Features
- Contact form
- Custom Robots.txt (changes values based on environment)
- Internal templates for meta data and google analytics
- RSS Discovery

Also includes examples of Hugo Features or Functions:


+ 5
- 0
layouts/_default/baseof.html View File

@@ -19,6 +19,11 @@

<link href='{{ "dist/main.css" | absURL }}' rel='stylesheet' type="text/css" />

{{ if .RSSLink }}
<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
<link href="{{ .RSSLink }}" rel="feed" type="application/rss+xml" title="{{ .Site.Title }}" />
{{ end }}

{{/* NOTE: These Hugo Internal Templates can be found starting at https://github.com/spf13/hugo/blob/master/tpl/tplimpl/template_embedded.go#L158 */}}
{{- template "_internal/opengraph.html" . -}}
{{- template "_internal/google_news.html" . -}}

+ 5
- 5
layouts/shortcodes/form-contact.html View File

@@ -3,17 +3,17 @@

<form class="black-80 sans-serif" accept-charset="UTF-8" action="{{ .Get "action" }}" method="POST">

<label class="{{ $.Scratch.Get "labelClasses" }}" for="first_name">Your Name</label>
<input type="text" id="first_name" name="first_name" class="{{ $.Scratch.Get "inputClasses" }}" required placeholder=" " />
<label class="{{ $.Scratch.Get "labelClasses" }}" for="name">Your Name</label>
<input type="text" id="name" name="name" class="{{ $.Scratch.Get "inputClasses" }}" required placeholder=" " aria-labelledby="name"/>

<label class="{{ $.Scratch.Get "labelClasses" }}" for="email">Email Address</label>
<input type="email" id="email" name="email" class="{{ $.Scratch.Get "inputClasses" }}" required placeholder=" " />
<div class="requirements f6 gray glow i ph3 overflow-hidden TK">
<input type="email" id="email" name="email" class="{{ $.Scratch.Get "inputClasses" }}" required placeholder=" " aria-labelledby="email"/>
<div class="requirements f6 gray glow i ph3 overflow-hidden">
Must be a valid email address.
</div>

<label class="{{ $.Scratch.Get "labelClasses" }}" for="message">Message</label>
<textarea id="message" name="message" class="{{ $.Scratch.Get "inputClasses" }} h4" aria-describedby="comment-desc"></textarea>
<textarea id="message" name="message" class="{{ $.Scratch.Get "inputClasses" }} h4" aria-labelledby="message"></textarea>

<input class="db w-100 mv2 white pa3 bn hover-shadow hover-bg-blck bg-animate bg-black" type="submit" value="Send" />


Loading…
Cancel
Save