diff --git a/stuff/AnyConv.com__points.kml b/stuff/AnyConv.com__points.kml deleted file mode 100644 index ed37d06..0000000 --- a/stuff/AnyConv.com__points.kml +++ /dev/null @@ -1,86 +0,0 @@ - - - - - Waypoints - - Testing - - 9.195427,45.480224 - - - - Testing - - 9.211414,45.479559 - - - - Testing - - 9.203267,45.470044 - - - - Testing - - 9.191543,45.475358 - - - - Testing - - 9.208902,45.474596 - - - - Testing - - 9.214803,45.478549 - - - - Testing - - 9.210735,45.468963 - - - - Testing - - 9.194717,45.476398 - - - - Testing - - 9.200197,45.475918 - - - - Testing - - 9.214712,45.479553 - - - - Testing - - 9.208935,45.477010 - - - - Testing - - 9.197640,45.481823 - - - - Testing - - 9.212113,45.475774 - - - - - diff --git a/stuff/gpx.py b/stuff/gpx.py deleted file mode 100644 index 39a1439..0000000 --- a/stuff/gpx.py +++ /dev/null @@ -1,29 +0,0 @@ -import gpxpy - -coordinates = [ - (45.48022428207604,9.195426779729253), - (45.47955920386783,9.211414017521326), - (45.47004427949249,9.203266840037728), - (45.475357889920666,9.191542629685118), - (45.47459610057904,9.208902213194566), - (45.478548651650364,9.214803404483442), - (45.46896260077224,9.210735083849189), - (45.476397626274775,9.194716709512006), - (45.475918164099824,9.200196924291388), - (45.479553171431604,9.21471213487326), - (45.47701013861511,9.208935252810576), - (45.48182315628131,9.197640483441692), - (45.47577401244318,9.212112575183651) -] - -gpx = gpxpy.gpx.GPX() - -for coord in coordinates: - lat, lon = coord - w = gpxpy.gpx.GPXWaypoint() - w.latitude = lat - w.longitude = lon - w.name = "Testing" - gpx.waypoints.append(w) - -print(gpx.to_xml()) \ No newline at end of file diff --git a/stuff/index.html b/stuff/index.html deleted file mode 100644 index 9a7d741..0000000 --- a/stuff/index.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - NFC Map - - - - - - - - - - -
- - - diff --git a/stuff/map.css b/stuff/map.css deleted file mode 100644 index 8d51734..0000000 --- a/stuff/map.css +++ /dev/null @@ -1,9 +0,0 @@ -html, body { - height: 100%; - margin: 0; - padding: 0; -} - -#map { - height: 100%; - width: 100vw; } \ No newline at end of file diff --git a/stuff/points.gpx b/stuff/points.gpx deleted file mode 100644 index 42a7212..0000000 --- a/stuff/points.gpx +++ /dev/null @@ -1,42 +0,0 @@ - - - - Testing - - - Testing - - - Testing - - - Testing - - - Testing - - - Testing - - - Testing - - - Testing - - - Testing - - - Testing - - - Testing - - - Testing - - - Testing - - \ No newline at end of file diff --git a/stuff/random.txt b/stuff/random.txt deleted file mode 100644 index 1de8f1c..0000000 --- a/stuff/random.txt +++ /dev/null @@ -1 +0,0 @@ -ba12997c8d7dd935d7891d053698369a106e84f9f8ad0ba87b242bff2d4162d1f91d404b571144a588831c018fb761843b9330179082935bab75361cdabfe565fe91fa63c03be7607b9a1761335c1e5dc42d4acb17b28a993df752cf6e6dda357ba2d7d404f1a4f1c984ab7467820252d4570c8d35fd4109c2dd376b988b9c05786867d0b0a46c011aa6f8656360927e07b0f4f350b147e92cf9da36e99f93594974db19a71a27f9ed3dc98979c328b33e9c0f042e758cd190821389a6be722f4d0feb297eb \ No newline at end of file diff --git a/web/publishconf.py b/web/publishconf.py index be3909b..21bf571 100644 --- a/web/publishconf.py +++ b/web/publishconf.py @@ -7,12 +7,9 @@ sys.path.append(os.curdir) from pelicanconf import * # If your site is available via HTTPS, make sure SITEURL begins with https:// -SITEURL = '' +SITEURL = 'https://nfc.flux.vision' RELATIVE_URLS = False -FEED_ALL_ATOM = 'feeds/all.atom.xml' -CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml' - DELETE_OUTPUT_DIRECTORY = True # Following items are often useful when publishing