diff options
author | Julien Dessaux | 2020-06-26 00:06:30 +0200 |
---|---|---|
committer | Julien Dessaux | 2020-06-26 00:06:30 +0200 |
commit | 0a8f9332b2ea3bfb903a951b5f753c0bc7ec4044 (patch) | |
tree | 8a29fb1882da46a6fae7f0f3b8a19cf29e4ea30b /content/en/blog/miscellaneous | |
parent | Fixed permissions (diff) | |
download | www-0a8f9332b2ea3bfb903a951b5f753c0bc7ec4044.tar.gz www-0a8f9332b2ea3bfb903a951b5f753c0bc7ec4044.tar.bz2 www-0a8f9332b2ea3bfb903a951b5f753c0bc7ec4044.zip |
Bump
Diffstat (limited to '')
-rw-r--r-- | content/en/blog/miscellaneous/osm-overlay-example.md | 19 | ||||
-rw-r--r-- | content/en/blog/miscellaneous/switching-to-hugo.md | 4 |
2 files changed, 23 insertions, 0 deletions
diff --git a/content/en/blog/miscellaneous/osm-overlay-example.md b/content/en/blog/miscellaneous/osm-overlay-example.md new file mode 100644 index 0000000..2787a6e --- /dev/null +++ b/content/en/blog/miscellaneous/osm-overlay-example.md @@ -0,0 +1,19 @@ +--- +title: "OpenStreetMap overlay example" +linkTitle: "OpenStreetMap overlay example" +date: 2020-05-19 +description: > + An example of how to query things visually on OpenStreetMap +--- + +http://overpass-turbo.eu/ +{{< highlight html >}} +<osm-script> + <query type="node"> + <has-kv k="amenity" v="recycling"/> + <bbox-query {{bbox}}/> + </query> + <!-- print results --> + <print mode="body"/> +</osm-script> +{{< /highlight >}} diff --git a/content/en/blog/miscellaneous/switching-to-hugo.md b/content/en/blog/miscellaneous/switching-to-hugo.md index 1bb0c43..7468667 100644 --- a/content/en/blog/miscellaneous/switching-to-hugo.md +++ b/content/en/blog/miscellaneous/switching-to-hugo.md @@ -5,3 +5,7 @@ date: 2019-12-19 description: > I switched my personal wiki from dokuwiki to Hugo --- + +This is the website you are currently reading. It is a static website built using hugo. This article details how I installed hugo, how I initialised this website and how I manage it. I often refer to it as wiki.adyxax.org because I hosted a unique dokuwiki for a long time as my main website (and a pmwiki before that), but with hugo it has become more than that. It is now a mix of wiki, blog and showcase of my work and interests. + +[Here is the link to the full article describing how I achieved that.]({{< relref "/docs/adyxax.org/services/www.md" >}}) |