generated from minicomp/wax
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path_config.yml
122 lines (109 loc) · 4.01 KB
/
_config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# ==============================================================
# WAX CONFIGURATION
# ==============================================================
# Jekyll configuration files are written in YAML format.
# Colons, tabs/spacing, and quotes are meaningful in YAML.
# It is recommended you look at the following guide to avoid
# syntax errors in this file:
# ~> https://learnxinyminutes.com/docs/yaml/
#
#
# Questions ?
# ~> https://minicomp.github.io/wiki/#/
#
# ---------------------------------------------------------------
# MAIN SETTINGS
# ---------------------------------------------------------------
# Feel free to change these! For more info, refer to:
# ~> https://jekyllrb.com/docs/configuration/options/
title: 'Plantilla Wax'
description: 'Colecciones Digitales'
url: 'https://srsergiorodriguez.github.io' # Reemplazar por cuenta de github propia
baseurl: '/plantilla-wax' # Reemplazar por nombre del repositorio
copyright: 'Derechos reservados, 2024'
logo: '/assets/logo.png'
default_thumb: '/assets/default.png'
# ---------------------------------------------------------------
# BUILD SETTINGS
# ---------------------------------------------------------------
# Best not to mess with these unless you know what you're doing!
permalink: 'pretty'
sass:
style: compressed
exclude: ["Gemfile*", "*.gemspec", "Rakefile", "vendor", "spec", "README.md", "LICENSE.txt", "Docker*"]
webrick:
headers:
'Access-Control-Allow-Origin': '*'
kramdown:
auto_ids: true
footnote_nr: 1
entity_output: as_char
footnote_backlink: "↩︎"
toc_levels: 1..6
smart_quotes: lsquo,rsquo,ldquo,rdquo
enable_coderay: false
# --------------------------------------------------------------
# COLLECTION SETTINGS
# --------------------------------------------------------------
# Wax leverages Jekyll collections for much of its
# functionality, therefor some of the keys below are from
# Jekyll while others are Wax-specific.
# For more info, refer to:
# ~> https://jekyllrb.com/docs/collections/
collections:
exhibits:
output: true
coleccion: # OJO: Cambiar por nombre de la colección si es necesario
output: true
layout: 'plantilla_item' # nombre de la plantilla con la estructura de los ítems de la colección
metadata:
source: 'coleccion.csv' # nombre del archivo con metadatos guardado en `_data`
images:
source: 'raw_images/coleccion' # ruta de la carpeta con imágenes guardada en `_data`
# --------------------------------------------------------------
# SEARCH INDEX SETTINGS
# --------------------------------------------------------------
# You can create multiple search indexes below (though only one is
# recommended!) by specifying
# an `index` file to write it to and some `collections` for it to index
# and running `$ bundle exec rake wax:search` .
search:
main:
index: '/search/index.json'
collections:
coleccion: # OJO: Cambiar por nombre de la colección si es necesario
content: false
fields: # Metadatos que se indexarán
- nombre
- autor
- fecha
# --------------------------------------------------------------
# SITE MENU SETTINGS
# --------------------------------------------------------------
# Each menu item needs a `label` (whats shown), and a `link`
# (where it goes). An item can optionally have a dropdown
# submenu via `sub`.
menu: # Elementos que irán en el menú superior, personalizar al gusto
- label: 'Acerca'
link: '/acerca/'
- label: 'Exhibiciones'
sub:
- label: 'Muestra A'
link: '/exhibits/muestra/'
- label: 'Explorar'
link: '/explorar/'
- label: 'Buscar'
link: '/buscar/'
- label: 'Metadatos'
link: '/metadatos/'
# --------------------------------------------------------------
# SITE FOOTER SETTINGS
# --------------------------------------------------------------
#
footer: # Elementos que irán en el menú inferior
links:
- label: 'Créditos'
link: '/creditos'
logos:
- img: '/img/logo.png'
# FIN