diff --git a/static/ayo-sm.png b/static/ayo-sm.png new file mode 100644 index 0000000..833f805 Binary files /dev/null and b/static/ayo-sm.png differ diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..edb0e4b Binary files /dev/null and b/static/favicon.ico differ diff --git a/templates/404.html b/templates/404.html new file mode 100644 index 0000000..26d1479 --- /dev/null +++ b/templates/404.html @@ -0,0 +1,456 @@ + + + + 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 index 9125fc3..c736b6c 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,22 +1,563 @@ - + + - Ayo Ayco + Ayo Ayco | Software Engineer, Web Developer, Consultant + + + + + + + + + + + + + + + + + + + + - -
-

Ayo Ayco

-
-
-

- + + +
+
+ Ayo Ayco's picture +
+

+ AyoAyco +

+ + + Now + Certified Software Architecture Professional + +
+
+
+
+
+ + +
- - diff --git a/templates/now.html b/templates/now.html new file mode 100644 index 0000000..5124c1a --- /dev/null +++ b/templates/now.html @@ -0,0 +1,485 @@ + + + + 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 new file mode 100644 index 0000000..eb56851 --- /dev/null +++ b/templates/showcase.html @@ -0,0 +1,439 @@ + + + + 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 new file mode 100644 index 0000000..6f68fcd --- /dev/null +++ b/templates/stuff.html @@ -0,0 +1,418 @@ + + + + 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 69e68ae..5178c7b 100755 --- a/web.py +++ b/web.py @@ -5,9 +5,19 @@ app = Flask(__name__) def home(): return render_template('index.html') -@app.route('/api') -def api(): - return 'API' +@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') + + if __name__ == '__main__': app.run(host='0.0.0.0')