-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add master template & remove utils/templates and tags
- Loading branch information
Showing
8 changed files
with
85 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{% load static %}<!DOCTYPE html> | ||
<html lang="en" class="view {% block view_class %}view--{{ request.resolver_match.namespaces|join:'-' }}-{{ request.resolver_match.url_name }}{% endblock %}"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>{% block title %}Open_Producten{% endblock %}</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link href="{% static 'ico/favicon.svg' %}" sizes="any" rel="icon" type="image/svg+xml" /> | ||
<link href="{% static 'ico/favicon-96x96.png' %}" sizes="96x96" rel="icon" type="image/png" /> | ||
<link href="{% static 'ico/favicon-32x32.png' %}" sizes="32x32" rel="icon" type="image/png" /> | ||
<link href="{% static 'ico/favicon.png' %}" sizes="16x16" rel="icon" type="image/png" /> | ||
<link href="{% static 'ico/favicon.png' %}" rel="shortcut icon"> | ||
{% block extra_css %}{% endblock %} | ||
</head> | ||
|
||
<body class="view__body"> | ||
<main> | ||
{% block content %} | ||
Override <code>{% verbatim %}{% block content %}{% endverbatim %}</code> | ||
to get some actual content. | ||
{% endblock %} | ||
</main> | ||
|
||
<footer class="footer container"> | ||
<div class="footer__row"> | ||
<div class="footer__col footer__col--small"> | ||
<img src="{% static 'ico/favicon-96x96.png' %}" alt="Maykin logo" height="48"> | ||
<p> | ||
Developed by <a class="link" href="https://www.maykinmedia.nl">Maykin</a><br> | ||
within the <a class="link" href="https://opengem.nl">Open Gemeente Initiatief</a> © 2024<br> | ||
|
||
</p> | ||
</div> | ||
<div class="footer__col"> | ||
<h5 class="footer__header">open_producten</h5> | ||
<ul class="footer__list"> | ||
<li><a class="link link--muted" href="https://hub.docker.com/r/maykinmedia/open-producten">Docker images</a></li> | ||
<li><a class="link link--muted" href="https://github.com/maykinmedia/open-producten">Code on Github</a></li> | ||
</ul> | ||
</div> | ||
<div class="footer__col"> | ||
<h5 class="footer__header">Other</h5> | ||
<ul class="footer__list"> | ||
<li>Report <a class="link link--muted" href="https://github.com/maykinmedia/open-producten/issues">issues</a> for questions, bugs or wishes</li> | ||
<li>Read more on <a class="link link--muted" href="https://commonground.nl/">Common Ground</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
|
||
<div class="footer__row"> | ||
<div class="footer__col"> | ||
<code>{{ settings.RELEASE }}</code> | ||
</div> | ||
<div class="footer__col footer__col--right"> | ||
<code>{{ settings.GIT_SHA|default:"" }}</code> | ||
</div> | ||
</div> | ||
</footer> | ||
|
||
{% if dsn %} | ||
<script src="https://browser.sentry-cdn.com/5.10.1/bundle.min.js" integrity="sha384-sAOze6ZTBIpiWBF3VlUteSInM4rYpjxrejp1wMmmKqA9clRZ1vZJ36Ihmt1ilTrG" crossorigin="anonymous"></script> | ||
<script>Sentry.init({ dsn: '{{ dsn }}'});</script> | ||
{% endif %} | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 0 additions & 11 deletions
11
src/open_producten/utils/templates/utils/includes/version_info.html
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.