removed old content from liquid admonitions include file (#3271)

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
This commit is contained in:
Victoria Bialas 2017-05-15 11:49:31 -07:00 committed by GitHub
parent 968f76eced
commit 01f1704c0f
1 changed files with 2 additions and 11 deletions

View File

@ -1,12 +1,3 @@
{% if include.type=="note" %}
{% assign glyphClass="glyphicon glyphicon-ok-sign" %}
{% assign blockquoteClass="note-vanilla" %}
{% else if include.type=="warning"%}
{% assign glyphClass="glyphicon glyphicon-exclamation-sign" %}
{% assign blockquoteClass="warning-vanilla" %}
{% else if include.type=="danger"%}
{% assign glyphClass="glyphicon glyphicon-ban-circle" %}
{% assign blockquoteClass="danger-vanilla" %}
{%endif %}
# PLACEHOLDER FOR LIQUID VARIABLES SOLUTION FOR ADMONITIONS ICONS
<blockquote class="{{ blockquoteClass }}"><i class="{{ glyphClass }}"></i><b>{{ include.title }}</b><p>{{ include.text | markdownify }}</p></blockquote>