Varia's website, varia.zone or vvvvvvaria.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
mb@mb 04c2824180 adding the 2 submodules again 6 years ago
..
Readme.md adding the 2 submodules again 6 years ago
__init__.py adding the 2 submodules again 6 years ago
content_objects.py adding the 2 submodules again 6 years ago
linker.py adding the 2 submodules again 6 years ago
mailto.py adding the 2 submodules again 6 years ago

Readme.md

Linker

This plugin allows to define custom linker commands in analogy to the builtin {filename}, {attach}, {category}, {tag}, {author}, and {index} syntax.

Provided commands (each of which in its own submodule)

{mailto}

Purpose: Helps to create mailto: links with javascript (JS) on top of a non-JS fallback.

  • How the HTML code is replaced step by step

    • your code in a content file (page or article):

      <a href="{mailto}webmaster" rel="nofollow">Send me a mail</a>
      
    • plugin replacement (after computing 'jroznfgre' = rot_13('webmaster')):

      <a href="/mailto/jroznfgre/" rel="nofollow">Send me a mail</a>
      
    • result of a JS-powered transform (which you could add):

      <a href="mailto:webmaster@example.com" rel="nofollow">Send me a mail</a>
      
    • As a fallback for users without JS, the static page mailto/jroznfgre/index.html is generated using the template mailto_fallback.

  • Usage instruction

    • activate nested {mailto} plugin using

      PLUGINS = ['linker.mailto']
      
    • provide the mailto_fallback template (accessing mailto which is injected into the template)

    • optionally, add some JS to improve the user experience as sketched above

Other included submodules

content_objects

This plugin collects all pelican.contents.Content instances in a set which can be accessed using context['content_objects'].