diff --git a/Resources/Output/Example_Post.html b/Resources/Output/Example_Post.html
index c3a1849..5ad198d 100644
--- a/Resources/Output/Example_Post.html
+++ b/Resources/Output/Example_Post.html
@@ -36,7 +36,7 @@
One last thing
...
moomin
-
+
diff --git a/Resources/Static/LandingPageWireframe.html b/Resources/Static/LandingPageWireframe.html
deleted file mode 100644
index 2325816..0000000
--- a/Resources/Static/LandingPageWireframe.html
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-
-
-
-
-
- Welcome!
-
-
- I'm Rosia Evans, this is my site where I log my work for myself and for me to show to
- others.
-
-
-
- I'm currently studying at a small university in wales where I'm doing a BEng in
- software engineering whilst working on robotics and exploring my own interests
- on the side through various societies. I've previously had interests in VR and XR
- and UI design, spending a lot of my secondary school years experimenting with both
- concepts.
-
-
-
- See more about my work here:
-
-
-
-
-
-
-
-
-
diff --git a/Src/blog.cpp b/Src/blog.cpp
index 3ab6427..109ef0a 100644
--- a/Src/blog.cpp
+++ b/Src/blog.cpp
@@ -37,7 +37,9 @@ std::string getArg(int argc, char* argv[], std::string argIdString)
void copyFolderAndContents(std::string inUrl, std::string outUrl)
{
- std::filesystem::copy(inUrl, outUrl, std::filesystem::copy_options::recursive);
+ std::filesystem::copy_options opts = std::filesystem::copy_options::update_existing |
+ std::filesystem::copy_options::recursive;
+ std::filesystem::copy(inUrl, outUrl, opts);
}
/*
@@ -65,3 +67,4 @@ int main(int argc, char* argv[])
// TODO: get images and resources moved across to output
// TODO: nav sections :eww:
// TODO: copy static pages over
+// TODO: code doesnt copy moomin
diff --git a/build/.cache/clangd/index/MacroDefinitions.h.02EF76F9EA116331.idx b/build/.cache/clangd/index/MacroDefinitions.h.02EF76F9EA116331.idx
index 36f2ec3..c11f865 100644
Binary files a/build/.cache/clangd/index/MacroDefinitions.h.02EF76F9EA116331.idx and b/build/.cache/clangd/index/MacroDefinitions.h.02EF76F9EA116331.idx differ