Skip to content
Snippets Groups Projects
pelicanconf.py 2.01 KiB
Newer Older
#!/usr/bin/env python
# -*- coding: utf-8 -*- #

martin-corredera's avatar
martin-corredera committed
AUTHOR = 'Grupo 10'
SITENAME = 'Tratamiento de imágenes 2023 - Proyecto final'
martin-corredera's avatar
martin-corredera committed
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
martin-corredera's avatar
martin-corredera committed
DISPLAY_PAGES_ON_MENU = True
martin-corredera's avatar
martin-corredera committed
DISPLAY_CATEGORIES_ON_MENU = False
martin-corredera's avatar
martin-corredera committed
USE_FOLDER_AS_CATEGORY = False
martin-corredera's avatar
martin-corredera committed
LINKS = (('Facultad de Ingeniería', 'https://www.fing.edu.uy/'),
         ('Instituto de Ingeniería Eléctrica', 'https://iie.fing.edu.uy/'),
martin-corredera's avatar
martin-corredera committed
         ('Link al Paper DQ', '../images/DQ.pdf'),)
martin-corredera's avatar
martin-corredera committed
# Social widget
#SOCIAL = (('You can add links in your config file', '#'),
#          ('Another social link', '#'),)
martin-corredera's avatar
martin-corredera committed
# PLUGINS--------------------------------
# Where to look for plugins
PLUGIN_PATHS = ['pelican-plugins']  #['../pelican-plugins']
martin-corredera's avatar
martin-corredera committed
PAGE_PATHS = ['pages']
martin-corredera's avatar
martin-corredera committed
STATIC_PATHS = [
    'images',
    ]
STATIC_EXCLUDES = ['datasets']
martin-corredera's avatar
martin-corredera committed
# 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','render_math']
martin-corredera's avatar
martin-corredera committed


# ORDENAR LAS PAGINAS EN EL MENU POR EL ATRUBUTO "Ordinal" -------
# si no, te quedan ordenadas alfabéticamente
martin-corredera's avatar
martin-corredera committed
PAGE_ORDER_BY = 'ordinal'
ARTICLE_ORDER_BY = 'ordinal'
martin-corredera's avatar
martin-corredera committed

# 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"