repush clean
continuous-integration/drone Build is passing

This commit is contained in:
2024-04-01 20:27:33 +02:00
commit 10e8ad3be8
155 changed files with 3945 additions and 0 deletions
+51
View File
@@ -0,0 +1,51 @@
{{ define "head" }}
<style type="text/css">
/* .feature-image {
background-image: url("{{ . | absURL | safeCSS}}");
background-image: url('{{ "../images/unix.jpg" | absURL }}');
height: 500px;
} */
p {
text-align: center;
}
img {
max-width: 95%
}
/* @media (max-width: 992px) {
.feature-image {
height: 350px;
}
}
@media (max-width: 768px) {
.feature-image {
height: 250px;
}
}
@media (max-width: 576px) {
.feature-image {
height: 200px;
}
} */
</style>
{{ end }}
{{ define "title" }}
{{ .Title }} | {{ .Site.Title }}
{{ end }}
{{ define "main" }}
<div class="container mt-4 post">
<!-- <h1>{{ .Title }}</h1> -->
{{ partial "post-meta" . }}
<div class="mt-4 mb-4 main-content">
{{ .Content }}
</div>
</div>
{{ end }}