Merge branch 'master' of 0xacab.org:sutty/jekyll/sutty-base-jekyll-theme

This commit is contained in:
f 2021-10-27 15:08:09 -03:00
commit 5b052a5b19
12 changed files with 152 additions and 0 deletions

View file

@ -11,6 +11,7 @@ plugins:
- jekyll-data
- jekyll-seo-tag
- jekyll-images
- jekyll-embed-urls
- sutty-liquid
markdown: CommonMark
commonmark:

26
_data/layouts/cuidado.yml Normal file
View file

@ -0,0 +1,26 @@
---
title:
type: string
required: true
label:
es: Título
en: Title
help:
es: ''
en: ''
order:
type: order
label:
es: Orden
en: Order
help:
es: La posición del artículo en la lista de artículos
en: Position in articles list
draft:
type: boolean
label:
es: Borrador
en: Draft
help:
es: Este artículo aun no está listo para publicar
en: This post isn't ready to be published yet

26
_data/layouts/libro.yml Normal file
View file

@ -0,0 +1,26 @@
---
title:
type: string
required: true
label:
es: Título
en: Title
help:
es: ''
en: ''
order:
type: order
label:
es: Orden
en: Order
help:
es: La posición del artículo en la lista de artículos
en: Position in articles list
draft:
type: boolean
label:
es: Borrador
en: Draft
help:
es: Este artículo aun no está listo para publicar
en: This post isn't ready to be published yet

26
_data/layouts/lugar.yml Normal file
View file

@ -0,0 +1,26 @@
---
title:
type: string
required: true
label:
es: Título
en: Title
help:
es: ''
en: ''
order:
type: order
label:
es: Orden
en: Order
help:
es: La posición del artículo en la lista de artículos
en: Position in articles list
draft:
type: boolean
label:
es: Borrador
en: Draft
help:
es: Este artículo aun no está listo para publicar
en: This post isn't ready to be published yet

View file

@ -0,0 +1,26 @@
---
title:
type: string
required: true
label:
es: Título
en: Title
help:
es: ''
en: ''
order:
type: order
label:
es: Orden
en: Order
help:
es: La posición del artículo en la lista de artículos
en: Position in articles list
draft:
type: boolean
label:
es: Borrador
en: Draft
help:
es: Este artículo aun no está listo para publicar
en: This post isn't ready to be published yet

26
_data/layouts/video.yml Normal file
View file

@ -0,0 +1,26 @@
---
title:
type: string
required: true
label:
es: Título
en: Title
help:
es: ''
en: ''
order:
type: order
label:
es: Orden
en: Order
help:
es: La posición del artículo en la lista de artículos
en: Position in articles list
draft:
type: boolean
label:
es: Borrador
en: Draft
help:
es: Este artículo aun no está listo para publicar
en: This post isn't ready to be published yet

4
_layouts/cuidado.html Normal file
View file

@ -0,0 +1,4 @@
---
layout: default
---

4
_layouts/libro.html Normal file
View file

@ -0,0 +1,4 @@
---
layout: default
---

4
_layouts/lugar.html Normal file
View file

@ -0,0 +1,4 @@
---
layout: default
---

View file

@ -0,0 +1,4 @@
---
layout: default
---

4
_layouts/video.html Normal file
View file

@ -0,0 +1,4 @@
---
layout: default
---

View file

@ -69,6 +69,7 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency 'jekyll-dotenv', '>= 0.2'
spec.add_runtime_dependency 'jekyll-feed', '~> 0.15'
spec.add_runtime_dependency 'jekyll-ignore-layouts', '~> 0'
spec.add_runtime_dependency 'jekyll-embed-urls', '~> 0'
# Dependencias de desarrollo
spec.add_development_dependency 'bundler', '~> 2.1'