diff --git a/app.py b/app.py index 89aa68c..7a0c2d4 100644 --- a/app.py +++ b/app.py @@ -6,6 +6,18 @@ def index(): return render_template("index.html") +@app.route('/about.html') +def about(): + return render_template("about.html"); + +@app.route('/team.html') +def team(): + return render_template("team.html"); + +@app.route('/journey.html') +def journey(): + return render_template("journey.html"); + @app.route('/registration', methods=['GET', 'POST']) def send(): if request.method == 'POST': @@ -35,5 +47,6 @@ def send(): return render_template("registration.html") return render_template("index.html") + if __name__ == "__main__": app.run(debug=True) diff --git a/static/css/.Rhistory b/static/css/.Rhistory deleted file mode 100644 index e69de29..0000000 diff --git a/templates/team/team.css b/static/css/team.css similarity index 100% rename from templates/team/team.css rename to static/css/team.css diff --git a/static/images/GlugHeader.jpg b/static/images/GlugHeader.jpg deleted file mode 100644 index f85f748..0000000 Binary files a/static/images/GlugHeader.jpg and /dev/null differ diff --git a/templates/team/images/icons/Github.png b/static/images/icons/Github.png similarity index 100% rename from templates/team/images/icons/Github.png rename to static/images/icons/Github.png diff --git a/templates/team/images/icons/Gmail.png b/static/images/icons/Gmail.png similarity index 100% rename from templates/team/images/icons/Gmail.png rename to static/images/icons/Gmail.png diff --git a/templates/team/images/icons/fb.png b/static/images/icons/fb.png similarity index 100% rename from templates/team/images/icons/fb.png rename to static/images/icons/fb.png diff --git a/templates/team/images/icons/linkedin.png b/static/images/icons/linkedin.png similarity index 100% rename from templates/team/images/icons/linkedin.png rename to static/images/icons/linkedin.png diff --git a/templates/team/images/members/cmvs.jpg b/static/images/members/cmvs.jpg similarity index 100% rename from templates/team/images/members/cmvs.jpg rename to static/images/members/cmvs.jpg diff --git a/templates/team/images/members/hks.jpg b/static/images/members/hks.jpg similarity index 100% rename from templates/team/images/members/hks.jpg rename to static/images/members/hks.jpg diff --git a/templates/team/images/members/kvd.jpg b/static/images/members/kvd.jpg similarity index 100% rename from templates/team/images/members/kvd.jpg rename to static/images/members/kvd.jpg diff --git a/templates/team/images/members/pkn.jpg b/static/images/members/pkn.jpg similarity index 100% rename from templates/team/images/members/pkn.jpg rename to static/images/members/pkn.jpg diff --git a/static/images/members/vhr.jpg b/static/images/members/vhr.jpg new file mode 100644 index 0000000..efeec3d Binary files /dev/null and b/static/images/members/vhr.jpg differ diff --git a/static/images/session1.jpg b/static/images/session1.jpg index c14d2f2..fb74f10 100644 Binary files a/static/images/session1.jpg and b/static/images/session1.jpg differ diff --git a/static/images/session2.jpg b/static/images/session2.jpg index fb74f10..c14d2f2 100644 Binary files a/static/images/session2.jpg and b/static/images/session2.jpg differ diff --git a/static/js/jscript.js b/static/js/jscript.js index 4e8dffe..a26c90b 100644 --- a/static/js/jscript.js +++ b/static/js/jscript.js @@ -15,5 +15,5 @@ function showSlides() { } slides[slideIndex-1].style.display = "block"; dots[slideIndex-1].className += " active"; - setTimeout(showSlides, 5000); -} + setTimeout(showSlides, 3000); +} \ No newline at end of file diff --git a/templates/about/about.html b/templates/about.html similarity index 69% rename from templates/about/about.html rename to templates/about.html index 314fc19..29b8f5a 100644 --- a/templates/about/about.html +++ b/templates/about.html @@ -2,17 +2,16 @@