Compare commits
2 Commits
eedc7d7c4b
...
master
Author | SHA1 | Date | |
---|---|---|---|
7488b66720 | |||
8f19a06340 |
@ -6,7 +6,7 @@ on:
|
||||
- master
|
||||
|
||||
env:
|
||||
ZOLA_VERSION: "0.18.0"
|
||||
ZOLA_VERSION: "0.19.1"
|
||||
HOST: ${{ secrets.SSH_HOSTNAME }}
|
||||
HOST_DIR: ${{ secrets.SSH_TARGET_DIR }}
|
||||
SSH_USERNAME: ${{ secrets.SSH_USERNAME }}
|
||||
|
@ -210,7 +210,7 @@ header {
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image: url('img/panorama.jpg');
|
||||
background-image: url('img/panorama.jpg');
|
||||
background-size: cover;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
@ -226,7 +226,7 @@ header {
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image: url('img/forest.svg');
|
||||
background-image: url('img/forest.svg');
|
||||
background-size: auto 10em;
|
||||
background-position: center bottom -4px; // -4px fixes a visible line on some resolutions
|
||||
background-repeat: repeat-x;
|
||||
@ -254,8 +254,20 @@ section {
|
||||
}
|
||||
}
|
||||
|
||||
footer {
|
||||
text-align: center;
|
||||
footer .wrap {
|
||||
padding: 5em 1em 1em 1em;
|
||||
margin-top: auto;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
.socials {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -29,7 +29,14 @@
|
||||
{% endblock %}
|
||||
|
||||
<footer>
|
||||
<p>© {{ now() | date(format="%Y") }} {{ config.title }}</p>
|
||||
<div class="wrap">
|
||||
<p>© {{ now() | date(format="%Y") }} {{ config.title }}</p>
|
||||
<div class="socials">
|
||||
<a href="https://www.instagram.com/kocandaci/" target="_blank"><i class="ri-instagram-line"></i></a>
|
||||
<a href="https://www.facebook.com/kocandaci" target="_blank"><i class="ri-facebook-box-line"></i></a>
|
||||
<a href="https://www.youtube.com/channel/UCd5GIRz17QOQpCpg5PGi0PQ/featured" target="_blank"><i class="ri-youtube-line"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
{% block script %}
|
||||
|
Reference in New Issue
Block a user