fix: unneeded margin
This commit is contained in:
@@ -13,27 +13,27 @@ layout: "layout.njk"
|
|||||||
<h1>{{ title }}</h1>
|
<h1>{{ title }}</h1>
|
||||||
<div class="post-meta flex flex-col md:flex-row md:items-center text-gray-400">
|
<div class="post-meta flex flex-col md:flex-row md:items-center text-gray-400">
|
||||||
<!--- Date Section -->
|
<!--- Date Section -->
|
||||||
<div class="flex items-center mb-1 md:mb-0">
|
<div class="flex items-center mb-1">
|
||||||
<i class="fas fa-fw fa-calendar-alt mr-2"></i>
|
<i class="fas fa-fw fa-calendar-alt mr-2"></i>
|
||||||
<span>Published on {{ page.date | readableDate }}</span>
|
<span>Published on {{ page.date | readableDate }}</span>
|
||||||
</div>
|
</div>
|
||||||
<!--- Views Section -->
|
<!--- Views Section -->
|
||||||
<span class="hidden md:inline mx-2 text-gray-600">•</span>
|
<span class="hidden md:inline mx-2 text-gray-600">•</span>
|
||||||
<div class="flex items-center mb-1 md:mb-0">
|
<div class="flex items-center mb-1">
|
||||||
<i class="fas fa-fw fa-eye mr-2"></i>
|
<i class="fas fa-fw fa-eye mr-2"></i>
|
||||||
<span class="view-count" data-view-count data-slug="{{ page.fileSlug }}">Loading views</span>
|
<span class="view-count" data-view-count data-slug="{{ page.fileSlug }}">Loading views</span>
|
||||||
</div>
|
</div>
|
||||||
<!--- Comments Section -->
|
<!--- Comments Section -->
|
||||||
<!---
|
<!---
|
||||||
<span class="hidden md:inline mx-2 text-gray-600">•</span>
|
<span class="hidden md:inline mx-2 text-gray-600">•</span>
|
||||||
<div class="flex items-center mb-1 md:mb-0">
|
<div class="flex items-center mb-1">
|
||||||
<i class="fas fa-fw fa-comments mr-2"></i>
|
<i class="fas fa-fw fa-comments mr-2"></i>
|
||||||
<a href="#disqus_thread">Comments</a>
|
<a href="#disqus_thread">Comments</a>
|
||||||
</div>
|
</div>
|
||||||
-->
|
-->
|
||||||
<!--- Likes Section -->
|
<!--- Likes Section -->
|
||||||
<span class="hidden md:inline mx-2 text-gray-600">•</span>
|
<span class="hidden md:inline mx-2 text-gray-600">•</span>
|
||||||
<div class="flex items-center mb-1 md:mb-0">
|
<div class="flex items-center mb-1">
|
||||||
<i class="fas fa-fw fa-heart like-icon mr-2" data-like-button data-slug="{{ page.fileSlug }}"></i>
|
<i class="fas fa-fw fa-heart like-icon mr-2" data-like-button data-slug="{{ page.fileSlug }}"></i>
|
||||||
<span class="like-count" data-like-count data-slug="{{ page.fileSlug }}">No likes</span>
|
<span class="like-count" data-like-count data-slug="{{ page.fileSlug }}">No likes</span>
|
||||||
</div>
|
</div>
|
||||||
|
Reference in New Issue
Block a user