Created
April 29, 2012 14:14
-
-
Save Bentley4/2550655 to your computer and use it in GitHub Desktop.
flaskwp1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import flask | |
app = flask.Flask('flaskwp1') | |
webcode = open('webcode.html').read() | |
@app.route('/') | |
def webprint(): | |
return webcode | |
if __name__ == '__main__': | |
app.run(host = '0.0.0.0', port = 3000) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<link rel="stylesheet" type="text/css" href="webcodestyle.css"/> | |
<style type="text/css"> h1 {color: red;}</style> | |
</head> | |
<body> | |
<h1>My First Heading</h1> | |
<p>My first paragraph.</p> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p {color: green;} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment