Add gh icon on page layout

This commit is contained in:
Santiago Lo Coco 2022-02-10 12:13:46 -03:00
parent 8617415908
commit 97b4160781
2 changed files with 15 additions and 1 deletions

View File

@ -5,7 +5,21 @@ layout: default
<div class="post">
<header class="post-header">
{% if page.github -%}
<div class="post-header">
<div style="float:left;">
<h1 class="post-title">{{ page.title }}</h1>
</div>
<div style="float:right;">
<div class="icon" data-toggle="tooltip" title="Code Repository">
<a href="{{ page.github }}"><i class="fab fa-3x fa-github"></i></a>
</div>
</div>
</div>
<div style="clear: both;"></div>
{%- else -%}
<h1 class="post-title">{{ page.title }}</h1>
{%- endif %}
<p class="post-description">{{ page.description }}</p>
</header>

View File

@ -537,7 +537,7 @@ html.transition *:after {
border-left: 5px solid var(--global-theme-color);
padding: 8px;
}
}
}
}
.post-tags {