10 years later #1
6 changed files with 101 additions and 99 deletions
|
|
@ -1,4 +1,3 @@
|
||||||
<!-- gates.macro -->
|
|
||||||
{% macro list(name, url, image, links) %}
|
{% macro list(name, url, image, links) %}
|
||||||
<article class="portal__entry">
|
<article class="portal__entry">
|
||||||
<section>
|
<section>
|
||||||
|
|
|
||||||
|
|
@ -2,15 +2,19 @@
|
||||||
<a class="{{ class }}" href="">{{ text }}</a>
|
<a class="{{ class }}" href="">{{ text }}</a>
|
||||||
{# {{ 'name@domain.tld' | urlize | safe }} #}
|
{# {{ 'name@domain.tld' | urlize | safe }} #}
|
||||||
{% endmacro %}
|
{% endmacro %}
|
||||||
|
|
||||||
{% macro link(class = '', text = 'domain.tld', href = 'http://domain.internal') %}
|
{% macro link(class = '', text = 'domain.tld', href = 'http://domain.internal') %}
|
||||||
<a class="{{ class }}" href="{{ href }}">{{ text }}</a>
|
<a class="{{ class }}" href="{{ href }}">{{ text }}</a>
|
||||||
{% endmacro %}
|
{% endmacro %}
|
||||||
|
|
||||||
{% macro name(class = '', text = 'Vorname Nachname') %}
|
{% macro name(class = '', text = 'Vorname Nachname') %}
|
||||||
<span class="{{ class }}">{{ text }}</span>
|
<span class="{{ class }}">{{ text }}</span>
|
||||||
{% endmacro %}
|
{% endmacro %}
|
||||||
|
|
||||||
{% macro address(class = '', text = 'Straße Nr., PLZ Ort') %}
|
{% macro address(class = '', text = 'Straße Nr., PLZ Ort') %}
|
||||||
<span class="{{ class }}">{{ text }}</span>
|
<span class="{{ class }}">{{ text }}</span>
|
||||||
{% endmacro %}
|
{% endmacro %}
|
||||||
|
|
||||||
{% macro brand(class = '', name = 'Marke') %}
|
{% macro brand(class = '', name = 'Marke') %}
|
||||||
<div class="{{ class }}">
|
<div class="{{ class }}">
|
||||||
{# <img src="" alt="Brand logo"> #}
|
{# <img src="" alt="Brand logo"> #}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
<!-- states.macro -->
|
|
||||||
{% macro coord(id, text = 'X: #, Y: ##') %}
|
{% macro coord(id, text = 'X: #, Y: ##') %}
|
||||||
<span id="{{ id }}">{{ text }}</span>
|
<span id="{{ id }}">{{ text }}</span>
|
||||||
{% endmacro %}
|
{% endmacro %}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue