Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Added first set of templates for smarthome "autogeneration hacks"
- Loading branch information
Showing
4 changed files
with
46 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| <div class="preblock"> | ||
| <table width="100%"> | ||
| <tr> | ||
| <td align="left"> | ||
| {{ visu_heading_left }} | ||
| </td> | ||
| <td align="center"> | ||
| {{ visu_heading_center }} | ||
| </td> | ||
| <td align="right"> | ||
| {{ visu_heading_right }} | ||
| </td> | ||
| </tr> | ||
| </table> | ||
| </div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,9 @@ | ||
| <li data-icon="false"> | ||
| <a href="index.php?page={{ visu_page }}"> | ||
| <img class="icon" src="{{ icon0 }}{{ visu_img }}" /> | ||
|
|
||
| <h3>{{ visu_name }}</h3> | ||
| </a> | ||
| </li> | ||
|
|
||
| <li data-icon="false"> | ||
| <a href="index.php?page={{ visu_page }}"> | ||
| <img class="icon" src="{{ icon0 }}{{ visu_img }}" /> | ||
|
|
||
| <h3>{{ visu_name }}</h3> | ||
| <div class="ui-li-aside">{{ visu_aside }}<br/>{{ visu_aside2 }}</div> | ||
| </a> | ||
| </li> | ||
|
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <li data-role="list-divider">{{ name }}</li> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,20 +1,21 @@ | ||
| /** | ||
| * ----------------------------------------------------------------------------- | ||
| * @package smartVISU | ||
| * @author Martin Gleiß | ||
| * @copyright 2012 - 2015 | ||
| * @license GPL [http://www.gnu.de] | ||
| * ----------------------------------------------------------------------------- | ||
| */ | ||
|
|
||
|
|
||
| {% extends "rooms.html" %} | ||
|
|
||
| {% block content %} | ||
|
|
||
| <h1><img class="icon" src='{{ icon0 }}{{ visu_img }}' />{{ visu_name }}</h1> | ||
|
|
||
| {{ visu_widgets }} | ||
|
|
||
| {% endblock %} | ||
|
|
||
| /** | ||
| * ----------------------------------------------------------------------------- | ||
| * @package smartVISU | ||
| * @author Martin Gleiß | ||
| * @copyright 2012 - 2015 | ||
| * @license GPL [http://www.gnu.de] | ||
| * ----------------------------------------------------------------------------- | ||
| */ | ||
|
|
||
|
|
||
| {% extends "rooms.html" %} | ||
|
|
||
| {% block content %} | ||
|
|
||
| <h1><img class="icon" src='{{ icon0 }}{{ visu_img }}' />{{ visu_name }}</h1> | ||
|
|
||
| {{ visu_heading }} | ||
| {{ visu_widgets }} | ||
|
|
||
| {% endblock %} | ||
|
|