Site updated at 2017-12-29 08:24:20 UTC

This commit is contained in:
Travis CI 2017-12-29 08:24:20 +00:00
parent 634126eaf6
commit ef08aef875
236 changed files with 1815 additions and 1510 deletions

View file

@ -4,7 +4,7 @@
<title><![CDATA[Home Assistant]]></title>
<link href="https://home-assistant.io/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/>
<updated>2017-12-28T20:20:53+00:00</updated>
<updated>2017-12-29T08:15:55+00:00</updated>
<id>https://home-assistant.io/</id>
<author>
<name><![CDATA[Home Assistant]]></name>
@ -13,6 +13,32 @@
<generator uri="http://octopress.org/">Octopress</generator>
<entry>
<title type="html"><![CDATA[Thank You]]></title>
<link href="https://home-assistant.io/blog/2017/12/28/thank-you/"/>
<updated>2017-12-28T22:00:00+00:00</updated>
<id>https://home-assistant.io/blog/2017/12/28/thank-you</id>
<content type="html"><![CDATA[<p>2017 is almost over and this means its time to do a little recap of our 2017. This was a great year for Home Assistant. Again, we were able to stick to our bi-weekly release cycle. There were 25 releases over the year and each release included the work of around 60 contributors.</p>
<p>We got 10.000 stars on <a href="https://GitHub.com">GitHub</a>, reached 10.000 commits in the main repo (over 4300 were made in 2017), got a <a href="/blog/2017/04/01/thomas-krenn-award/">Thomas-Krenn award</a>, participated in <a href="/blog/2017/11/04/release-57/#hacktoberfest">Hacktoberfest</a>, we have now almost 1000 integrations (the exact number is 938), we <a href="/blog/2017/07/03/home-assistant-is-moving-to-discord/">moved to Discord</a> and we are up to over 2 million pageviews per month on our forum. Beside that we announced the <a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Home Assistant cloud</a> and have regular <a href="https://hasspodcast.io/">Home Assistant Podcasts</a>.</p>
<p>We also do not want to forget to mention <a href="https://home-assistant.io/hassio/">Hass.io</a> and all the great Hass.io add-ons.</p>
<p>Uff, what a year…Thank you, dear community for being so helpful, supportive and awesome 🙇.</p>
<p>A very big thanks goes out to the developers of the Python language and all the open source libraries and tools that Home Assistant depends on. You are the foundation for our success and all of you can be proud of yourself.</p>
<p>We would also like to thanks all the companies that offer their services for free to open source projects. Without these we would not be able to operate at our speed or scale. Thank you <a href="https://GitHub.com">GitHub</a>, <a href="https://Travis-ci.org">TravisCI</a>, <a href="https://CloudFlare.com">CloudFlare</a>, [Disord] and <a href="https://Discourse.com">Discourse</a>!</p>
<p>Some of us are taking a break and spending some quality time with family and loved ones.</p>
<p>Stay tuned for more Home Assistant awesomeness in 2018. We will keep the pace but first: Happy New Year!</p>
<p> Home Assistant Organization</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Introducing Home Assistant Cloud]]></title>
<link href="https://home-assistant.io/blog/2017/12/17/introducing-home-assistant-cloud/"/>
@ -2222,50 +2248,6 @@ Demo is running... -&gt; CTRL + C to shutdown
<p><a href="https://hacktoberfest.digitalocean.com/"><img src="/images/blog/2016-10-hacktoberfest/hacktoberfest.png" alt="Hacktober fest logo" /></a></p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Effortless encryption with Let's Encrypt and DuckDNS]]></title>
<link href="https://home-assistant.io/blog/2017/09/27/effortless-encryption-with-lets-encrypt-and-duckdns/"/>
<updated>2017-09-27T00:05:00+00:00</updated>
<id>https://home-assistant.io/blog/2017/09/27/effortless-encryption-with-lets-encrypt-and-duckdns</id>
<content type="html"><![CDATA[<p>When Lets Encrypt launched we were estatic: finally an easy and free way for our users to securely access their homes remotely. Lets Encrypt signifianctly lowered the bar to get and renew SSL certificates. However, this process could still be quite an obstacle for our users. It required opening ports on the router and remembering to renew the certificate every so often.</p>
<p>Thanks to a <a href="https://www.splitbrain.org/blog/2017-08/10-homeassistant_duckdns_letsencrypt">blog post</a> by Andreas Gohr I realized that DuckDNS supports setting TXT records, making it compatible with the DNS-01 challenge of Lets Encrypt. The DNS-01 challenge is using the DNS record of the domain instead of interacting with the server. This means that its not needed for the user to open any ports!</p>
<p>I have worked together with <a href="https://github.com/pvizeli">Pascal Vizeli</a> on updating the DuckDNS add-on for Hass.io and today were proud to announce it now includes automatic generation and updating of Lets Encrypt certificates for your DuckDNS domain. The only thing that you have to add to your DuckDNS configuration is that you accept the Lets Encrypt <a href="https://letsencrypt.org/repository/">terms of service</a> and point Home Assistant at the generated certificates and youre good to go. No other work is required.</p>
<p>To get started today, start with making sure that you have <a href="/hassio/">Hass.io installed</a>. After that, go to the Hass.io panel in Home Assistant, open the add-on store, scroll down to DuckDNS and install it. In the DuckDNS settings change “accept_terms” to true and start it.</p>
<p>Next up is to configure Home Assistant with the config below and restart it. Youre now good to go! Make sure to use the right protocol when browsing to your instance: <code class="highlighter-rouge">https://&lt;your_domain&gt;.duckdns.org</code>. Happy secure controlling your house!</p>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="c1"># Example configuration.yaml entry for the HTTP component</span>
<span class="s">http</span><span class="pi">:</span>
<span class="s">ssl_certificate</span><span class="pi">:</span> <span class="s">/ssl/fullchain.pem</span>
<span class="s">ssl_key</span><span class="pi">:</span> <span class="s">/ssl/privkey.pem</span>
</code></pre>
</div>
<p>If youre not using Hass.io, check out the <a href="https://www.splitbrain.org/blog/2017-08/10-homeassistant_duckdns_letsencrypt">blog post</a> by Andreas for instructions.</p>
<p>If you enjoy the free service provided by DuckDNS and Lets Encrypt, consider donating to their cause:</p>
<ul>
<li><a href="https://www.patreon.com/user?u=3209735">Become a Patreon of DuckDNS</a></li>
<li><a href="https://letsencrypt.org/donate/">Donate to Lets Encrypt</a></li>
</ul>
<p>More information:</p>
<ul>
<li><a href="/hassio/">Hass.io</a></li>
<li><a href="/hassio/installation/">Installing Hass.io</a></li>
<li><a href="/addons/duckdns/">DuckDNS add-on</a></li>
<li><a href="http://www.duckdns.org/">DuckDNS</a></li>
<li><a href="https://letsencrypt.org/">Lets Encrypt</a></li>
</ul>
]]></content>
</entry>

View file

@ -128,6 +128,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -140,9 +143,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -162,6 +162,9 @@ This article will try to explain how they all relate.</p>
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -174,9 +177,6 @@ This article will try to explain how they all relate.</p>
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -152,6 +152,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -164,9 +167,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -135,6 +135,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -147,9 +150,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -139,6 +139,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -151,9 +154,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -145,6 +145,9 @@ Home Assistant now supports <code class="highlighter-rouge">--open-ui</code> and
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -157,9 +160,6 @@ Home Assistant now supports <code class="highlighter-rouge">--open-ui</code> and
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -150,6 +150,9 @@ Events are saved in a local database. Google Graphs is used to draw the graph. D
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -162,9 +165,6 @@ Events are saved in a local database. Google Graphs is used to draw the graph. D
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -136,6 +136,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -148,9 +151,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -130,6 +130,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -142,9 +145,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -133,6 +133,9 @@ The old logo, the new detailed logo and the new simple logo.
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -145,9 +148,6 @@ The old logo, the new detailed logo and the new simple logo.
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -158,6 +158,9 @@ An initial version of voice control for Home Assistant has landed. The current i
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -170,9 +173,6 @@ An initial version of voice control for Home Assistant has landed. The current i
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -194,6 +194,9 @@ I (Paulus) have contributed a scene component. A user can create scenes that cap
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -206,9 +209,6 @@ I (Paulus) have contributed a scene component. A user can create scenes that cap
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -202,6 +202,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -214,9 +217,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -146,6 +146,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -158,9 +161,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -216,6 +216,9 @@ Before diving into the newly supported devices and services, I want to highlight
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -228,9 +231,6 @@ Before diving into the newly supported devices and services, I want to highlight
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -262,6 +262,9 @@ This switch platform allows you to control your motion detection setting on your
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -274,9 +277,6 @@ This switch platform allows you to control your motion detection setting on your
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -226,6 +226,9 @@ Fabian has added support for <a href="https://forecast.io/">Forecast.io</a> to g
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -238,9 +241,6 @@ Fabian has added support for <a href="https://forecast.io/">Forecast.io</a> to g
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -209,6 +209,9 @@ Support for Temper temperature sensors has been contributed by <a href="https://
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -221,9 +224,6 @@ Support for Temper temperature sensors has been contributed by <a href="https://
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -146,6 +146,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -158,9 +161,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -246,6 +246,9 @@ The automation and script syntax here is using a deprecated and no longer suppor
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -258,9 +261,6 @@ The automation and script syntax here is using a deprecated and no longer suppor
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -207,6 +207,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -219,9 +222,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -284,6 +284,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -296,9 +299,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -274,6 +274,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -286,9 +289,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -173,6 +173,9 @@ Glances web server started on http://0.0.0.0:61208/
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -185,9 +188,6 @@ Glances web server started on http://0.0.0.0:61208/
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -169,6 +169,9 @@ Automation has gotten a lot of love. It now supports conditions, multiple trigge
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -181,9 +184,6 @@ Automation has gotten a lot of love. It now supports conditions, multiple trigge
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -152,6 +152,9 @@ Map in Home Assistant showing two people and three zones (home, school, work)
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -164,9 +167,6 @@ Map in Home Assistant showing two people and three zones (home, school, work)
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -337,6 +337,9 @@ Home Assistant will keep track of historical values and allow you to integrate i
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -349,9 +352,6 @@ Home Assistant will keep track of historical values and allow you to integrate i
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -142,6 +142,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -154,9 +157,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -159,6 +159,9 @@ This makes more sense as most people run Home Assistant as a daemon</p>
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -171,9 +174,6 @@ This makes more sense as most people run Home Assistant as a daemon</p>
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -157,6 +157,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -169,9 +172,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -184,6 +184,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -196,9 +199,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -135,6 +135,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -147,9 +150,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -143,6 +143,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -155,9 +158,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -197,6 +197,9 @@ name: binary_sensor
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -209,9 +212,6 @@ name: binary_sensor
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -164,6 +164,9 @@ This is where well configure our task, so select the plus icon to select an a
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -176,9 +179,6 @@ This is where well configure our task, so select the plus icon to select an a
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -150,6 +150,9 @@ Philips Hue FAQ entries regarding 3rd party light bulbs.
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -162,9 +165,6 @@ Philips Hue FAQ entries regarding 3rd party light bulbs.
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -192,6 +192,9 @@ sudo docker run -it --rm -p 80:80 --name certbot <span class="se">\</span>
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -204,9 +207,6 @@ sudo docker run -it --rm -p 80:80 --name certbot <span class="se">\</span>
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -167,6 +167,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -179,9 +182,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -158,6 +158,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -170,9 +173,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -147,6 +147,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -159,9 +162,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -161,6 +161,9 @@ Example of the new views in the frontend. <a href="/components/group/">Learn mor
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -173,9 +176,6 @@ Example of the new views in the frontend. <a href="/components/group/">Learn mor
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -281,6 +281,9 @@ Z-Wave light bulb |
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -293,9 +296,6 @@ Z-Wave light bulb |
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -255,6 +255,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -267,9 +270,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -166,6 +166,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -178,9 +181,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -220,6 +220,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -232,9 +235,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -163,6 +163,9 @@ Hold your NFC tag against the belly of Garfield to unlock the alarm.
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -175,9 +178,6 @@ Hold your NFC tag against the belly of Garfield to unlock the alarm.
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -165,6 +165,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -177,9 +180,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -166,6 +166,9 @@ player state attributes. This change affects automations, scripts and scenes.</l
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -178,9 +181,6 @@ player state attributes. This change affects automations, scripts and scenes.</l
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -174,6 +174,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -186,9 +189,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -134,6 +134,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -146,9 +149,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -137,6 +137,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -149,9 +152,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -146,6 +146,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -158,9 +161,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -132,6 +132,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -144,9 +147,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -144,6 +144,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -156,9 +159,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -166,6 +166,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -178,9 +181,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -208,6 +208,9 @@ For example, my wife works next door - and I couldnt detect whether shes a
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -220,9 +223,6 @@ For example, my wife works next door - and I couldnt detect whether shes a
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -132,6 +132,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -144,9 +147,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -206,6 +206,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -218,9 +221,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -132,6 +132,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -144,9 +147,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -138,6 +138,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -150,9 +153,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -162,6 +162,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -174,9 +177,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -135,6 +135,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -147,9 +150,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -236,6 +236,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -248,9 +251,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -144,6 +144,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -156,9 +159,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -176,6 +176,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -188,9 +191,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -148,6 +148,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -160,9 +163,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -170,6 +170,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -182,9 +185,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -216,6 +216,9 @@ target_dir /tmp
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -228,9 +231,6 @@ target_dir /tmp
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -171,6 +171,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -183,9 +186,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -161,6 +161,9 @@ Over a year ago I participated in the <a href="https://www.kickstarter.com/proje
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -173,9 +176,6 @@ Over a year ago I participated in the <a href="https://www.kickstarter.com/proje
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -167,6 +167,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -179,9 +182,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -204,6 +204,9 @@ SQLite version 3.11.0 2016-02-15 17:29:24
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -216,9 +219,6 @@ SQLite version 3.11.0 2016-02-15 17:29:24
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -171,6 +171,9 @@ One of the graphs created with this tutorial.
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -183,9 +186,6 @@ One of the graphs created with this tutorial.
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -251,6 +251,9 @@ If a module is missing then you need to download it from the <a href="https://gi
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -263,9 +266,6 @@ If a module is missing then you need to download it from the <a href="https://gi
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -183,6 +183,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -195,9 +198,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -215,6 +215,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -227,9 +230,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -210,6 +210,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -222,9 +225,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -183,6 +183,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -195,9 +198,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -221,6 +221,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -233,9 +236,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -133,6 +133,9 @@ Heatmap
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -145,9 +148,6 @@ Heatmap
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -282,6 +282,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -294,9 +297,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -209,6 +209,9 @@ So, part 1 of <a href="/blog/2016/07/28/esp8266-and-micropython-part1/">ESP8266
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -221,9 +224,6 @@ So, part 1 of <a href="/blog/2016/07/28/esp8266-and-micropython-part1/">ESP8266
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -211,6 +211,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -223,9 +226,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -216,6 +216,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -228,9 +231,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -137,6 +137,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -149,9 +152,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -145,6 +145,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -157,9 +160,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -227,6 +227,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -239,9 +242,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -399,6 +399,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -411,9 +414,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -155,6 +155,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -167,9 +170,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -223,6 +223,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -235,9 +238,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -184,6 +184,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -196,9 +199,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -245,6 +245,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -257,9 +260,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -198,6 +198,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -210,9 +213,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -136,6 +136,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -148,9 +151,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -146,6 +146,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -158,9 +161,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -215,6 +215,9 @@ You have to note:
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -227,9 +230,6 @@ You have to note:
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -138,6 +138,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -150,9 +153,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -175,6 +175,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -187,9 +190,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

View file

@ -261,6 +261,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/12/28/thank-you/">Thank You</a>
</li>
<li class="post">
<a href="/blog/2017/12/17/introducing-home-assistant-cloud/">Introducing Home Assistant Cloud</a>
</li>
@ -273,9 +276,6 @@
<li class="post">
<a href="/blog/2017/11/29/hassio-virtual-machine/">Set up Hass.io on top of a virtual machine</a>
</li>
<li class="post">
<a href="/blog/2017/11/18/release-58/">0.58: More translations, faster frontend, system log</a>
</li>
</ul>
</section>
</div>

Some files were not shown because too many files have changed in this diff Show more