mirror of
https://github.com/skalavala/mysmarthome.git
synced 2025-03-04 11:40:03 +00:00
18 lines
428 B
Markdown
18 lines
428 B
Markdown
|
---
|
||
|
layout: page
|
||
|
title: Home Page
|
||
|
description: ""
|
||
|
---
|
||
|
|
||
|
<h2>Welcome</h2>
|
||
|
<p>This page is auto-generated, and is sorted alphabetically by "Title"</p>
|
||
|
|
||
|
{% assign cur_pages = site.pages | sort: 'title' %}
|
||
|
|
||
|
{%- for entry in cur_pages %}
|
||
|
{%- if entry.layout == "page" and entry.url != "/" %}
|
||
|
<h3><a href="{{ site.url }}{{ entry.url }}">► {{ entry.title }}</a></h3>
|
||
|
<p>{{ entry.description }}</p>
|
||
|
{%- endif %}
|
||
|
{%- endfor %}
|