mirror of
https://github.com/safing/web
synced 2025-09-01 10:39:03 +00:00
Add counter
This commit is contained in:
parent
52eebc1f59
commit
386f13ca2f
4 changed files with 12 additions and 4 deletions
|
@ -2,6 +2,8 @@
|
|||
title: Hiring a Designer from the Privacy Community
|
||||
date: 2019-11-29
|
||||
author: davegson
|
||||
custom_thumbnail_name: hiring-a-designer-from-the-privacy-community
|
||||
cover_image_source: https://unsplash.com/photos/66O6CE7QvwI
|
||||
---
|
||||
|
||||
_Sidenote: shoutout to [The Hated One](https://www.youtube.com/channel/UCjr2bPAyPV7t35MvcgT3W8Q/), this would not have happened without him!_
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
title: The next 5 steps for Safing
|
||||
date: 2019-12-06
|
||||
author: davegson
|
||||
custom_thumbnail_name: the-next-5-steps-for-safing
|
||||
cover_image_source: https://pixabay.com/photos/architecture-stone-blocks-block-3481302/
|
||||
---
|
||||
|
||||
## Intro
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
title: Announcing the PrivacyTools Sponsorship
|
||||
date: 2019-12-20
|
||||
author: davegson
|
||||
custom_thumbnail_name: announcing-the-privacytools-sponsorship
|
||||
---
|
||||
|
||||
**We are very pleased to announce that we have become a sponsor of [PrivacyTools.io](https://opencollective.com/privacytoolsio)**
|
||||
|
|
|
@ -20,11 +20,14 @@ layout: page
|
|||
<li class="mt-10 md:mt-0">
|
||||
<div class="block transform hover:scale-95 duration-150 ease-in-out">
|
||||
<a href="{{ post.url }}">
|
||||
{% if post.custom_thumbnail_name == null %}
|
||||
<div class="relative" style="max-width: 365px;">
|
||||
{% if post.custom_thumbnail_name == null %}
|
||||
<img src="{{ site.img_url }}thumbnails/blog/placeholder.png">
|
||||
{% else %}
|
||||
<img src="{{ site.img_url }}thumbnails/blog/{{ post.custom_thumbnail_name }}.png">
|
||||
{% endif %}
|
||||
{% else %}
|
||||
<img src="{{ site.img_url }}thumbnails/blog/{{ post.custom_thumbnail_name }}.png">
|
||||
{% endif %}
|
||||
<span class="absolute text-white right-0 bottom-0 pr-3 pb-3" style="font-size: 3.1rem; font-weight: 800;" >#01</span>
|
||||
</div>
|
||||
<div class="pt-6">
|
||||
<span class="opacity-25">{{ post.date | date: "%-d. %b %Y" }}</span>
|
||||
<p>{{ post.title }}</p>
|
||||
|
|
Loading…
Add table
Reference in a new issue