mirror of
https://github.com/safing/web
synced 2025-09-01 10:39:03 +00:00
Add team profiles
This commit is contained in:
parent
2ceb31b650
commit
bf2c1daec8
1 changed files with 15 additions and 19 deletions
|
@ -20,26 +20,22 @@
|
|||
</svg>
|
||||
</button>
|
||||
</span>
|
||||
|
||||
<div class="absolute top-0 right-0 pt-1 overflow-visible mt-2 mr-4 ">
|
||||
<div class="flex-shrink-0 mt-0">
|
||||
<div class="flex ">
|
||||
|
||||
<span class="transform hover:scale-110 duration-150 ease-in-out" tooltip="Raphael">
|
||||
<img class="inline-block h-8 w-8 rounded-full text-white shadow-solid border-2 border-white" src="/assets/img/profiles/raphael.png" alt="Raphael">
|
||||
</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="pt-6">
|
||||
<span class="opacity-25">
|
||||
{% if include.pre_header %}
|
||||
{{ include.pre_header }} -
|
||||
{% endif %}
|
||||
{{ episode.date | date: "%-d. %b %Y" }}
|
||||
</span>
|
||||
<div class="flex w-full relative">
|
||||
<span class="opacity-25">
|
||||
{% if include.pre_header %}
|
||||
{{ include.pre_header }} -
|
||||
{% endif %}
|
||||
{{ post.date | date: "%-d. %b %Y" }}
|
||||
</span>
|
||||
<div class="flex-shrink-0 right-0 absolute right-0">
|
||||
<div class="flex ">
|
||||
<span class="transform hover:scale-110 duration-150 ease-in-out" tooltip="{{ post.author | capitalize }}">
|
||||
<img class="inline-block h-6 w-6 rounded-full text-white shadow-solid border-2 border-transparent" src="{{ site.img_url }}profiles/{{ post.author | downcase }}.png" alt="{{ post.author | capitalize }}">
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% assign title_length = episode.title | size %}
|
||||
<p>{{ episode.title | slice: 7, title_length }} - #{{ episode.title | slice: 2, 2 }}</p>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Reference in a new issue