1
0
Fork 0

Import of the new theme

This commit is contained in:
Luca Beltrame 2015-05-07 07:32:01 +02:00
parent 04104f0bff
commit 0693a85c3f
331 changed files with 21077 additions and 8782 deletions

33
_includes/alert Normal file
View file

@ -0,0 +1,33 @@
{% comment %}
*
* This include lets you easily display an alert.
* To use the include no `.html` ending is necessary.
* You can use five different kinds of alerts:
*
* - warning
* - info
* - success
* - alert
* - text
*
* You can even use <html>-tags inside the alert. Beware:
* Use " and ' properly.
*
* Example: {% include alert info='Show an info alert with outstanding information' %}
*
{% endcomment %}
{% if include.warning %}
<div class="alert-box warning radius">{{ include.warning }}</div>
{% elsif include.info %}
<div class="alert-box info radius">{{ include.info }}</div>
{% elsif include.success %}
<div class="alert-box success radius">{{ include.success }}</div>
{% elsif include.alert %}
<div class="alert-box alert radius">{{ include.alert }}</div>
{% elsif include.text %}
<div class="alert-box text radius">{{ include.text }}</div>
{% elsif include.terminal %}
<div class="alert-box terminal radius">{{ include.terminal }}</div>
{% endif %}