Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
blog.limos.fr
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Vincent MAZENOD
blog.limos.fr
Commits
524e5623
Commit
524e5623
authored
4 years ago
by
Vincent Mazenod
Browse files
Options
Downloads
Patches
Plain Diff
changer blog url
parent
fe86cf46
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#6170
passed
4 years ago
Stage: build
Stage: deploy
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
content/extra/custom.js
+36
-0
36 additions, 0 deletions
content/extra/custom.js
pelicanconf.py
+4
-3
4 additions, 3 deletions
pelicanconf.py
publishconf.py
+1
-1
1 addition, 1 deletion
publishconf.py
with
41 additions
and
4 deletions
content/extra/custom.js
0 → 100644
+
36
−
0
View file @
524e5623
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
This diff is collapsed.
Click to expand it.
pelicanconf.py
+
4
−
3
View file @
524e5623
...
...
@@ -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/~mazeno
d
'
SITEURL
=
'
https://
perso.limos
.fr/~mazeno
vi/
'
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
...
...
This diff is collapsed.
Click to expand it.
publishconf.py
+
1
−
1
View file @
524e5623
...
...
@@ -10,7 +10,7 @@ import sys
sys
.
path
.
append
(
os
.
curdir
)
from
pelicanconf
import
*
SITEURL
=
'
http://
blog.m4z3.me
'
SITEURL
=
'
http
s
://
perso.limos.fr/~mazenovi/
'
RELATIVE_URLS
=
False
FEED_ALL_ATOM
=
'
feeds/all.atom.xml
'
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment