Add gh icon on page layout
This commit is contained in:
parent
8617415908
commit
97b4160781
|
@ -5,7 +5,21 @@ layout: default
|
||||||
<div class="post">
|
<div class="post">
|
||||||
|
|
||||||
<header class="post-header">
|
<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>
|
<h1 class="post-title">{{ page.title }}</h1>
|
||||||
|
{%- endif %}
|
||||||
<p class="post-description">{{ page.description }}</p>
|
<p class="post-description">{{ page.description }}</p>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|
|
@ -537,7 +537,7 @@ html.transition *:after {
|
||||||
border-left: 5px solid var(--global-theme-color);
|
border-left: 5px solid var(--global-theme-color);
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-tags {
|
.post-tags {
|
||||||
|
|
Loading…
Reference in New Issue