From 23ecf18de76e8ef873acac89923232987366c7a9 Mon Sep 17 00:00:00 2001 From: Emile Date: Mon, 25 Feb 2019 23:56:29 +0100 Subject: updated the file structure --- .idea/workspace.xml | 93 ++++---- src/about.html | 137 ----------- src/contact.html | 104 --------- src/css/bootstrap.min.css | 7 - src/css/custom.css | 181 --------------- src/css/small-business.css | 15 -- src/favicon.ico | Bin 1150 -> 0 bytes src/go.mod | 2 + src/go.sum | 2 + src/images/barnes-hut-full.png | Bin 65060 -> 0 bytes src/images/code_sample_200x250.png | Bin 17112 -> 0 bytes src/images/database_sample_200x250.png | Bin 7005 -> 0 bytes src/images/example_boxes_750x450.png | Bin 22004 -> 0 bytes src/images/example_image_cropped_200x250.png | Bin 40376 -> 0 bytes src/images/example_image_cropped_900x400.png | Bin 313574 -> 0 bytes src/images/generator_sample_200x250.png | Bin 95263 -> 0 bytes src/images/grafana_sample_200x250.png | Bin 8501 -> 0 bytes src/images/manager_sample_200x250.png | Bin 8050 -> 0 bytes src/images/pointcloud_400x600.png | Bin 136158 -> 0 bytes src/images/pointcloud_400x800.png | Bin 143246 -> 0 bytes src/images/simulator_sample_200x250.png | Bin 13762 -> 0 bytes src/images/traefik_sample_200x250.png | Bin 10344 -> 0 bytes src/images/view_sample_200x250.png | Bin 41804 -> 0 bytes src/images/writeup_sample_200x250.png | Bin 7609 -> 0 bytes src/index.html | 255 --------------------- src/main.go | 20 +- src/static/.contact.html.swp | Bin 0 -> 12288 bytes src/static/about.html | 137 +++++++++++ src/static/contact.html | 104 +++++++++ src/static/css/bootstrap.min.css | 7 + src/static/css/custom.css | 181 +++++++++++++++ src/static/css/small-business.css | 15 ++ src/static/favicon.ico | Bin 0 -> 1150 bytes src/static/images/barnes-hut-full.png | Bin 0 -> 65060 bytes src/static/images/code_sample_200x250.png | Bin 0 -> 17112 bytes src/static/images/database_sample_200x250.png | Bin 0 -> 7005 bytes src/static/images/example_boxes_750x450.png | Bin 0 -> 22004 bytes .../images/example_image_cropped_200x250.png | Bin 0 -> 40376 bytes .../images/example_image_cropped_900x400.png | Bin 0 -> 313574 bytes src/static/images/generator_sample_200x250.png | Bin 0 -> 95263 bytes src/static/images/grafana_sample_200x250.png | Bin 0 -> 8501 bytes src/static/images/manager_sample_200x250.png | Bin 0 -> 8050 bytes src/static/images/pointcloud_400x600.png | Bin 0 -> 136158 bytes src/static/images/pointcloud_400x800.png | Bin 0 -> 143246 bytes src/static/images/simulator_sample_200x250.png | Bin 0 -> 13762 bytes src/static/images/traefik_sample_200x250.png | Bin 0 -> 10344 bytes src/static/images/view_sample_200x250.png | Bin 0 -> 41804 bytes src/static/images/writeup_sample_200x250.png | Bin 0 -> 7609 bytes src/static/index.html | 255 +++++++++++++++++++++ 49 files changed, 761 insertions(+), 754 deletions(-) delete mode 100644 src/about.html delete mode 100644 src/contact.html delete mode 100644 src/css/bootstrap.min.css delete mode 100644 src/css/custom.css delete mode 100644 src/css/small-business.css delete mode 100644 src/favicon.ico create mode 100644 src/go.sum delete mode 100644 src/images/barnes-hut-full.png delete mode 100644 src/images/code_sample_200x250.png delete mode 100644 src/images/database_sample_200x250.png delete mode 100644 src/images/example_boxes_750x450.png delete mode 100644 src/images/example_image_cropped_200x250.png delete mode 100644 src/images/example_image_cropped_900x400.png delete mode 100644 src/images/generator_sample_200x250.png delete mode 100644 src/images/grafana_sample_200x250.png delete mode 100644 src/images/manager_sample_200x250.png delete mode 100644 src/images/pointcloud_400x600.png delete mode 100644 src/images/pointcloud_400x800.png delete mode 100644 src/images/simulator_sample_200x250.png delete mode 100644 src/images/traefik_sample_200x250.png delete mode 100644 src/images/view_sample_200x250.png delete mode 100644 src/images/writeup_sample_200x250.png delete mode 100644 src/index.html create mode 100644 src/static/.contact.html.swp create mode 100644 src/static/about.html create mode 100644 src/static/contact.html create mode 100644 src/static/css/bootstrap.min.css create mode 100644 src/static/css/custom.css create mode 100644 src/static/css/small-business.css create mode 100644 src/static/favicon.ico create mode 100644 src/static/images/barnes-hut-full.png create mode 100644 src/static/images/code_sample_200x250.png create mode 100644 src/static/images/database_sample_200x250.png create mode 100644 src/static/images/example_boxes_750x450.png create mode 100644 src/static/images/example_image_cropped_200x250.png create mode 100644 src/static/images/example_image_cropped_900x400.png create mode 100644 src/static/images/generator_sample_200x250.png create mode 100644 src/static/images/grafana_sample_200x250.png create mode 100644 src/static/images/manager_sample_200x250.png create mode 100644 src/static/images/pointcloud_400x600.png create mode 100644 src/static/images/pointcloud_400x800.png create mode 100644 src/static/images/simulator_sample_200x250.png create mode 100644 src/static/images/traefik_sample_200x250.png create mode 100644 src/static/images/view_sample_200x250.png create mode 100644 src/static/images/writeup_sample_200x250.png create mode 100644 src/static/index.html diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 37b33ed..9c6ccd0 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,10 +1,8 @@ - + - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -48,34 +63,7 @@ - - - - - - - - - - - - - - - - - - - - - - - - - -