mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 12:18:45 -05:00
31 lines
626 B
HTML
31 lines
626 B
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Offline" %}{% endblock %}
|
|
|
|
{% block extra_head %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div style="text-align: center">
|
|
|
|
<h1 class="">Offline</h1>
|
|
<br/>
|
|
|
|
<span>{% trans 'You are currently offline!' %}</span>
|
|
<span>{% trans 'This app does not (yet) support offline functionality. Please make sure to re-establish a network connection.' %}</span>
|
|
<br/>
|
|
<br/>
|
|
<i class="fas fa-search fa-8x"></i>
|
|
<br/>
|
|
<br/>
|
|
|
|
|
|
<br/>
|
|
<br/>
|
|
</div>
|
|
|
|
{% endblock %} |