mirror of
https://github.com/safing/web
synced 2025-09-02 11:09:03 +00:00
clean code
This commit is contained in:
parent
5c55e8dd2b
commit
3fe6a5e5c5
1 changed files with 5 additions and 5 deletions
|
@ -76,15 +76,15 @@ layout: page
|
|||
</h2>
|
||||
</div>
|
||||
<div class="space-y-4 mx-auto" style="max-width: 900px;">
|
||||
{% assign posts = site.jobs %}
|
||||
{% if posts.size > 0 %}
|
||||
{% for post in posts %}
|
||||
{% assign jobs = site.jobs %}
|
||||
{% if jobs.size > 0 %}
|
||||
{% for job in jobs %}
|
||||
<div class="card p-7 flex items-center">
|
||||
<div class="flex space-x-2 items-center">
|
||||
<span class="text-xl block">{{ post.title }}</span>
|
||||
<span class="text-xl block">{{ job.title }}</span>
|
||||
<span class="text-sm text-safing-gray-300 block">Austria - remote</span>
|
||||
</div>
|
||||
<a class="btn-secondary ml-auto" href="{{ post.url }}">View More</a>
|
||||
<a class="btn-secondary ml-auto" href="{{ job.url }}">View More</a>
|
||||
</div>
|
||||
{% endfor %}
|
||||
{%- else -%}
|
||||
|
|
Loading…
Add table
Reference in a new issue