Browse Source

description, keywords

pull/7/head
Pēteris Caune 9 years ago
parent
commit
47a42ea2de
8 changed files with 17 additions and 7 deletions
  1. +1
    -0
      hc/front/views.py
  2. +0
    -1
      hc/settings.py
  3. +8
    -0
      static/css/style.css
  4. +4
    -2
      templates/base.html
  5. +1
    -1
      templates/front/about.html
  6. +1
    -1
      templates/front/docs.html
  7. +1
    -1
      templates/front/my_checks.html
  8. +1
    -1
      templates/front/pricing.html

+ 1
- 0
hc/front/views.py View File

@ -26,6 +26,7 @@ def _welcome(request):
timer_formatted = "Never" timer_formatted = "Never"
ctx = { ctx = {
"page": "welcome",
"check": check, "check": check,
"timer": timer, "timer": timer,
"timer_formatted": timer_formatted, "timer_formatted": timer_formatted,


+ 0
- 1
hc/settings.py View File

@ -15,7 +15,6 @@ import warnings
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
HOST = "localhost" HOST = "localhost"
SECRET_KEY = "---" SECRET_KEY = "---"
DEBUG = True DEBUG = True


+ 8
- 0
static/css/style.css View File

@ -69,6 +69,10 @@ body {
margin-top: 4em; margin-top: 4em;
} }
#welcome-status th {
border-top: 0;
}
.welcome-browser-controls { .welcome-browser-controls {
text-align: right; text-align: right;
} }
@ -113,6 +117,10 @@ table.table tr > th.th-name {
text-align: center; text-align: center;
} }
#checks-table th {
border-top: 0;
}
#checks-table td { #checks-table td {
vertical-align: middle; vertical-align: middle;
} }


+ 4
- 2
templates/base.html View File

@ -2,7 +2,9 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>{% block title %}Healthchecks - Get Notified When Your Cron Jobs Fail{% endblock %}</title>
<title>{% block title %}healthchecks.io - Get Notified When Your Cron Jobs Fail{% endblock %}</title>
<meta name="description" content="Get Notified When Your Cron Jobs Fail. Free alternative to Cronitor and Dead Man's Snitch.">
<meta name="keywords" content="monitor cron jobs daemon background worker service cronjob monitoring crontab alert notify cronitor deadmanssnitch">
{% load staticfiles %} {% load staticfiles %}
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600' rel='stylesheet' type='text/css'> <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600' rel='stylesheet' type='text/css'>
@ -58,7 +60,7 @@
<footer class="footer"> <footer class="footer">
<div class="container"> <div class="container">
&copy; 2015 Monkey See Monkey Do
&copy; 2015 Monkey See Monkey Do SIA
</div> </div>
</footer> </footer>


+ 1
- 1
templates/front/about.html View File

@ -1,7 +1,7 @@
{% extends "base.html" %} {% extends "base.html" %}
{% load staticfiles %} {% load staticfiles %}
{% block title %}About - Healthchecks{% endblock %}
{% block title %}About - healthchecks.io{% endblock %}
{% block content %} {% block content %}
<div class="row"> <div class="row">


+ 1
- 1
templates/front/docs.html View File

@ -1,7 +1,7 @@
{% extends "base.html" %} {% extends "base.html" %}
{% load staticfiles %} {% load staticfiles %}
{% block title %}Documentation - Healthchecks{% endblock %}
{% block title %}Documentation - healthchecks.io{% endblock %}
{% block content %} {% block content %}
<div class="row"> <div class="row">


+ 1
- 1
templates/front/my_checks.html View File

@ -1,7 +1,7 @@
{% extends "base.html" %} {% extends "base.html" %}
{% load humanize staticfiles %} {% load humanize staticfiles %}
{% block title %}My Checks - Healthchecks{% endblock %}
{% block title %}My Checks - healthchecks.io{% endblock %}
{% block content %} {% block content %}


+ 1
- 1
templates/front/pricing.html View File

@ -1,7 +1,7 @@
{% extends "base.html" %} {% extends "base.html" %}
{% load staticfiles %} {% load staticfiles %}
{% block title %}Pricing - It's Free! - Healthchecks{% endblock %}
{% block title %}Pricing - It's Free! - healthchecks.io{% endblock %}
{% block content %} {% block content %}


Loading…
Cancel
Save