Skip to content

Commit

Permalink
Merge pull request #897 from scidsg/meta-info
Browse files Browse the repository at this point in the history
Dynamic Meta Info
  • Loading branch information
glenn-sorrentino authored Feb 3, 2025
2 parents a294da9 + bfc5166 commit e0e9738
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions hushline/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<meta name="theme-color" content="{{ brand_primary_color }}" id="theme-color" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta property="og:title" content="Hush Line" />
<meta property="og:title" content="{{ brand_name }}" />
<meta
property="og:description"
content="An open-source whistleblowing platform for organizations and individuals."
Expand All @@ -15,8 +15,7 @@
content="https://hushline.app/assets/img/social/social.png"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@scidsg" />
<meta name="twitter:title" content="Hush Line" />
<meta name="twitter:title" content="{{ brand_name }}" />
<meta
name="twitter:description"
content="An open-source whistleblowing platform for organizations and individuals."
Expand All @@ -25,7 +24,7 @@
name="twitter:image"
content="https://hushline.app/assets/img/social/social.png"
/>
<title>{% block title %}{% endblock %} - Hush Line</title>
<title>{% block title %}{% endblock %} - {{ brand_name }}</title>
{% if brand_logo_url %}
<link rel="icon" type="image/png" href="/assets/public/brand/logo.png" />
{% else %}
Expand Down
2 changes: 1 addition & 1 deletion hushline/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.84"
__version__ = "0.3.85"

0 comments on commit e0e9738

Please sign in to comment.