mirror of
https://github.com/inventree/inventree-website.git
synced 2025-08-15 08:41:06 +00:00
.github
_data
_drafts
_includes
base
block
fnc
partial
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
20 lines
923 B
HTML
20 lines
923 B
HTML
<a href="{{ plugin.url | relative_url }}" class="no-underline" aria-label="open plugin details">
|
|
<div class="row g-0 border rounded overflow-hidden flex-md-row mb-4 shadow-sm h-md-250 position-relative">
|
|
<div class="col p-4 d-flex flex-column position-static">
|
|
<div class="d-inline-block leading-loose">
|
|
{% for cat in plugin.categories %}
|
|
<span class="plugin_cat">{{ cat }}</span>
|
|
{% endfor %}
|
|
{% for tag in plugin.tags %}
|
|
<span class="plugin_tag">{{ tag }}</span>
|
|
{% endfor %}
|
|
</div>
|
|
<h3 class="my-0">{{ plugin.name }}</h3>
|
|
<div class="mb-1 text-muted">
|
|
{% if plugin.published_on %}{{ plugin.published_on | date_to_string }} - {% endif %}
|
|
{% include partial/publisher_ref.html pub=plugin.author %}
|
|
</div>
|
|
<p class="my-0">{{ plugin.excerpt | mardownify | remove: '<p>' | remove: '</p>' }}</p>
|
|
</div>
|
|
</div>
|
|
</a> |