2
0
mirror of https://github.com/inventree/inventree-website.git synced 2025-08-01 10:11:35 +00:00
Files
.github
_data
_drafts
_includes
base
block
fnc
partial
alert.html
newsletter.html
publisher_link.html
publisher_ref.html
plugin_card.html
testimonials.html
_layouts
_news
_plugins
_posts
_publishers
_repo
about
alternatives
assets
extend
use
.gitignore
404.md
CNAME
Gemfile
Gemfile.lock
LICENSE
README.md
_config.yml
blog.html
categories.html
contribute.md
demo.md
deploy.md
digitalocean.md
functions.md
index.md
news.html
newsletter.md
package-lock.json
package.json
plugins.html
postcss.config.js
publishers.html
support.md
tags.html
tailwind.config.js
inventree-website/_includes/partial/alert.html
Matthias Mair 161ed501ad Revert "remove kramdown"
This reverts commit 0d277f0ce8.
2022-08-09 01:02:42 +02:00

11 lines
465 B
HTML

<div class="bg-teal-100 border-t-4 border-teal-500 rounded-b text-teal-900 px-4 py-3 shadow-md" role="alert">
<div class="flex">
{% if include.style == 'info' %}
<img class="fill-current h-6 w-6 text-teal-500 mr-4" src="{{ '/assets/info.svg' | relative_url }}" />
{% endif %}
<div>
<p class="font-bold">{{ include.title }}</p>
<p class="text-sm">{{ include.desc }}</p>
</div>
</div>
</div>