Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
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 BIN -6 KB .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions 1 .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*.pyc
.DS_Store
Empty file added 0 jeff_winkler/blank.html
Empty file.
18 changes: 18 additions & 0 deletions 18 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 17 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 17 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 17 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 BIN +4.13 KB jeff_winkler/landingpage.zip
Binary file not shown.
Binary file added BIN +4.08 KB jeff_winkler/name.zip
Binary file not shown.
Morty Proxy This is a proxified and sanitized view of the page, visit original site.