55 lines
2.2 KiB
HTML
55 lines
2.2 KiB
HTML
{% extends "base_main.html" %}
|
|
{% comment %}
|
|
Barn Web App - A collection of web-apps for my family's personal use,
|
|
including a recipe database.
|
|
Copyright © 2023 Benjamin Stadlbauer
|
|
|
|
This program is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU Affero General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or (at
|
|
your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
General Public License for more details.
|
|
|
|
This program comes with a copy of the GNU Affero General Public License
|
|
file at the root of this project.
|
|
{% endcomment %}
|
|
{% load static %}
|
|
{% block title %}About The Barn{% endblock %}
|
|
{% block main %}
|
|
<h1>About The Barn</h1>
|
|
<h2>Background</h2>
|
|
<p>
|
|
The Barn is a web-based application which consists of several more or less unrelated modules. The author (Benjamin
|
|
Stadlbauer) is building this app to have some utility programs, like a recipe database, for his family and friends.
|
|
</p>
|
|
<h2>Acknowledgements</h2>
|
|
<p>
|
|
This is a <a href="https://www.djangoproject.com/">Django</a> project.
|
|
</p>
|
|
<h2>Version</h2>
|
|
<p>
|
|
This project is currently in its beta-phase.
|
|
</p>
|
|
<h2>Source code and contributing</h2>
|
|
<p>
|
|
You can find the source code of this project <a href="https://benjamin.stadlbauer.wien/git/Barn/django-project">on this
|
|
Forgejo repository</a>.
|
|
</p>
|
|
<h2>Appropriate Legal Notices</h2>
|
|
<p>
|
|
Copyright © 2023 Benjamin Stadlbauer
|
|
</p><p>
|
|
This program is free software: you can redistribute it and/or modify it under the terms of the
|
|
<a href="{% static 'agpl-3.0.txt' %}">GNU Affero General Public License</a> as published by the Free Software
|
|
Foundation, either version 3 of the License, or (at your option) any later version.
|
|
</p><p>
|
|
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
|
details.
|
|
</p>
|
|
{% endblock %}
|