diff --git a/static/ayo-sm.png b/static/ayo-sm.png deleted file mode 100644 index 833f805..0000000 Binary files a/static/ayo-sm.png and /dev/null differ diff --git a/static/favicon.ico b/static/favicon.ico deleted file mode 100644 index edb0e4b..0000000 Binary files a/static/favicon.ico and /dev/null differ diff --git a/templates/404.html b/templates/404.html deleted file mode 100644 index d9bf024..0000000 --- a/templates/404.html +++ /dev/null @@ -1,455 +0,0 @@ - - - - Not Found - - - - - - - - - - - - - - - - - - - - - - - -
-
-

- NotFound -

-

- I tried my best, but the resource you are looking for is not in the - website. -

-
-
-
-
-

Don't worry 🤗

-

- For your convenience, here are some possibly interesting links: -

-
    -
  1. - Let's get you back home -
  2. -
  3. - Now: What am I currently up to? -
  4. -
  5. - Social / Microblog -
  6. -
  7. - Fun Side Projects -
  8. -
-

- If you still feel this is a mistake that I can fix on my end, please - feel free to email me: ayo[at]ayco.io -

- -
-
- - diff --git a/templates/index.html b/templates/index.html deleted file mode 100644 index 00d9577..0000000 --- a/templates/index.html +++ /dev/null @@ -1,562 +0,0 @@ - - - - Ayo Ayco | Software Engineer, Web Developer, Consultant - - - - - - - - - - - - - - - - - - - - - - -
-
- Ayo Ayco's picture -
-

- AyoAyco -

- - - Now - Certified Software Architecture Professional - -
-
-
-
-
- - -
-
- - diff --git a/templates/now.html b/templates/now.html deleted file mode 100644 index 55d2637..0000000 --- a/templates/now.html +++ /dev/null @@ -1,484 +0,0 @@ - - - - Now - - - - - - - - - - - - - - - - - - - - - - - -
-

- Now -

- What am I currently up to? -

- 🎉 Thrilled to share I am now a Certified Professional for Software - Architecture (CPSA-F®) after having completed and passed the - iSAQB® – International Software Architecture Qualification Board's intensive training and examination. -

-

- This means I have the necessary basis for facilitating / participating - in architectural design activities for software development. -

-

- Having a consistent language in Software Architecture is beneficial when - communicating with stakeholders and clarifying consistent patterns and - principles that guide the development of software products. -

- -
- About now pages - -
- - diff --git a/templates/showcase.html b/templates/showcase.html deleted file mode 100644 index 82e6efb..0000000 --- a/templates/showcase.html +++ /dev/null @@ -1,438 +0,0 @@ - - - - Fun Side Projects - - - - - - - - - - - - - - - - - - - - - - - -
-

- Fun - Side Projects -

-

- See more of my previous projects at - my blog. -

- - -
- - diff --git a/templates/stuff.html b/templates/stuff.html deleted file mode 100644 index fbfab8b..0000000 --- a/templates/stuff.html +++ /dev/null @@ -1,417 +0,0 @@ - - - - Stuff: Smaller Building Blocks - - - - - - - - - - - - - - - - - - - - - - - -
-

Stuff

-

- Because software is not just a huge pile of code, but a combination of - small, reusable stuff... -

- - -
- - diff --git a/web.py b/web.py index 5178c7b..66cb3ae 100755 --- a/web.py +++ b/web.py @@ -1,23 +1,13 @@ -from flask import Flask, render_template +from flask import Flask, send_from_directory app = Flask(__name__) @app.route('/') def home(): - return render_template('index.html') - -@app.route('/showcase') -def showcase(): - return render_template('showcase.html') - -@app.route('/stuff') -def stuff(): - return render_template('stuff.html') - -@app.route('/now') -def now(): - return render_template('now.html') - + return send_from_directory('dist', 'index.html') +@app.route('/') +def dist(path): + return send_from_directory('dist', path) if __name__ == '__main__': app.run(host='0.0.0.0')