git en papandr.eu
This commit is contained in:
parent
c00b9ca28d
commit
760e42474c
383 changed files with 11164 additions and 925 deletions
|
@ -6,15 +6,15 @@
|
|||
# Each configuration section is defined by a name in square brackets (e.g. `[outputs]`).
|
||||
|
||||
# Title of your site
|
||||
title = "Academic"
|
||||
title = "MPVD"
|
||||
|
||||
# The URL of your site.
|
||||
# End your URL with a `/` trailing slash, e.g. `https://example.com/`.
|
||||
baseurl = ""
|
||||
baseurl = "https://mpvd.es"
|
||||
|
||||
# Enter a copyright notice to display in the site footer.
|
||||
# To display a copyright symbol, type `©`. For current year, type `{year}`.
|
||||
copyright = ""
|
||||
copyright = "© MPVD, MPVD de Periodismo y Visualización de Datos, {year}"
|
||||
|
||||
############################
|
||||
## Advanced options below ##
|
||||
|
@ -24,7 +24,7 @@ copyright = ""
|
|||
enableGitInfo = false
|
||||
|
||||
# Default language to use (if you setup multilingual support)
|
||||
defaultContentLanguage = "en"
|
||||
defaultContentLanguage = "es"
|
||||
hasCJKLanguage = false # Set `true` for Chinese/Japanese/Korean languages.
|
||||
defaultContentLanguageInSubdir = false
|
||||
removePathAccents = true # Workaround for https://github.com/gohugoio/hugo/issues/5687
|
||||
|
@ -36,13 +36,19 @@ enableRobotsTXT = true
|
|||
footnotereturnlinkcontents = "<sup>^</sup>"
|
||||
ignoreFiles = ["\\.ipynb$", ".ipynb_checkpoints$", "\\.Rmd$", "\\.Rmarkdown$", "_cache$"]
|
||||
|
||||
# Workaround Hugo publishing taxonomy URLs as plurals - consistently use singular across Academic.
|
||||
[permalinks]
|
||||
# If only creating events which are talks, we can optimize event URLs for talks.
|
||||
event = "/talk/:slug/"
|
||||
# Workaround Hugo publishing taxonomy URLs as plurals - consistently use singular across Academic.
|
||||
tags = "/tag/:slug/"
|
||||
categories = "/category/:slug/"
|
||||
publication_types = "/publication-type/:slug/"
|
||||
tags = "/etiqueta/:slug/"
|
||||
categories = "/categoria/:slug/"
|
||||
publication_types = "/tipo_publicacion/:slug/"
|
||||
post = "/articulo/:slug"
|
||||
publication = "/publicacion/:slug"
|
||||
talk = "/charla/:slug"
|
||||
project = "/proyecto/:slug"
|
||||
event = "evento/:slug"
|
||||
modulo = "/modulo/:slug/"
|
||||
video = "/multimedia/:slug/"
|
||||
authors = "/claustro/:slug/"
|
||||
|
||||
[outputs]
|
||||
home = [ "HTML", "RSS", "JSON", "WebAppManifest" ]
|
||||
|
@ -77,7 +83,9 @@ ignoreFiles = ["\\.ipynb$", ".ipynb_checkpoints$", "\\.Rmd$", "\\.Rmarkdown$", "
|
|||
tag = "tags"
|
||||
category = "categories"
|
||||
publication_type = "publication_types"
|
||||
author = "authors"
|
||||
claustro = "authors"
|
||||
programa = "modulos"
|
||||
videos = "videos"
|
||||
|
||||
# Related content.
|
||||
[related]
|
||||
|
@ -105,6 +113,9 @@ ignoreFiles = ["\\.ipynb$", ".ipynb_checkpoints$", "\\.Rmd$", "\\.Rmarkdown$", "
|
|||
name = "authors"
|
||||
weight = 20.0
|
||||
|
||||
[[related.indices]]
|
||||
name = "claustro"
|
||||
weight = 20.0
|
||||
# Install Wowchemy
|
||||
[module]
|
||||
[[module.imports]]
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
# Refer to https://sourcethemes.com/academic/docs/language/
|
||||
|
||||
# Configure the English version of the site.
|
||||
[en]
|
||||
languageCode = "en-us"
|
||||
[es]
|
||||
languageCode = "es-es"
|
||||
# contentDir = "content/en" # Uncomment for multi-lingual sites, and move English content into `en` sub-folder.
|
||||
|
||||
# Uncomment the lines below to configure your website in a second language.
|
||||
|
|
|
@ -3,35 +3,67 @@
|
|||
# desired widget in your `content/home/` folder.
|
||||
# The weight parameter defines the order that the links will appear in.
|
||||
|
||||
[[main]]
|
||||
name = "Home"
|
||||
url = "#about"
|
||||
weight = 10
|
||||
|
||||
[[main]]
|
||||
name = "Posts"
|
||||
url = "#posts"
|
||||
name = "Claustro"
|
||||
url = "#claustro"
|
||||
weight = 20
|
||||
|
||||
[[main]]
|
||||
name = "Projects"
|
||||
url = "#projects"
|
||||
name = "Guía docente"
|
||||
url = "#guia_docente"
|
||||
weight = 30
|
||||
|
||||
[[main]]
|
||||
name = "Talks"
|
||||
url = "#talks"
|
||||
name = "Multimedia"
|
||||
url = "#multimedia"
|
||||
weight = 40
|
||||
|
||||
[[main]]
|
||||
name = "Publications"
|
||||
url = "#featured"
|
||||
weight = 50
|
||||
name = "Blog"
|
||||
url = "#blog"
|
||||
weight = 40
|
||||
|
||||
[[main]]
|
||||
name = "Contact"
|
||||
url = "#contact"
|
||||
weight = 60
|
||||
name = "Inscripción y Contacto"
|
||||
url = "#contacto"
|
||||
weight = 70
|
||||
|
||||
[[main]]
|
||||
name = "FAQS"
|
||||
url = "articulo/faqs/"
|
||||
weight = 80
|
||||
|
||||
|
||||
# [[main]]
|
||||
# name = "Home"
|
||||
# url = "#about"
|
||||
# weight = 10
|
||||
|
||||
# [[main]]
|
||||
# name = "Posts"
|
||||
# url = "#posts"
|
||||
# weight = 20
|
||||
|
||||
# [[main]]
|
||||
# name = "Projects"
|
||||
# url = "#projects"
|
||||
# weight = 30
|
||||
|
||||
# [[main]]
|
||||
# name = "Talks"
|
||||
# url = "#talks"
|
||||
# weight = 40
|
||||
|
||||
# [[main]]
|
||||
# name = "Publications"
|
||||
# url = "#featured"
|
||||
# weight = 50
|
||||
|
||||
# [[main]]
|
||||
# name = "Contact"
|
||||
# url = "#contact"
|
||||
# weight = 60
|
||||
|
||||
# Link to a PDF of your resume/CV from the menu.
|
||||
# To enable, copy your resume/CV to `static/media/resume.pdf` and uncomment the lines below.
|
||||
|
|
|
@ -22,7 +22,7 @@ day_night = true
|
|||
# Guide to font sets: https://wowchemy.com/docs/customization/#fonts
|
||||
# Browse the latest built-in font sets at https://github.com/wowchemy/wowchemy-hugo-modules/tree/master/wowchemy/data/fonts
|
||||
# Browse user installed font sets in `data/fonts/`
|
||||
font = ""
|
||||
font = "native"
|
||||
|
||||
# Choose a font size.
|
||||
# Sizes: XS (extra small), S (small), M (medium), L (large - DEFAULT), XL (extra large)
|
||||
|
@ -37,18 +37,18 @@ font_size = "L"
|
|||
# For personal sites, choose "Person".
|
||||
# For organizations and projects, choose from https://schema.org/Organization#subtypes
|
||||
# E.g. Person, Organization, LocalBusiness, Project, EducationalOrganization
|
||||
site_type = "Person"
|
||||
site_type = "EducationalOrganization"
|
||||
|
||||
# Local business type (optional)
|
||||
# If you entered "LocalBusiness" above, choose the type of business from https://schema.org/LocalBusiness#subtypes
|
||||
local_business_type = ""
|
||||
# local_business_type = ""
|
||||
|
||||
# Organization name (optional)
|
||||
# Enter an organization or project name. Defaults to the site title from `config.toml`.
|
||||
org_name = ""
|
||||
org_name = "MPVD, MPVD de Periodismo y Visualización de Datos"
|
||||
|
||||
# Description for social sharing and search engines. If undefined, superuser role is used in place.
|
||||
description = ""
|
||||
description = "MPVD, MPVD de Periodismo y Visualización de Datos, 100% en línea."
|
||||
|
||||
############################
|
||||
## Site Features
|
||||
|
@ -62,16 +62,16 @@ highlight_languages = ["r"] # Add support for highlighting additional languages
|
|||
|
||||
# Enable LaTeX math rendering? true/false
|
||||
# If false, you can enable math on a per page basis as needed.
|
||||
math = false
|
||||
math = true
|
||||
|
||||
# Enable diagram rendering? true/false
|
||||
# If false, you can enable diagrams on a per page basis as needed.
|
||||
diagram = false
|
||||
diagram = true
|
||||
|
||||
# Privacy pack
|
||||
# Show a cookie consent message to visitors
|
||||
# Anonymize IP in Google Analytics (if enabled)
|
||||
privacy_pack = false
|
||||
privacy_pack = true
|
||||
|
||||
# Enable visitors to edit pages?
|
||||
# `repo` defines the repository URL. `editable` defines which page types can be edited.
|
||||
|
@ -88,34 +88,39 @@ show_related = {book = true, page = false, post = true, project = true, publicat
|
|||
############################
|
||||
|
||||
# Enter contact details (optional). To hide a field, clear it to "".
|
||||
email = "test@example.org"
|
||||
phone = "888 888 88 88"
|
||||
email = "masterperiodismodata@uah.es"
|
||||
phone = ""
|
||||
|
||||
# Address
|
||||
# For country_code, use the 2-letter ISO code (see https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 )
|
||||
address = {street = "450 Serra Mall", city = "Stanford", region = "CA", postcode = "94305", country = "United States", country_code = "US"}
|
||||
# address = {street = "450 Serra Mall", city = "Stanford", region = "CA", postcode = "94305", country = "United States", country_code = "US"}
|
||||
# address = {street = "Pza. San Diego", city = "Alcalá de Henares", region = "Madrid", postcode = "28801", country = "España", country_code = "ES"}
|
||||
|
||||
# Geographic coordinates
|
||||
# To get your coordinates, right-click on Google Maps and choose "What's here?". The coords will show up at the bottom.
|
||||
coordinates = {latitude = "37.4275", longitude = "-122.1697"}
|
||||
coordinates = {latitude = "40.48330", longitude = "-3.36270"}
|
||||
|
||||
# Directions for visitors to locate you.
|
||||
directions = "Enter Building 1 and take the stairs to Office 200 on Floor 2"
|
||||
# directions = "no nos busques en Alcalá sino en la Web"
|
||||
|
||||
# Office hours
|
||||
# A list of your office hours. To remove, set to an empty list `[]`.
|
||||
office_hours = ["Monday 10:00 to 13:00", "Wednesday 09:00 to 10:00"]
|
||||
# office_hours = ["De lunes a jueves de 10 a 16 horas UTC+2", "Viernes de 10 a 13 horas UTC+2"]
|
||||
|
||||
# Enter an optional link for booking appointments (e.g. calendly.com).
|
||||
appointment_url = "https://calendly.com"
|
||||
#appointment_url = "https://calendly.com"
|
||||
|
||||
# Contact links
|
||||
# Set to `[]` to disable, or comment out unwanted lines with a hash `#`.
|
||||
contact_links = [
|
||||
{icon = "twitter", icon_pack = "fab", name = "DM Me", link = "https://twitter.com/Twitter"},
|
||||
{icon = "skype", icon_pack = "fab", name = "Skype Me", link = "skype:echo123?call"},
|
||||
{icon = "keybase", icon_pack = "fab", name = "Chat on Keybase", link = "https://keybase.io/"},
|
||||
{icon = "comments", icon_pack = "fas", name = "Discuss on Forum", link = "https://discourse.gohugo.io"},
|
||||
{icon = "twitter", icon_pack = "fab", name = "Twitter", link = "https://twitter.com/masteruah"},
|
||||
{icon = "instagram", icon_pack = "fab", name = "Instagram", link = "https://www.instagram.com/masterperiodismodata/"},
|
||||
{icon = "mastodon", icon_pack = "fab", name = "Mastodon", link = "https://vis.social/@mpvd"},
|
||||
{icon = "linkedin", icon_pack = "fab", name = "Linkedin", link = "https://www.linkedin.com/groups/12444505"},
|
||||
{icon = "meetup", icon_pack = "fab", name = "Meetup", link = "https://www.meetup.com/es-ES/mpvdes"},
|
||||
{icon = "slack", icon_pack = "fab", name = "Slack", link = "https://join.slack.com/t/periodismodatos/shared_invite/zt-lgr35oyc-GBEtXcyhdvgsOWIgwK3BUg"},
|
||||
{icon = "telegram", icon_pack = "fab", name = "Telegram", link = "https://t.me/datosperiodismo"},
|
||||
{icon = "youtube", icon_pack = "fab", name = "Youtube", link = "https://www.youtube.com/channel/UCCAT_Kjo4gtGSZ1J7oeBw2Q"},
|
||||
# {icon = "telegram", icon_pack = "fab", name = "Telegram Me", link = "https://telegram.me/@Telegram"},
|
||||
]
|
||||
|
||||
|
@ -124,10 +129,10 @@ contact_links = [
|
|||
############################
|
||||
|
||||
# Default image for social sharing and search engines. Place image in `static/media/` folder and specify image name here.
|
||||
sharing_image = ""
|
||||
sharing_image = "img/20221007_share_rss.jpg"
|
||||
|
||||
# Twitter username (without @). Used when a visitor shares your site on Twitter.
|
||||
twitter = ""
|
||||
twitter = "mpvdes"
|
||||
|
||||
############################
|
||||
## Regional Settings
|
||||
|
@ -135,12 +140,12 @@ twitter = ""
|
|||
|
||||
# Date and time format (refer to https://wowchemy.com/docs/customization/#date-format )
|
||||
# Examples: "Mon, Jan 2, 2006" or "2006-01-02"
|
||||
date_format = "Jan 2, 2006"
|
||||
date_format = "2006-01-02"
|
||||
# Examples: "3:04 pm" or "15:04"
|
||||
time_format = "3:04 PM"
|
||||
time_format = "15:04"
|
||||
|
||||
# Address format (en-us, en-gb, de, fr-fr, zh).
|
||||
address_format = "en-us"
|
||||
address_format = "es"
|
||||
|
||||
############################
|
||||
## Advanced
|
||||
|
@ -153,7 +158,7 @@ main_menu = {align = "l", show_logo = true, highlight_active_link = true, show_l
|
|||
reading_time = true
|
||||
|
||||
# Display next/previous section pager? (true/false)
|
||||
section_pager = false
|
||||
section_pager = true
|
||||
docs_section_pager = true # Display pager in Docs layout (e.g. tutorials)?
|
||||
|
||||
# Enable in-built social sharing buttons? (true/false)
|
||||
|
@ -161,7 +166,7 @@ sharing = true
|
|||
|
||||
# Show a copyright license from creativecommons.org in the site footer?
|
||||
# Page specific copyright licenses are also possible by adding this option to a page's front matter.
|
||||
copyright_license = {enable = false, allow_derivatives = false, share_alike = true, allow_commercial = false, notice = "This work is licensed under {license}"}
|
||||
copyright_license = {enable = true, allow_derivatives = false, share_alike = true, allow_commercial = false, notice = "Si no se especifica otra licencia, todo el sitio tiene licencia {license}"}
|
||||
|
||||
# Abstract length (characters) in the Compact and Portfolio Card list views. Also, see `summaryLength` in `config.toml`.
|
||||
abstract_length = 135
|
||||
|
@ -184,7 +189,7 @@ plugins_js = []
|
|||
[publications]
|
||||
# Date format (refer to https://wowchemy.com/docs/customization/#date-format )
|
||||
# Examples: "Mon, Jan 2, 2006" or "2006-01-02"
|
||||
date_format = "January 2006"
|
||||
date_format = "2006-01-02"
|
||||
|
||||
# Citation style ("apa" or "mla")
|
||||
citation_style = "apa"
|
||||
|
@ -261,7 +266,7 @@ plugins_js = []
|
|||
# 3: OpenStreetMap (Mapbox)
|
||||
engine = 2
|
||||
api_key = ""
|
||||
zoom = 15
|
||||
zoom = 2
|
||||
|
||||
############################
|
||||
## Marketing
|
||||
|
@ -275,7 +280,7 @@ plugins_js = []
|
|||
############################
|
||||
[cms]
|
||||
# See https://wowchemy.com/docs/install/
|
||||
netlify_cms = true
|
||||
netlify_cms = false
|
||||
|
||||
############################
|
||||
## Icon Pack Extensions
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue