diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index e274363..0000000 Binary files a/.DS_Store and /dev/null differ diff --git a/.gitignore b/.gitignore index 0d20b64..0205d62 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ *.pyc +.DS_Store diff --git a/jeff_winkler/blank.html b/jeff_winkler/blank.html new file mode 100644 index 0000000..e69de29 diff --git a/jeff_winkler/flask_fund/hello.py b/jeff_winkler/flask_fund/hello.py new file mode 100644 index 0000000..df71956 --- /dev/null +++ b/jeff_winkler/flask_fund/hello.py @@ -0,0 +1,18 @@ +from flask import Flask, render_template, request, redirect # Import Flask to allow us to create our app. +app = Flask(__name__) # Global variable __name__ tells Flask whether or not we are running the file + +@app.route('/') +def index(): + return render_template('portfolio.html') + +@app.route('/about') +def about(): + return render_template('about.html') + +@app.route('/project') +def project(): + return render_template('project.html') + + + +app.run(debug=True) diff --git a/jeff_winkler/flask_fund/static/css/master.css b/jeff_winkler/flask_fund/static/css/master.css new file mode 100644 index 0000000..e69de29 diff --git a/jeff_winkler/flask_fund/templates/dojos.html b/jeff_winkler/flask_fund/templates/dojos.html new file mode 100644 index 0000000..e2d0277 --- /dev/null +++ b/jeff_winkler/flask_fund/templates/dojos.html @@ -0,0 +1,17 @@ + + + + + + + + Dojos + + + +
+ +
+ + + diff --git a/jeff_winkler/flask_fund/templates/index.html b/jeff_winkler/flask_fund/templates/index.html new file mode 100644 index 0000000..bece124 --- /dev/null +++ b/jeff_winkler/flask_fund/templates/index.html @@ -0,0 +1,17 @@ + + + + + + + + + Index + + + +

Greetings

+ + + + diff --git a/jeff_winkler/flask_fund/templates/ninja.html b/jeff_winkler/flask_fund/templates/ninja.html new file mode 100644 index 0000000..bb6cf5f --- /dev/null +++ b/jeff_winkler/flask_fund/templates/ninja.html @@ -0,0 +1,17 @@ + + + + + + + + Ninjas + + + +

Ninjas

+

A ninja or shinobi was a covert agent or mercenary in feudal Japan. The functions of the ninja included espionage, sabotage, infiltration, assassination and guerrilla warfare. Their covert methods of waging irregular warfare were deemed dishonorable and beneath the samurai-caste, who observed strict rules about honor and combat.

+ + + + diff --git a/jeff_winkler/landingpage.zip b/jeff_winkler/landingpage.zip new file mode 100644 index 0000000..addd199 Binary files /dev/null and b/jeff_winkler/landingpage.zip differ diff --git a/jeff_winkler/name.zip b/jeff_winkler/name.zip new file mode 100644 index 0000000..399fb89 Binary files /dev/null and b/jeff_winkler/name.zip differ