#!/usr/bin/env python
# -*- coding: utf-8 -*- #

AUTHOR = 'Grupo 10'
SITENAME = 'Tratamiento de imágenes 2023 - Proyecto final'
PATH = 'content'

TIMEZONE = 'America/Montevideo'

DEFAULT_LANG = 'en'

# Feed generation is usually not desired when developing
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None

# Blogroll
LINKS = (('Facultad de Ingeniería', 'https://www.fing.edu.uy/'),
         ('Instituto de Ingeniería Eléctrica', 'https://iie.fing.edu.uy/'),
         ('Se pueden poner otros links en el pelicanconf', '#'),)


# Social widget
#SOCIAL = (('You can add links in your config file', '#'),
#          ('Another social link', '#'),)
DEFAULT_PAGINATION = 10

# PLUGINS--------------------------------
# Where to look for plugins
PLUGIN_PATHS = ['pelican-plugins']  #['../pelican-plugins']
PAGE_PATHS = ['content/pages']
STATIC_PATHS = [
    'images',
    ]
# Which plugins to enable
# PLUGIN PARA PONER NUMERO A LAS FIGURAS ->  figure-ref
#https://github.com/cmacmackin/figure-ref/tree/40e04d32bff468a6b3e63c373c5d95fca39783fe
# PLUGIN PARA CITAS ->  pelican-cite
#https://github.com/VorpalBlade/pelican-cite
PLUGINS = ['figure-ref', 'pelican-cite']


ARTICLE_URL = 'posts/{date:%Y}/{date:%b}/{date:%d}/{slug}/'
ARTICLE_SAVE_AS = 'posts/{date:%Y}/{date:%b}/{date:%d}/{slug}/index.html'
PAGE_URL = 'pages/{slug}/'
PAGE_SAVE_AS = 'pages/{slug}/index.html'
# ORDENAR LAS PAGINAS EN EL MENU POR EL ATRUBUTO "Ordinal" -------
# si no, te quedan ordenadas alfabéticamente
PAGE_ORDER_BY = 'ordinal'
ARTICLE_ORDER_BY = 'ordinal'

# UBICACION DE bibtex que usa el plugin pelican-cite
PUBLICATIONS_SRC = 'content/biblio.bib'

# CAMBIAR EL ASPECTO
# Usar uno de los 'themes' de :  https://github.com/getpelican/pelican-themes
#THEME = "<sustituir por la ubicacion>/pelican-themes/tuxlite_zf"
#THEME = "<sustituir por la ubicacion>/pelican-themes/tuxlite_tbs"
#THEME = "<sustituir por la ubicacion>/pelican-themes/mnmlist"
#THEME = "<sustituir por la ubicacion>/pelican-themes/gum"
#THEME = "<sustituir por la ubicacion>/pelican-themes/foundation-default-colours"