Theming Guide ============= Pagure is built on Flask, and uses Jinja2 for templates. Pagure also includes the ability to apply different themes that control the look and feel of your pagure instance, or add or remove elements from the interface. Setting a theme --------------- The theme is set in the Pagure configuration file. The theme name is defined by the name of the directory in the /themes/ folder that contains the theme. For example to enable the theme that is used on Pagure.io, add the following line to your Pagure configuration: :: THEME = "pagureio" Theme contents -------------- A theme requires two directories (`templates` and `static`) in the directory that contains the theme. The only other required file is theme.html which is placed in the templates directory templates/ ~~~~~~~~~~ The `templates` directory is where pagure will look for the `theme.html` template. Additionally, if you wish to override any template in Pagure, place it in the theme templates/ directory, and pagure will use that template rather than the standard one. .. warning:: Take care when overriding templates, as any changes to Pagure upstream will need to be backported to your theme template override. static/ ~~~~~~~ The `static` directory contains all the static elements for the theme, including additional a favicon, images, Javascript, and CSS files. To reference a file in the theme static directory use the jinja2 tag `{{ url_for('theme.static', filename='filename')}}`. For example: :: templates/theme.html ~~~~~~~~~~~~~~~~~~~~ The theme.html file defines a subset of items in the Pagure interface that are commonly changed when creating a new theme. Theming is a new feature in Pagure, so this set is currently small, but please file issues or PRs against pagure with ideas of new items to include. The current items configurable in theme.html are: `masthead_class` variable ######################### A string of additional CSS class(es) to be added to the navbar element. This navbar element is the topbar in Pagure. For example: :: {% set masthead_class = "navbar-dark bg-dark" %} `site_title` variable ##################### A string containing the text to append at the end of the html title on every page on the site. Usage: :: {% set site_title = "Pagure" %} `projectstring(Bool:plural)` macro ################################## A macro that returns a string used to refer to Projects in Pagure The plural parameter informs if the string to be returned is the plural form. This macro is optional. Usage: :: {% macro projectstring(plural=False) -%} {% if plural %} Repositories {% else %} Repository {% endif %} {% endmacro -%} `projecticon` variable ###################### A string containing the name of the fontawesome icon to use for Projects. This variable is optional. Usage: :: {% set projecticon = "Package" %} `head_imports()` macro ###################### A Jinja macro that defines the additional items in the html head to be imported. The base templates do not include the bootstrap CSS, so this needs to be included in this macro in your theme. Additionally, include your favicon here, and a link to any additional CSS files your theme uses. Example: :: {% macro head_imports() %} {% endmacro %} `js_imports()` macro #################### A Jinja macro that defines the additional javascript files to be imported. The base templates do not include the bootstrap JS, so this needs to be included in this macro in your theme. Example: :: {% macro js_imports() %} {% endmacro %} `browseheader_message(select)` macro #################################### An optional Jinja macro that defines the welcome message that is shown above the tabs on the Browse Pages (Projects, Users, and Groups). The select parameter is a string with the name of the page being shown Example: :: {% macro browseheader_message(select) %} {% if select == 'projects' %}

Welcome to my Pagure

Pagure is an Open Source software code hosting system.

{% endif %} {% endmacro %} `footer()` macro ################ A Jinja macro that defines the footer of the Pagure site. Example: :: {% macro footer() %} {% endmacro %} `about_page()` macro ###################### A Jinja macro that defines the content of the About page (available at /about). You may want to replace the links to contact links for your own instance. Example: :: {% macro about_page() %}

About

This is an instance of Pagure, a git forge.

If you experience a bug or security concern, please submit an issue.

You may also post questions to the Pagure Development list by emailing: pagure-devel@lists.pagure.io or subscribe to the list.

Subscribe to announcements about Pagure.

{% endmacro %}