From d63f661b6c022861d0826735fd61925cb0ee1b57 Mon Sep 17 00:00:00 2001 From: Alexander Hosking Date: Wed, 13 Jul 2022 01:15:23 -0400 Subject: [PATCH] Add start of Gallery work --- project/build/gallery/index.html | 340 +++++++++++++++++++++++ project/build/index.html | 23 +- project/portfolio/routes.py | 8 +- project/portfolio/templates/gallery.html | 238 ++++++++++++++++ project/templates/base.html | 23 +- project/templates/gallery.html | 6 + 6 files changed, 614 insertions(+), 24 deletions(-) create mode 100644 project/build/gallery/index.html create mode 100644 project/portfolio/templates/gallery.html create mode 100644 project/templates/gallery.html diff --git a/project/build/gallery/index.html b/project/build/gallery/index.html new file mode 100644 index 0000000..85fd961 --- /dev/null +++ b/project/build/gallery/index.html @@ -0,0 +1,340 @@ + + + + + Studi-O Designs + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+
+
+
+
Working Hours Monday - Friday 08:00-16:00
+
Toll Free 1800.899.900
+ + + +
+
+
+
+ +
+
+
+ + + + + + + + + + + +
+ + +
+
+
+ + +
+ + + + + +
+ + + + +
+
+
+
+
+ We are team based in York Region. Our experience spans residential, commercial, office, and restaurant design. + We take pride in blending our aesthetic across a project scope to enable and provide projects that deliver beyond our clients expectations. +
+ +
+
+ +
    + +
+
+
+ +
+

Contact Us

+
+
+ York Region, Ontario, Canada + Phone:(647) 478-6951 + Email:design@studi-odesigns.com + Web:http://studi-odesigns.com +
+
+
+
+
+
+
+ + + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/project/build/index.html b/project/build/index.html index 2c56ffb..fd91078 100644 --- a/project/build/index.html +++ b/project/build/index.html @@ -80,13 +80,13 @@ - + - + + +
  • Gallery
  • + - --> + diff --git a/project/portfolio/routes.py b/project/portfolio/routes.py index 4a282de..3d31e4e 100644 --- a/project/portfolio/routes.py +++ b/project/portfolio/routes.py @@ -1,8 +1,12 @@ from . import portfolio_blueprint from flask import render_template, abort -portfolio_titles = ['Index'] +categories = ['residential', 'commercial', 'office', 'industrial'] @portfolio_blueprint.route('/') def index(): - return render_template('index.html') \ No newline at end of file + return render_template('index.html') + +@portfolio_blueprint.route('/gallery/') +def gallery(): + return render_template('gallery.html') \ No newline at end of file diff --git a/project/portfolio/templates/gallery.html b/project/portfolio/templates/gallery.html new file mode 100644 index 0000000..2a94e05 --- /dev/null +++ b/project/portfolio/templates/gallery.html @@ -0,0 +1,238 @@ +{% extends "gallery.html" %} + +{% block content %} + + +
    + +
    + + +
    + + + + +
    + Get Quotation +
    + + + + +
    + +{% endblock %} \ No newline at end of file diff --git a/project/templates/base.html b/project/templates/base.html index 27c19dd..be53596 100644 --- a/project/templates/base.html +++ b/project/templates/base.html @@ -80,13 +80,13 @@ - + - + + +
  • Gallery
  • + - --> + diff --git a/project/templates/gallery.html b/project/templates/gallery.html new file mode 100644 index 0000000..e5649a3 --- /dev/null +++ b/project/templates/gallery.html @@ -0,0 +1,6 @@ +{% extends "base.html" %} + +{% block content %} + + + {% endblock %} \ No newline at end of file