How to get the Pelican version number from a template
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I would like to add metadata in the HTML output, indicating that the page was generated from Pelican, and adding the Pelican version number. But I don't find how to get this number. I find no Pelican variable to have this information.
Calling the executable seems the only way?
% pelican --version
3.7.1
pelican
add a comment |
I would like to add metadata in the HTML output, indicating that the page was generated from Pelican, and adding the Pelican version number. But I don't find how to get this number. I find no Pelican variable to have this information.
Calling the executable seems the only way?
% pelican --version
3.7.1
pelican
add a comment |
I would like to add metadata in the HTML output, indicating that the page was generated from Pelican, and adding the Pelican version number. But I don't find how to get this number. I find no Pelican variable to have this information.
Calling the executable seems the only way?
% pelican --version
3.7.1
pelican
I would like to add metadata in the HTML output, indicating that the page was generated from Pelican, and adding the Pelican version number. But I don't find how to get this number. I find no Pelican variable to have this information.
Calling the executable seems the only way?
% pelican --version
3.7.1
pelican
pelican
edited Nov 23 '18 at 15:12
bortzmeyer
asked Nov 18 '18 at 17:52
bortzmeyerbortzmeyer
26k95282
26k95282
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I do not know if there is a more direct way to accomplish this, but you could add the following code in your configuration file (pelicanconf.py by default):
from pelican import __version__
PELICAN_VERSION = __version__
Now, you can reference this newly created variable in your HTML templates with Jinja2 syntax like so:
<p>I am using Pelican {{ PELICAN_VERSION }}.</p>
When you generate the content of your website to get a directory with static files (this is in output/ by default), the content of the variable PELICAN_VERSION will be added like any other variable in your configuration file and you should be good to go.
As an example, you can refer to my GitHub repository where I added the relevant code. You can see the configuration file and how this is integrated in the HTML template.
– Sébastien Lavoie
Nov 26 '18 at 4:51
1
Thanks, it works. I now have: <meta name="generator" content="Pelican (3.7.1)" />
– bortzmeyer
Dec 23 '18 at 10:31
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53363848%2fhow-to-get-the-pelican-version-number-from-a-template%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I do not know if there is a more direct way to accomplish this, but you could add the following code in your configuration file (pelicanconf.py by default):
from pelican import __version__
PELICAN_VERSION = __version__
Now, you can reference this newly created variable in your HTML templates with Jinja2 syntax like so:
<p>I am using Pelican {{ PELICAN_VERSION }}.</p>
When you generate the content of your website to get a directory with static files (this is in output/ by default), the content of the variable PELICAN_VERSION will be added like any other variable in your configuration file and you should be good to go.
As an example, you can refer to my GitHub repository where I added the relevant code. You can see the configuration file and how this is integrated in the HTML template.
– Sébastien Lavoie
Nov 26 '18 at 4:51
1
Thanks, it works. I now have: <meta name="generator" content="Pelican (3.7.1)" />
– bortzmeyer
Dec 23 '18 at 10:31
add a comment |
I do not know if there is a more direct way to accomplish this, but you could add the following code in your configuration file (pelicanconf.py by default):
from pelican import __version__
PELICAN_VERSION = __version__
Now, you can reference this newly created variable in your HTML templates with Jinja2 syntax like so:
<p>I am using Pelican {{ PELICAN_VERSION }}.</p>
When you generate the content of your website to get a directory with static files (this is in output/ by default), the content of the variable PELICAN_VERSION will be added like any other variable in your configuration file and you should be good to go.
As an example, you can refer to my GitHub repository where I added the relevant code. You can see the configuration file and how this is integrated in the HTML template.
– Sébastien Lavoie
Nov 26 '18 at 4:51
1
Thanks, it works. I now have: <meta name="generator" content="Pelican (3.7.1)" />
– bortzmeyer
Dec 23 '18 at 10:31
add a comment |
I do not know if there is a more direct way to accomplish this, but you could add the following code in your configuration file (pelicanconf.py by default):
from pelican import __version__
PELICAN_VERSION = __version__
Now, you can reference this newly created variable in your HTML templates with Jinja2 syntax like so:
<p>I am using Pelican {{ PELICAN_VERSION }}.</p>
When you generate the content of your website to get a directory with static files (this is in output/ by default), the content of the variable PELICAN_VERSION will be added like any other variable in your configuration file and you should be good to go.
I do not know if there is a more direct way to accomplish this, but you could add the following code in your configuration file (pelicanconf.py by default):
from pelican import __version__
PELICAN_VERSION = __version__
Now, you can reference this newly created variable in your HTML templates with Jinja2 syntax like so:
<p>I am using Pelican {{ PELICAN_VERSION }}.</p>
When you generate the content of your website to get a directory with static files (this is in output/ by default), the content of the variable PELICAN_VERSION will be added like any other variable in your configuration file and you should be good to go.
answered Nov 26 '18 at 4:40
Sébastien LavoieSébastien Lavoie
459310
459310
As an example, you can refer to my GitHub repository where I added the relevant code. You can see the configuration file and how this is integrated in the HTML template.
– Sébastien Lavoie
Nov 26 '18 at 4:51
1
Thanks, it works. I now have: <meta name="generator" content="Pelican (3.7.1)" />
– bortzmeyer
Dec 23 '18 at 10:31
add a comment |
As an example, you can refer to my GitHub repository where I added the relevant code. You can see the configuration file and how this is integrated in the HTML template.
– Sébastien Lavoie
Nov 26 '18 at 4:51
1
Thanks, it works. I now have: <meta name="generator" content="Pelican (3.7.1)" />
– bortzmeyer
Dec 23 '18 at 10:31
As an example, you can refer to my GitHub repository where I added the relevant code. You can see the configuration file and how this is integrated in the HTML template.
– Sébastien Lavoie
Nov 26 '18 at 4:51
As an example, you can refer to my GitHub repository where I added the relevant code. You can see the configuration file and how this is integrated in the HTML template.
– Sébastien Lavoie
Nov 26 '18 at 4:51
1
1
Thanks, it works. I now have: <meta name="generator" content="Pelican (3.7.1)" />
– bortzmeyer
Dec 23 '18 at 10:31
Thanks, it works. I now have: <meta name="generator" content="Pelican (3.7.1)" />
– bortzmeyer
Dec 23 '18 at 10:31
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53363848%2fhow-to-get-the-pelican-version-number-from-a-template%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown