Few cosmetic changes

This commit is contained in:
Ratan Kulshreshtha 2021-06-10 21:13:30 +05:30
parent 44c25559a0
commit 678f038308
3 changed files with 5 additions and 5 deletions

View File

@ -83,7 +83,7 @@
{% for item in config.extra.navbar_items %}
{% if lang == item.code %}
{% for nav in item.nav_items %}
<a class="navbar-item" href="{{ nav.url | replace(from='$BASE_URL', to=config.base_url) }}">
<a class="navbar-item has-text-weight-semibold" href="{{ nav.url | replace(from='$BASE_URL', to=config.base_url) }}">
{{ nav.name }}
</a>
{% endfor %}

View File

@ -104,7 +104,7 @@
<p>
Categories:
{% for category in categories %}
<a href="{{ get_taxonomy_url(kind='categories', name=category) }}">
<a class="has-text-info-dark has-text-weight-semibold" href="{{ get_taxonomy_url(kind='categories', name=category) }}">
<span class="icon-text">
<span class="icon">
<i class="fas fa-cube"></i>
@ -120,7 +120,7 @@
<p>
Tags:
{% for tag in tags %}
<a href="{{ get_taxonomy_url(kind='tags', name=tag) }}">
<a class="has-text-info-dark has-text-weight-semibold" href="{{ get_taxonomy_url(kind='tags', name=tag) }}">
<span class="icon-text">
<span class="icon">
<i class="fas fa-tag"></i>

View File

@ -25,7 +25,7 @@
{% for page in pages %}
<article class="box">
<h2 class="title">
<a href='{{ page.permalink }}'>
<a class="has-text-dark" href='{{ page.permalink }}'>
{{ page.title }}
</a>
</h2>
@ -40,7 +40,7 @@
</div>
<div class="content mt-2">
{{ page.summary | safe }}
<a href='{{ page.permalink }}'>
<a class="has-text-danger-dark has-text-weight-semibold" href='{{ page.permalink }}'>
Read More
<span class="icon is-small">
<i class="fas fa-arrow-right fa-xs"></i>