Skip to content
Snippets Groups Projects
Commit 524e5623 authored by Vincent Mazenod's avatar Vincent Mazenod
Browse files

changer blog url

parent fe86cf46
No related branches found
No related tags found
No related merge requests found
Pipeline #6170 passed
alert('helloworld');
$( document ).ready(function() {
$('a.toggle').each(function() {
$($(this).attr('href')).closest('li').hide();
});
$('a.expand').click(function(event) {
if($(this).text() == 'version longue') {
$(this).text('version courte');
$('a.toggle').each(function() {
$($(this).attr('href')).closest('li').show();
});
}
else {
$(this).text('version longue');
$('a.toggle').each(function() {
$($(this).attr('href')).closest('li').hide();
});
}
event.preventDefault();
});
$('a.toggle').click(function() {
$($(this).attr('href')).closest('li').toggle();
});
});
\ No newline at end of file
......@@ -7,7 +7,7 @@ AUTHOR = 'Vincent Mazenod'
SITENAME = 'Vincent Mazenod / ingénieur d\'études'
SITELOGO = 'images/mazenovi.png'
FAVICON = 'images/favicon.ico'
SITEURL = 'https://fc.isima.fr/~mazenod'
SITEURL = 'https://perso.limos.fr/~mazenovi/'
DISQUS_SITENAME = 'limos-1'
DISQUS_SHORTNAME = 'mazenovi'
......@@ -148,12 +148,13 @@ SHOW_ARTICLE_AUTHOR = False
SHOW_ARTICLE_CATEGORY = True
SHOW_DATE_MODIFIED = True
CUSTOM_CSS = 'static/custom.css'
STATIC_PATHS = ['images', 'extra/custom.css', 'node_modules', 'slides']
STATIC_PATHS = ['images', 'extra/custom.css', 'extra/custom.js', 'node_modules', 'slides']
ARTICLE_EXCLUDES = ['node_modules', 'slides']
PAGE_EXCLUDES = ['node_modules', 'slides']
STATIC_EXCLUDES = ['node_modules', 'slides']
EXTRA_PATH_METADATA = {
'extra/custom.css': {'path': 'static/custom.css'}
'extra/custom.css': {'path': 'static/custom.css'},
'extra/custom.js': {'path': 'static/custom.js'}
}
PYGMENTS_STYLE = "monokai"
USE_PAGER = True
......
......@@ -10,7 +10,7 @@ import sys
sys.path.append(os.curdir)
from pelicanconf import *
SITEURL = 'http://blog.m4z3.me'
SITEURL = 'https://perso.limos.fr/~mazenovi/'
RELATIVE_URLS = False
FEED_ALL_ATOM = 'feeds/all.atom.xml'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment