Skip to content

Commit

Permalink
Add info message about hosting transition (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajwalkiewicz authored Dec 20, 2023
1 parent 0ac7369 commit 156b93a
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 5 deletions.
16 changes: 16 additions & 0 deletions webapp/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,22 @@
</div>
</div>
</nav>

<!-- Transition Warning -->
<div class="container mt-3 mb-0 px-md-5">
<div class="alert alert-primary" role="alert">
<h3>Important</h3>
<p>
Cochar is under hosting transition. In case of any issue please
contact me on github:
<a href="https://github.com/ajwalkiewicz/cochar"
>https://github.com/ajwalkiewicz/cochar</a
>.
</p>
<p>Sorry for the inconvenience.</p>
</div>
</div>

{% block content %}{% endblock %}
<!-- Bootstrap -->
<script
Expand Down
15 changes: 10 additions & 5 deletions webapp/templates/generator.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,17 @@
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
{% extends "base.html" %} {% block title %}Cochar - Generator{% endblock %} {%
block custom_css %}
<link href="{{ url_for('static', filename='style.css') }}" rel="stylesheet" />
{% endblock %} {% block content %}
{% extends "base.html" %}

{% block title %}
Cochar - Generator
{% endblock %}

{% block custom_css %}
<link href="{{ url_for('static', filename='style.css') }}" rel="stylesheet" />
{% endblock %}

{% block content %}
<!-- The Modal -->
<div class="modal" id="myModal">
<div class="modal-dialog">
Expand Down Expand Up @@ -60,7 +65,7 @@ <h4 class="modal-title">Feature not implemented</h4>
<div class="row">
<!-- Generator Card -->
<div class="col-lg-4">
<div class="border rounded bg-light p-3 mt-3 mb-3">
<div class="border rounded bg-light p-3 mb-3">
<!-- Tabs -->
<ul class="nav nav-tabs nav-justified" role="tablist">
<li class="nav-item">
Expand Down

0 comments on commit 156b93a

Please sign in to comment.