Add warning, quick padding thing
parent
05e9f8882a
commit
a6b27d7565
10
README.md
10
README.md
|
|
@ -17,6 +17,16 @@ You can install hugo extended with Chocolatey using an admin powershell and:
|
|||
choco install hugo-extended
|
||||
```
|
||||
|
||||
## WARNING:
|
||||
Currently build is failing due to an upstream Hugo component calling .Site.Social (should be .Params.Social), will remove this warning once latest Hugo version has fixed itself. For now, downgrading to 2nd most recent (as of writing) v0.135-1, fixes build issue.
|
||||
|
||||
Pacman example: (If it's in your package cache)
|
||||
```sh
|
||||
pacman -U file:///var/cache/pacman/pkg/package-old_version.pkg.tar.type
|
||||
```
|
||||
|
||||
_I will be excited when we have no external dependencies -Devon_
|
||||
|
||||
### 👉 Install Dependencies
|
||||
|
||||
Install all the dependencies using the following command.
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ features:
|
|||
link: "/about"
|
||||
|
||||
- title: "Companies Value Handmade"
|
||||
title_class: "text-center"
|
||||
title_class: "text-center mt-16 mb-12"
|
||||
image: ""
|
||||
side: "center"
|
||||
swiper:
|
||||
|
|
|
|||
|
|
@ -100,9 +100,11 @@
|
|||
{{ if eq .side "center" }}
|
||||
<div
|
||||
class="mx-auto md:col-8 lg:col-8 {{ .content_class }}">
|
||||
<h2 class="mb-4 {{ .title_class }}">
|
||||
<div class="row">
|
||||
<h2 class="{{ .title_class }}">
|
||||
{{ .title | markdownify }}
|
||||
</h2>
|
||||
</div>
|
||||
{{ with .swiper }}
|
||||
<div class="swiper swiper-slider">
|
||||
<div class="swiper-wrapper">
|
||||
|
|
|
|||
Loading…
Reference in New Issue