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;
}







0















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









share|improve this question































    0















    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









    share|improve this question



























      0












      0








      0








      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









      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 23 '18 at 15:12







      bortzmeyer

















      asked Nov 18 '18 at 17:52









      bortzmeyerbortzmeyer

      26k95282




      26k95282
























          1 Answer
          1






          active

          oldest

          votes


















          2














          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.






          share|improve this answer
























          • 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














          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
          });


          }
          });














          draft saved

          draft discarded


















          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









          2














          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.






          share|improve this answer
























          • 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


















          2














          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.






          share|improve this answer
























          • 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
















          2












          2








          2







          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.






          share|improve this answer













          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.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          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





















          • 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






















          draft saved

          draft discarded




















































          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.




          draft saved


          draft discarded














          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





















































          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