changing the site url variable to allow use online
This commit is contained in:
Guillaume Redoulès 2017-10-14 21:56:41 +02:00
parent b358803bb6
commit 8af03fa534
3 changed files with 9 additions and 9 deletions

View File

@ -4,42 +4,42 @@ xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitem
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>output/</loc>
<lastmod>2017-10-14T21:29:42-00:00</lastmod>
<loc>redoules.github.io/</loc>
<lastmod>2017-10-14T21:56:04-00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>output/pages/about.html</loc>
<loc>redoules.github.io/pages/about.html</loc>
<lastmod>2016-05-01T12:00:00+02:00</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>output/python/Saving_a_matplotlib_figure_with_a_high_resolution.html</loc>
<loc>redoules.github.io/python/Saving_a_matplotlib_figure_with_a_high_resolution.html</loc>
<lastmod>2017-10-14T21:03:00+02:00</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>output/python/Iterating_over_a_dataframe.html</loc>
<loc>redoules.github.io/python/Iterating_over_a_dataframe.html</loc>
<lastmod>2017-10-14T20:33:00+02:00</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>output/machine-learning/Source code for the recommandation engine for articles.html</loc>
<loc>redoules.github.io/machine-learning/Source code for the recommandation engine for articles.html</loc>
<lastmod>2017-06-23T08:22:00+02:00</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>output/bash/sample article.html</loc>
<loc>redoules.github.io/bash/sample article.html</loc>
<lastmod>2017-06-17T08:22:00+02:00</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>

File diff suppressed because one or more lines are too long

View File

@ -5,7 +5,7 @@ from __future__ import unicode_literals
AUTHOR = 'Guillaume Redoulès'
SITENAME = 'Notes on python, machine learning, linux and other programming related topics'
SITEURL = 'output'#'redoules.github.io'
SITEURL = 'redoules.github.io'#'output'#
THEME = 'theme/'
PATH = 'content'