diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-04-13 21:01:41 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-04-13 21:01:41 -0400 |
commit | 02ffa37f8607634e5e4eccba7ef25d4f48b29b3b (patch) | |
tree | 8f128055c90ad95145ac2aa3c125715bb01b726c | |
parent | c266efc7fc73f94995bffcdf8e0ef7a4aeb563c3 (diff) |
Catch an instance of "Arch Linux" in packages/details.html
-rw-r--r-- | templates/packages/details.html.jinja | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/packages/details.html.jinja b/templates/packages/details.html.jinja index 21be80f5..3632ecf0 100644 --- a/templates/packages/details.html.jinja +++ b/templates/packages/details.html.jinja @@ -69,7 +69,7 @@ <meta itemprop="fileSize" content="{{ pkg.compressed_size }}"/> <meta itemprop="dateCreated" content="{{ pkg.build_date|date("Y-m-d") }}"/> <meta itemprop="datePublished" content="{{ pkg.last_update|date("Y-m-d") }}"/> - <meta itemprop="operatingSystem" content="Arch Linux"/> + <meta itemprop="operatingSystem" content="{{ BRANDING_DISTRONAME }}"/> {% if pkg.packager %}<div style="display:none" itemprop="provider" itemscope itemtype="http://schema.org/Person"> <meta itemprop="name" content="{{ pkg.packager.get_full_name()|escape }}"/> </div>{% endif %} |