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
+ + + +
+
+
+
+ +
+
+
+ + + + + + + + + + + +
+ + +
+
+
+ + +
+ + + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ 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