* Initial snmp sensor docs (#538) * Fixed markdown and added logo (#551) * Added documentation for router operating mode for asuswrt (#545) * local_file camera component documenatation (#554) * Documenation for local_file camera component * Update camera.local_file.markdown * Added information about voltage sensor * Instructions for Pandora media player (#552) * Add release * Add pub_key * Add BT Home Hub docs * Markdown tweaks (#553) * Add docs about MySensors IR switch (#556) * Update sensor.mysensors docs, about moving V_IR_SEND type to switch platform. * Update switch.mysensors docs. Add section about the new service and additional example sketch for the IR switch device. * Update index.html * plex sensor (#526) * Add var descriptions * Adds documentation for the Local File Camera (#482) * Revert "Adds documentation for the Local File Camera" (#563) * Minor changes * Add Wink Rollershutter (#559) * Added example of using template in shell_command. (#547) * Add Documentation for Netatmo Welcome (#542) * Reorganize documentation for Netatmo As Netatmo is now a Hub component, documentations has been splitted in several parts betweent the hub, the sensors and the camera Signed-off-by: Hugo D. (jabesq) <jabesq@gmail.com> * Add configuration variables for Netatmo Welcome cameras * Add ha_release information on new documentation pages * Netatmo Weather Station is a weather sensor * Add blog post 0.22
39 lines
2.8 KiB
HTML
39 lines
2.8 KiB
HTML
{% capture fb_description %}{% if page.description %}{{ page.description }}{% endif %}{% endcapture %}
|
|
{% capture description %}{% if page.description %}{{ page.description }}{% else site.description %}{{ site.description }}{% endif %}{% endcapture %}
|
|
{% capture social_image %}{% if page.og_image %}{{ page.og_image | prepend: site.url }}{% else %}https://home-assistant.io/images/default-social.png{% endif %}{% endcapture %}
|
|
<!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> <!--<![endif]-->
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<title>{% if page.title %}{{ page.title }} - {% endif %}{{ site.title }}</title>
|
|
<meta name="author" content="{{ site.author }}">
|
|
<meta name="description" content="{{ description | strip_html | condense_spaces | truncate:150 }}">
|
|
{% if page.keywords %}<meta name="keywords" content="{{ page.keywords }}">{% endif %}
|
|
<meta name="viewport" content="width=device-width">
|
|
<link rel="canonical" href="{{ page.url | canonical_url }}">
|
|
|
|
<meta property="fb:app_id" content="{{ site.social.facebook.app_id }}">
|
|
<meta property="og:title" content="{% if post.title %}{{ post.title }}{% elsif page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}">
|
|
<meta property="og:site_name" content="{{ site.title }}">
|
|
<meta property="og:url" content="{{ page.url | canonical_url }}">
|
|
<meta property="og:type" content="{% if page.categories %}article{% else %}website{% endif %}">
|
|
<meta property="og:description" content="{{ fb_description | truncate:200 }}">
|
|
<meta property="og:image" content="{{ social_image }}">
|
|
|
|
<meta name="twitter:card" content="{% if page.og_image %}summary_large_image{% else %}summary{% endif %}">
|
|
<meta name="twitter:site" content="@{{ site.social.twitter.account }}">
|
|
{% if page.author_twitter %}<meta name="twitter:creator" content="@{{ page.author_twitter }}">{% endif %}
|
|
<meta name="twitter:title" content="{% if post.title %}{{ post.title }}{% elsif page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}">
|
|
<meta name="twitter:description" content="{{ fb_description | truncate:200 }}">
|
|
<meta name="twitter:image" content="{{ social_image }}">
|
|
|
|
<link href="{{ root_url }}/stylesheets/screen.css" media="screen, projection" rel="stylesheet">
|
|
<link href="{{ root_url }}{{ site.subscribe_rss }}" rel="alternate" title="{{ site.title }}" type="application/atom+xml">
|
|
<link rel='shortcut icon' href='{{ root_url }}/images/favicon.ico' />
|
|
<link rel='icon' type='image/png' href='{{ root_url }}/images/favicon-192x192.png' sizes='192x192' />
|
|
</head>
|