Browse Source

setup base structure

master
Brett Langdon 8 years ago
parent
commit
412e94b692
No known key found for this signature in database GPG Key ID: A2ECAB73CE12147F
9 changed files with 106 additions and 0 deletions
  1. +16
    -0
      config.toml
  2. +41
    -0
      layouts/index.html
  3. +7
    -0
      layouts/partials/faq.html
  4. +7
    -0
      layouts/partials/intro.html
  5. +14
    -0
      layouts/partials/nav.html
  6. +7
    -0
      layouts/partials/registry.html
  7. +7
    -0
      layouts/partials/schedule.html
  8. +7
    -0
      layouts/partials/things-to-do.html
  9. BIN
      static/background.jpg

+ 16
- 0
config.toml View File

@ -1,3 +1,19 @@
baseURL = "http://example.org/"
languageCode = "en-us"
title = "My New Hugo Site"
theme = "icon"
[params]
author = "Your name"
description = "Cool description"
# Hero section (from here on is for icon theme)
[params.hero]
img = "background.jpg"
title = "Brett & Kate's Wedding"
description = "But, we are already married"
# Footer section
[params.footer]
enable = true
note = ""

+ 41
- 0
layouts/index.html View File

@ -0,0 +1,41 @@
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <![endif]-->
<html>
<head>
{{ partial "header.html" . }}
</head>
<body>
<!-- Loader -->
<div class="fh5co-loader"></div>
<div class="fh5co-page">
<div id="fh5co-container">
{{ partial "hero.html" . }}
{{ partial "nav.html" . }}
{{ partial "intro.html" . }}
{{ partial "registry.html" .}}
{{ partial "schedule.html" .}}
{{ partial "things-to-do.html" .}}
{{ partial "faq.html" .}}
{{ if .Site.Params.footer.enable }}
{{ partial "footer.html" .}}
{{ end }}
</div>
</div>
{{ partial "js.html" .}}
</body>
</html>

+ 7
- 0
layouts/partials/faq.html View File

@ -0,0 +1,7 @@
<div id="fh5co-team" data-section="faq">
<div class="container">
<div class="col-md-6 col-md-offset-3 text-center fh5co-heading">
<h2>FAQ</h2>
</div>
</div>
</div>

+ 7
- 0
layouts/partials/intro.html View File

@ -0,0 +1,7 @@
<div id="fh5co-team" data-section="intro">
<div class="container">
<div class="col-md-6 col-md-offset-3 text-center fh5co-heading">
<h2>Intro</h2>
</div>
</div>
</div>

+ 14
- 0
layouts/partials/nav.html View File

@ -0,0 +1,14 @@
<div class="js-sticky">
<div class="fh5co-main-nav">
<div class="container">
<div class="fh5co-menu-1">
<a href="#" data-nav-section="home">Home</a>
<a href="#" data-nav-section="intro">Intro</a>
<a href="#" data-nav-section="registry">Registry</a>
<a href="#" data-nav-section="schedule">Schedule</a>
<a href="#" data-nav-section="things-to-do">Things to do</a>
<a href="#" data-nav-section="faq">FAQ</a>
</div>
</div>
</div>
</div>

+ 7
- 0
layouts/partials/registry.html View File

@ -0,0 +1,7 @@
<div id="fh5co-services" data-section="registry">
<div class="container">
<div class="col-md-6 col-md-offset-3 text-center fh5co-heading">
<h2>Registry</h2>
</div>
</div>
</div>

+ 7
- 0
layouts/partials/schedule.html View File

@ -0,0 +1,7 @@
<div id="fh5co-team" data-section="schedule">
<div class="container">
<div class="col-md-6 col-md-offset-3 text-center fh5co-heading">
<h2>Schedule</h2>
</div>
</div>
</div>

+ 7
- 0
layouts/partials/things-to-do.html View File

@ -0,0 +1,7 @@
<div id="fh5co-services" data-section="things-to-do">
<div class="container">
<div class="col-md-6 col-md-offset-3 text-center fh5co-heading">
<h2>Things to do</h2>
</div>
</div>
</div>

BIN
static/background.jpg View File

Before After
Width: 4500  |  Height: 3000  |  Size: 2.3 MiB

Loading…
Cancel
Save