diff --git a/geocode/py.typed b/geocode/py.typed
new file mode 100644
index 0000000..e69de29
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..f3fd3e5
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+ {% block link %}{% endblock %}
+
+
+ {% block title %}{% endblock %}
+
+
+ {% block style %}{% endblock %}
+
+
+
+ {% block content %}{% endblock %}
+ {% block script %}{% endblock %}
+
+
diff --git a/templates/sparql/lookup_by_name.sparql b/templates/sparql/lookup_by_name.sparql
index 3f6afc4..39dc30c 100644
--- a/templates/sparql/lookup_by_name.sparql
+++ b/templates/sparql/lookup_by_name.sparql
@@ -1,5 +1,5 @@
SELECT DISTINCT ?item ?itemLabel ?commonsSiteLink ?commonsCat WHERE {
- ?item rdfs:label {{ name }}@en .
+ { ?item rdfs:label {{ name }}@en } UNION { ?item skos:altLabel {{ name }}@en }
FILTER NOT EXISTS { ?item wdt:P31 wd:Q17362920 } .# ignore Wikimedia duplicated page
OPTIONAL { ?commonsSiteLink schema:about ?item ;
schema:isPartOf }