Add warning, quick padding thing
This commit is contained in:
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
|
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 Dependencies
|
||||||
|
|
||||||
Install all the dependencies using the following command.
|
Install all the dependencies using the following command.
|
||||||
|
|||||||
@@ -65,7 +65,7 @@ features:
|
|||||||
link: "/about"
|
link: "/about"
|
||||||
|
|
||||||
- title: "Companies Value Handmade"
|
- title: "Companies Value Handmade"
|
||||||
title_class: "text-center"
|
title_class: "text-center mt-16 mb-12"
|
||||||
image: ""
|
image: ""
|
||||||
side: "center"
|
side: "center"
|
||||||
swiper:
|
swiper:
|
||||||
|
|||||||
@@ -100,9 +100,11 @@
|
|||||||
{{ if eq .side "center" }}
|
{{ if eq .side "center" }}
|
||||||
<div
|
<div
|
||||||
class="mx-auto md:col-8 lg:col-8 {{ .content_class }}">
|
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 }}
|
{{ .title | markdownify }}
|
||||||
</h2>
|
</h2>
|
||||||
|
</div>
|
||||||
{{ with .swiper }}
|
{{ with .swiper }}
|
||||||
<div class="swiper swiper-slider">
|
<div class="swiper swiper-slider">
|
||||||
<div class="swiper-wrapper">
|
<div class="swiper-wrapper">
|
||||||
|
|||||||
Reference in New Issue
Block a user