updated with hugo v0.69.0

This commit is contained in:
somrat 2020-04-15 09:53:46 +06:00
parent 440138f6ac
commit e2f2743c26
3 changed files with 9 additions and 5 deletions

View file

@ -189,8 +189,8 @@ select:focus {
} }
.section-sm { .section-sm {
padding-top: 80px; padding-top: 60px;
padding-bottom: 80px; padding-bottom: 60px;
} }
@media (max-width: 768px) { @media (max-width: 768px) {

View file

@ -1,5 +1,5 @@
{{ "<!-- details page -->" | safeHTML }} {{ "<!-- details page -->" | safeHTML }}
<section class="single section pb-0"> <section class="single section-sm pb-0">
<div class="container"> <div class="container">
<div class="row"> <div class="row">
<div class="col-lg-3"> <div class="col-lg-3">

View file

@ -36,8 +36,12 @@
</style> </style>
{{ "<!-- Main Stylesheet -->" | safeHTML }} {{ "<!-- Main Stylesheet -->" | safeHTML }}
{{ $styles := resources.Get "css/style.css" | minify}} {{ $css := resources.Get "css/style.css" }}
<link rel="stylesheet" href="{{ $styles.Permalink }}" media="screen"> {{ $css = $css | minify }}
{{ if hugo.IsProduction }}
{{ $css = $css | minify | resources.PostProcess }}
{{ end }}
<link href="{{ $css.RelPermalink }}" rel="stylesheet" media="screen"/>
{{ "<!-- jquiry -->" | safeHTML }} {{ "<!-- jquiry -->" | safeHTML }}
<script src="{{ `plugins/jquery/jquery-1.12.4.js` | absURL }}"></script> <script src="{{ `plugins/jquery/jquery-1.12.4.js` | absURL }}"></script>