Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*.pyc
.DS_Store
Empty file added jeff_winkler/blank.html
Empty file.
18 changes: 18 additions & 0 deletions jeff_winkler/flask_fund/hello.py
Original file line number Diff line number Diff line change
@@ -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)
Empty file.
17 changes: 17 additions & 0 deletions jeff_winkler/flask_fund/templates/dojos.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Dojos</title>
</head>

<body>
<form class="" action="" method="post">

</form>
</body>

</html>
17 changes: 17 additions & 0 deletions jeff_winkler/flask_fund/templates/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="static/css/master.css">
<title>Index</title>
</head>

<body>
<h1>Greetings</h1>

</body>

</html>
17 changes: 17 additions & 0 deletions jeff_winkler/flask_fund/templates/ninja.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="static/css/master.css">
<title>Ninjas</title>
</head>
<body>

<h1>Ninjas</h1>
<p>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.</p>


</body>
</html>
Binary file added jeff_winkler/landingpage.zip
Binary file not shown.
Binary file added jeff_winkler/name.zip
Binary file not shown.