updated with hugo v0.69.0
This commit is contained in:
parent
440138f6ac
commit
e2f2743c26
3 changed files with 9 additions and 5 deletions
|
@ -189,8 +189,8 @@ select:focus {
|
|||
}
|
||||
|
||||
.section-sm {
|
||||
padding-top: 80px;
|
||||
padding-bottom: 80px;
|
||||
padding-top: 60px;
|
||||
padding-bottom: 60px;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{{ "<!-- details page -->" | safeHTML }}
|
||||
<section class="single section pb-0">
|
||||
<section class="single section-sm pb-0">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-3">
|
||||
|
|
|
@ -36,8 +36,12 @@
|
|||
</style>
|
||||
|
||||
{{ "<!-- Main Stylesheet -->" | safeHTML }}
|
||||
{{ $styles := resources.Get "css/style.css" | minify}}
|
||||
<link rel="stylesheet" href="{{ $styles.Permalink }}" media="screen">
|
||||
{{ $css := resources.Get "css/style.css" }}
|
||||
{{ $css = $css | minify }}
|
||||
{{ if hugo.IsProduction }}
|
||||
{{ $css = $css | minify | resources.PostProcess }}
|
||||
{{ end }}
|
||||
<link href="{{ $css.RelPermalink }}" rel="stylesheet" media="screen"/>
|
||||
|
||||
{{ "<!-- jquiry -->" | safeHTML }}
|
||||
<script src="{{ `plugins/jquery/jquery-1.12.4.js` | absURL }}"></script>
|
||||
|
|
Loading…
Reference in a new issue