Merge pull request #935 from jzelinskie/title
Template titles made more consistent
This commit is contained in:
commit
389c180303
4 changed files with 10 additions and 8 deletions
|
@ -1,12 +1,13 @@
|
||||||
{% extends "error.html" %}
|
{% extends "error.html" %}
|
||||||
|
|
||||||
{% block title %}
|
{% block title %}
|
||||||
<title>Quay.io - Page Not Found!</title>
|
<title>Page Not Found · Quay</title>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h3>The page doesn't exist !</h3>
|
<h3>The page you're looking for doesn't exist!</h3>
|
||||||
<h4>
|
<h4>
|
||||||
This is somewhat embarrassing, isn’t it ? It looks like nothing was found at this location. Please return to the <a href="/">main page</a>.
|
<p>This is somewhat embarrassing, isn’t it? It looks like there's nothing here.</p>
|
||||||
|
<p>You probably want to return to the <a href="/">main page</a>.</p>
|
||||||
</h4>
|
</h4>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -1,13 +1,14 @@
|
||||||
{% extends "error.html" %}
|
{% extends "error.html" %}
|
||||||
|
|
||||||
{% block title %}
|
{% block title %}
|
||||||
<title>Quay - Something went wrong!</title>
|
<title>Internal Error · Quay</title>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h3>Something went wrong on our end!</h3>
|
<h3>Something went wrong on our end!</h3>
|
||||||
<h4>
|
<h4>
|
||||||
We're currently working to fix the problem, but if its persists please feel free to <a href="/contact">contact us</a>. In the meantime, try a refreshing drink (or just refreshing).
|
<p><a href="javascript:history.back()">Head on back</a> and retry whatever it was you were doing.</p>
|
||||||
|
<p>If the issue persists and is blocking you from getting stuff done, <a href="/contact">contact us</a>.</p>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
<div style="margin-top: 20px">
|
<div style="margin-top: 20px">
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<html>
|
<html>
|
||||||
<title>Quay</title>
|
<title>OAuth Access Token · Quay</title>
|
||||||
<head>
|
<head>
|
||||||
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
|
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
|
||||||
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.no-icons.min.css">
|
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.no-icons.min.css">
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
{% block title %}
|
{% block title %}
|
||||||
<title ng-bind="title + ' · Quay'">Quay - Private Docker Repository</title>
|
<title ng-bind="title + ' · Quay'">Quay</title>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block added_meta %}
|
{% block added_meta %}
|
||||||
<base href="/">
|
<base href="/">
|
||||||
|
|
||||||
<meta id="descriptionTag" name="description" content="Hosted private docker repositories. Includes full user management and history. Free for public repositories."></meta>
|
<meta id="descriptionTag" name="description" content="Quay is the best place to build, store, and distribute your containers. Public repositories are always free."></meta>
|
||||||
<meta name="google-site-verification" content="GalDznToijTsHYmLjJvE4QaB9uk_IP16aaGDz5D75T4" />
|
<meta name="google-site-verification" content="GalDznToijTsHYmLjJvE4QaB9uk_IP16aaGDz5D75T4" />
|
||||||
<meta name="fragment" content="!" />
|
<meta name="fragment" content="!" />
|
||||||
<meta name="ac-discovery" content="{{ hostname }} {{ preferred_scheme }}://{{ hostname }}/c1/aci/{name}/{version}/{ext}/{os}/{arch}/">
|
<meta name="ac-discovery" content="{{ hostname }} {{ preferred_scheme }}://{{ hostname }}/c1/aci/{name}/{version}/{ext}/{os}/{arch}/">
|
||||||
|
|
Reference in a new issue