Update to site
This commit is contained in:
parent
3345fa5897
commit
b0bdfe2fe9
244 changed files with 11618 additions and 12 deletions
24
source/_includes/custom/after_footer.html
Normal file
24
source/_includes/custom/after_footer.html
Normal file
|
@ -0,0 +1,24 @@
|
|||
{% comment %}
|
||||
Add content to be output at the bottom of each page. (You might use this for analytics scripts, for example)
|
||||
{% endcomment %}
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
var stickyNavTop = $('nav').offset().top;
|
||||
|
||||
var stickyNav = function(){
|
||||
var scrollTop = $(window).scrollTop();
|
||||
|
||||
if (scrollTop > stickyNavTop) {
|
||||
$('nav').addClass('sticky');
|
||||
} else {
|
||||
$('nav').removeClass('sticky');
|
||||
}
|
||||
};
|
||||
|
||||
stickyNav();
|
||||
|
||||
$(window).scroll(function() {
|
||||
stickyNav();
|
||||
});
|
||||
});
|
||||
</script>
|
4
source/_includes/custom/asides/about.html
Normal file
4
source/_includes/custom/asides/about.html
Normal file
|
@ -0,0 +1,4 @@
|
|||
<section>
|
||||
<h1>About Me</h1>
|
||||
<p>A little something about me.</p>
|
||||
</section>
|
26
source/_includes/custom/category_feed.xml
Normal file
26
source/_includes/custom/category_feed.xml
Normal file
|
@ -0,0 +1,26 @@
|
|||
---
|
||||
---
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<feed xmlns="http://www.w3.org/2005/Atom">
|
||||
|
||||
<title><![CDATA[{{ page.title }} | {{ site.title }}]]></title>
|
||||
<link href="{{ site.url }}/{{ page.feed_url }}" rel="self"/>
|
||||
<link href="{{ site.url }}/"/>
|
||||
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
||||
<id>{{ site.url }}/</id>
|
||||
<author>
|
||||
<name><![CDATA[{{ site.author | strip_html }}]]></name>
|
||||
{% if site.email %}<email><![CDATA[{{ site.email }}]]></email>{% endif %}
|
||||
</author>
|
||||
<generator uri="http://octopress.org/">Octopress</generator>
|
||||
|
||||
{% for post in site.categories[page.category] limit: 5 %}
|
||||
<entry>
|
||||
<title type="html"><![CDATA[{{ post.title | cdata_escape }}]]></title>
|
||||
<link href="{{ site.url }}{{ post.url }}"/>
|
||||
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
||||
<id>{{ site.url }}{{ post.id }}</id>
|
||||
<content type="html"><![CDATA[{{ post.content | expand_urls: site.url | markdownify | cdata_escape }}]]></content>
|
||||
</entry>
|
||||
{% endfor %}
|
||||
</feed>
|
4
source/_includes/custom/footer.html
Normal file
4
source/_includes/custom/footer.html
Normal file
|
@ -0,0 +1,4 @@
|
|||
<p class="copyright">
|
||||
All content by {{ site.author }} and licenced under <a href="//creativecommons.org/licenses/by-nc-sa/3.0/ie/">Creative Commons</a>.<br>
|
||||
Code under <a href="//github.com/coogie/oscailte/blob/master/README.md">MIT Licence</a>. <span class="credit">Site powered by <a href="http://octopress.org">Octopress</a></span>
|
||||
</p>
|
14
source/_includes/custom/grid_item_left.html
Normal file
14
source/_includes/custom/grid_item_left.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
<h2 class="title">Observe</h2>
|
||||
<hr>
|
||||
<p>
|
||||
Home Assistant will track the state of all the devices in your home, so you don't have to.
|
||||
</p>
|
||||
<p>The following devices are supported:</p>
|
||||
<ul>
|
||||
<li>Philips Hue</li>
|
||||
<li>Belkin WeMo</li>
|
||||
<li>Google Chromecast</li>
|
||||
<li>Netgear, Tomato and OpenWRT routers</li>
|
||||
<li>Tellstick devices & sensors</li>
|
||||
<li>Scanning network for connected devices</li>
|
||||
</ul>
|
6
source/_includes/custom/grid_item_middle.html
Normal file
6
source/_includes/custom/grid_item_middle.html
Normal file
|
@ -0,0 +1,6 @@
|
|||
<h2 class="title">Control</h2>
|
||||
<hr>
|
||||
<p>Control all your devices from a single, mobile-friendly, interface.</p>
|
||||
<p>
|
||||
Home Assistant allows you to control all your devices without storing any of your data in the cloud. We like to keep your privacy private.
|
||||
</p>
|
10
source/_includes/custom/grid_item_right.html
Normal file
10
source/_includes/custom/grid_item_right.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
<h2 class="title">Automate</h2>
|
||||
<hr>
|
||||
<p>Setup advanced rules to control devices and bring your home alive.</p>
|
||||
<p>Do you want to have…</p>
|
||||
<ul>
|
||||
<li>the lights turn on when the sun sets and you are home?</li>
|
||||
<li>the lights turn on when anyome comes home and it is dark?</li>
|
||||
<li>dim the lights when you start watching Netflix on your Chromecast?</li>
|
||||
</ul>
|
||||
<p>We've got you covered.</p>
|
11
source/_includes/custom/header.html
Normal file
11
source/_includes/custom/header.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
<div class="grid__item three-tenths lap-four-sixths palm-one-whole ha-title">
|
||||
<a href="{{ root_url }}/" class="site-title">
|
||||
<img width='40' src='{{ root_url }}/images/favicon-192x192.png'> {{ site.title }}
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="grid__item seven-tenths lap-two-sixths palm-one-whole">
|
||||
<nav>
|
||||
{% include site/navigation.html %}
|
||||
</nav>
|
||||
</div>
|
7
source/_includes/custom/navigation.html
Normal file
7
source/_includes/custom/navigation.html
Normal file
|
@ -0,0 +1,7 @@
|
|||
<ul class="menu pull-right">
|
||||
<li><a href="{{ root_url }}/getting-started/">Getting started</a></li>
|
||||
<li><a href="{{ root_url }}/architecture/">Architecture</a></li>
|
||||
<li><a href="{{ root_url }}/contributing/">Contributing</a></li>
|
||||
<li><a href="{{ root_url }}/blog/2014/12/18/website-launched/">Blog</a></li>
|
||||
<li><a href="https://groups.google.com/forum/#!forum/home-assistant-dev">Need help?</a></li>
|
||||
</ul>
|
5
source/_includes/custom/unused_head.html
Normal file
5
source/_includes/custom/unused_head.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
<!--Fonts from Google"s Web font directory at http://google.com/webfonts -->
|
||||
<link href='https://fonts.googleapis.com/css?family=Noto+Serif:400,700' rel='stylesheet' type='text/css'>
|
||||
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
|
||||
<link rel='shortcut icon' href='/static/favicon.ico' />
|
||||
<link rel='icon' type='image/png' href='/static/favicon-192x192.png' sizes='192x192'>
|
9
source/_includes/custom/welcome.html
Normal file
9
source/_includes/custom/welcome.html
Normal file
|
@ -0,0 +1,9 @@
|
|||
<h1>Awaken your home</h1>
|
||||
<hr>
|
||||
<p class="lead">
|
||||
Home Assistant is an open-source home automation platform running on Python 3. Track and control all devices at home and automate control. Installation in less then a minute.
|
||||
</p>
|
||||
<p>
|
||||
<a href='{{ root_url }}/getting-started' class='btn' style='margin: 0 50px 10px 0;'>Get started</a>
|
||||
<a href='https://www.github.com/balloob/home-assistant' class='btn'>Browse code on GitHub</a>
|
||||
</p>
|
Loading…
Add table
Add a link
Reference in a new issue