2
0
mirror of https://github.com/inventree/inventree-website.git synced 2025-06-12 10:05:36 +00:00

Fix publisher section (#103)

* fix logo size and margin

* make heading a bit smaller

* fix posts not showing up

* switch to the more uniform auhtor

* fix team page to use the main text block

* fix reference for oliver

* Change verbage

* Add team member badge

* Add icon

Fix publisher section
Fixes #102
This commit is contained in:
Matthias Mair
2023-01-19 23:43:53 +01:00
committed by GitHub
parent ef19e9e4d9
commit bfcc61f789
5 changed files with 49 additions and 38 deletions

View File

@ -2,14 +2,16 @@
layout: content
notitle: true
---
<h1>
<div class="flex">
<h2>
<div class="flex items-end">
{% if page.github %}
<img src="https://github.com/{{ page.github }}.png?size=40" alt="mdo" class="rounded-full" width="40" height="40" style="margin:0px">
<div class="mb-1">
<img src="https://github.com/{{ page.github }}.png?size=40" alt="mdo" class="rounded-full" width="40" height="40" style="margin:0px">
</div>
{% endif %}
{{ page.name }}
</div>
</h1>
</h2>
<div>
{% if page.github %}
@ -17,7 +19,12 @@ notitle: true
{% endif %}
{% if page.website %}
<a href="{{page.website}}"><span class="badge bg-secondary">Official Website</span></a>
<a href="{{page.website}}"><span class="badge bg-secondary">Website</span></a>
{% endif %}
{% assign filtered_team = site.data.team.team | where: 'tag', page.short_name %}
{% if filtered_team and filtered_team.size != 0 %}
<a href="{% link about/team.html %}"><span class="badge bg-lime-600"><span class="fa-solid fa-shield"></span>Team Member</span></a>
{% endif %}
</div>
@ -25,7 +32,7 @@ notitle: true
{{ content }}
</blockquote>
{% assign filtered_posts = site.posts | where: 'publisher', page.short_name %}
{% assign filtered_posts = site.posts | where: 'author', page.short_name %}
{% if filtered_posts and filtered_posts.size != 0 %}
<h3>Posts</h3>
<ul class="list-unstyled">
@ -35,7 +42,7 @@ notitle: true
</ul>
{% endif %}
{% assign filtered_plugins = site.repo | where: 'publisher', page.short_name %}
{% assign filtered_plugins = site.repo | where: 'author', page.short_name %}
{% if filtered_plugins and filtered_plugins.size != 0 %}
<h3>Plugins</h3>
<ul class="list-unstyled">