File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -61,3 +61,4 @@ build_armhf: false
6161image_provenance : true
6262image_sbom : true
6363image_builder : ' container'
64+ project_categories : " "
Original file line number Diff line number Diff line change 44{% - set has_latest = true if (development_versions == true and 'latest' in (development_versions_items | map (attribute ="tag" ))) or (development_versions == false ) else false -%}
55---
66title: {{ project_name }}
7+ {% if project_categories %}
8+ tags:
9+ {% for tag in project_categories .split ("," ) %}
10+ - {{ tag | title }}
11+ {% endfor %}
12+ {% endif %}
13+ description: "{{ noter(project_blurb) | trim }}"
714---
815{% include "README_SNIPPETS/DO_NOT_EDIT.j2" | trim %}
916{% if project_deprecation_status %}
Original file line number Diff line number Diff line change 22{% from 'common_macros.j2' import noter with context %}
33---
44title: {{ project_name }}
5+ {% if project_categories is defined and project_blurb is defined %}
6+ {% if project_categories and project_blurb %}
7+ tags:
8+ {% for tag in project_categories.split(",") %}
9+ - {{ tag | title }}
10+ {% endfor %}
11+ description: "{{ noter(project_blurb) | trim }}"
12+ {% endif %}
13+ {% endif %}
514---
615{% include "README_SNIPPETS/DO_NOT_EDIT.j2" | trim %}
716
You can’t perform that action at this time.
0 commit comments