You've already forked snikket-web-portal
- Create a colour palette - Create a sizing schema for paddings and fonts - Implement basic form controls - Create a theme demo page - Apply the theme to the existing pages. Still TODO is the final font selection.
4 lines
180 B
Django/Jinja
4 lines
180 B
Django/Jinja
{% macro box(type, title, slim=False, caller=None) %}
|
|
<aside class="box{% if slim %} slim{% endif %} {{ type }}"><header>{{ title }}</header> {{ caller() }}</aside>
|
|
{% endmacro %}
|