Browse Source

Add Contact Us page

tags/v1.0
Matt Baer 8 years ago
parent
commit
7bbcc2b0a6
6 changed files with 61 additions and 8 deletions
  1. +1
    -2
      static/404.html
  2. +1
    -2
      static/about.html
  3. +55
    -0
      static/contact.html
  4. +1
    -2
      static/houses.html
  5. +1
    -2
      templates/editor.html
  6. +2
    -0
      templates/stats.html

+ 1
- 2
static/404.html View File

@@ -18,8 +18,7 @@
<nav>
<a class="home" href="/">&lt;&#8962;/&gt;</a>
<a href="/about.html">about</a>
<a href="mailto:hello@write.as">contact</a>
<a target="_blank" href="https://twitter.com/htmlhouse">@HTMLhouse</a>
<a href="/contact.html">contact</a>
</nav>
</header>



+ 1
- 2
static/about.html View File

@@ -32,8 +32,7 @@
<nav>
<a class="home" href="/">&lt;&#8962;/&gt;</a>
<a class="current" href="/about.html">about</a>
<a href="mailto:hello@write.as">contact</a>
<a target="_blank" href="https://twitter.com/htmlhouse">@HTMLhouse</a>
<a href="/contact.html">contact</a>
</nav>
</header>



+ 55
- 0
static/contact.html View File

@@ -0,0 +1,55 @@
<!DOCTYPE HTML>
<html>
<head>

<title>Contact HTMLhouse</title>
<link rel="stylesheet" type="text/css" href="/css/house.css" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="icon" type="image/png" href="/img/favicon-chrome.png" sizes="192x192">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#888888" />

<meta name="description" content="Contact the team at HTMLhouse.">
<meta name="application-name" content="HTMLhouse">
<meta name="application-url" content="https://html.house">
<meta itemprop="name" content="Contact HTMLhouse">
<meta itemprop="description" content="Contact the team at HTMLhouse.">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Contact HTMLhouse">
<meta name="twitter:description" content="Contact the team at HTMLhouse.">
<meta property="og:title" content="Contact HTMLhouse" />
<meta property="og:site_name" content="HTMLhouse" />
<meta property="og:type" content="object" />
<meta property="og:url" content="https://html.house/contact.html" />
<meta property="og:description" content="Contact the team at HTMLhouse." />

</head>
<body>
<header>
<h1>HTMLhouse</h1>
<nav>
<a class="home" href="/">&lt;&#8962;/&gt;</a>
<a href="/browse">browse</a>
<a href="/about.html">about</a>
<a class="current" href="/contact.html">contact</a>
</nav>
</header>

<div id="wrapper">
<h2>Contact Us</h2>
<p>Have a question or some feedback? Let us know through <a href="mailto:hello@write.as?subject=Feedback+on+HTMLhouse">email</a>, <a href="https://twitter.com/htmlhouse">Twitter</a>, or the <strong>#htmlhouse</strong> channel in our <a href="http://slack.write.as/">Slack group</a>.</p>
</div>

<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-47877053-8', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>

+ 1
- 2
static/houses.html View File

@@ -32,8 +32,7 @@
<nav>
<a class="home" href="/">&lt;&#8962;/&gt;</a>
<a href="/about.html">about</a>
<a href="mailto:hello@write.as">contact</a>
<a target="_blank" href="https://twitter.com/htmlhouse">@HTMLhouse</a>
<a href="/contact.html">contact</a>
</nav>
</header>



+ 1
- 2
templates/editor.html View File

@@ -32,8 +32,7 @@
<nav>
{{if .ID}}<a class="home" href="/">&lt;&#8962;/&gt;</a>{{end}}
<a href="/about.html">about</a>
<a href="mailto:hello@write.as">contact</a>
<a target="_blank" href="https://twitter.com/htmlhouse">@HTMLhouse</a>
<a href="/contact.html">contact</a>
</nav>
{{if .ID}}<a href="/{{.ID}}.html">view</a>{{end}}
<a id="publish" href="#">{{if .ID}}update{{else}}publish{{end}}</a>


+ 2
- 0
templates/stats.html View File

@@ -31,6 +31,8 @@
<h1>{{.ID}}.html stats</h1>
<nav>
<a class="home" href="/">&lt;&#8962;/&gt;</a>
<a href="/about.html">about</a>
<a href="/contact.html">contact</a>
</nav>
<a href="/{{.ID}}.html">view</a>
<a href="/edit/{{.ID}}.html">edit</a>


Loading…
Cancel
Save