Skip to content

Commit 2c59dfa

Browse files
committed
Some HTML cleanup.
1 parent 29590e0 commit 2c59dfa

6 files changed

Lines changed: 36 additions & 4 deletions

File tree

extras/appengine/app.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ default_expiration: 7d # This is good for images, which never change
77

88
handlers:
99

10-
- url: /(robots.txt|favicon.ico)
10+
- url: /(robots.txt|favicon.ico|sitemap.xml)
1111
static_files: static/\1
12-
upload: static/(robots.txt|favicon.ico)
12+
upload: static/(robots.txt|favicon.ico|sitemap.xml)
1313

1414
- url: /google7a062e78b56854c0.html
1515
static_files: static/robots.txt
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<urlset
3+
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
6+
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
7+
<!-- created with Free Online Sitemap Generator www.xml-sitemaps.com -->
8+
9+
<url>
10+
<loc>http://sqlformat.appspot.com/</loc>
11+
<changefreq>monthly</changefreq>
12+
</url>
13+
<url>
14+
<loc>http://sqlformat.appspot.com/about/</loc>
15+
<changefreq>monthly</changefreq>
16+
</url>
17+
<url>
18+
<loc>http://sqlformat.appspot.com/source/</loc>
19+
<changefreq>monthly</changefreq>
20+
</url>
21+
<url>
22+
<loc>http://sqlformat.appspot.com/api/</loc>
23+
<changefreq>monthly</changefreq>
24+
</url>
25+
</urlset>

extras/appengine/templates/about.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{% extends "master.html" %}
22

3+
{% block title %}About{% endblock %}
4+
35
{% block main %}
46
<h1>About this Application</h1>
57
<p>

extras/appengine/templates/api.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{% extends "master.html" %}
22

3+
{% block title %}API{% endblock %}
4+
35
{% block main %}
46
<h1>API Documentation</h1>
57

extras/appengine/templates/master.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<html>
22
<head>
3-
<title>SQLFormat - Online SQL Formatting Service</title>
4-
<meta name="keywords" content="SQL, format, parse, python, beautify" />
3+
<title>{% block title %}SQLFormat - Online SQL Formatting Service{% endblock %}</title>
4+
<meta name="keywords" content="SQL, format, parse, python, beautify, pretty, online, formatting" />
5+
<meta name="description" content="Easy to use web service to format SQL statements online." />
56
<link rel="stylesheet" href="/static/pygments.css" />
67
<link rel="stylesheet" href="/static/styles.css" />
78
<script src="http://www.google.com/jsapi"></script>

extras/appengine/templates/source.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{% extends "master.html" %}
22

3+
{% block title %}Source code{% endblock %}
4+
35
{% block main %}
46
<div id="response">
57
<h1>Source Code</h1>

0 commit comments

Comments
 (0)