Added another profile website as a project
This commit is contained in:
parent
931dd38cc9
commit
95894b2601
10
Visual Studio Code Projects/my-personal-website-1/server.py
Normal file
10
Visual Studio Code Projects/my-personal-website-1/server.py
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
from flask import Flask, render_template
|
||||||
|
|
||||||
|
app = Flask(__name__)
|
||||||
|
|
||||||
|
@app.route("/")
|
||||||
|
def home():
|
||||||
|
return render_template("index.html")
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
app.run(debug=True)
|
||||||
@ -10,10 +10,10 @@
|
|||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<!--[if lte IE 8]><script src="assets/js/html5shiv.js"></script><![endif]-->
|
<!--[if lte IE 8]><script src="assets/js/html5shiv.js"></script><![endif]-->
|
||||||
<link rel="stylesheet" href="assets/css/main.css" />
|
<link rel="stylesheet" href="/static/assets/css/main.css" />
|
||||||
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
|
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
|
||||||
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
|
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
|
||||||
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
|
<noscript><link rel="stylesheet" href="/static/assets/css/noscript.css" /></noscript>
|
||||||
</head>
|
</head>
|
||||||
<body class="is-loading">
|
<body class="is-loading">
|
||||||
|
|
||||||
@ -23,9 +23,9 @@
|
|||||||
<!-- Main -->
|
<!-- Main -->
|
||||||
<section id="main">
|
<section id="main">
|
||||||
<header>
|
<header>
|
||||||
<span class="avatar"><img src="images/avatar.jpg" alt="" /></span>
|
<span class="avatar"><img src="/static/images/avatar.jpg" alt="" /></span>
|
||||||
<h1>Jane Doe</h1>
|
<h1>Muhammad Rameen</h1>
|
||||||
<p>Senior Psychonautics Engineer</p>
|
<p>Learning Python Programming & web development</p>
|
||||||
</header>
|
</header>
|
||||||
<!--
|
<!--
|
||||||
<hr />
|
<hr />
|
||||||
@ -66,7 +66,7 @@
|
|||||||
-->
|
-->
|
||||||
<footer>
|
<footer>
|
||||||
<ul class="icons">
|
<ul class="icons">
|
||||||
<li><a href="#" class="fa-twitter">Twitter</a></li>
|
<li><a href="https://github.com/Arcron-ArchLinux" class="icon brands fa-github" target="_blank"><span class="label">Github</span></a></li>
|
||||||
<li><a href="#" class="fa-instagram">Instagram</a></li>
|
<li><a href="#" class="fa-instagram">Instagram</a></li>
|
||||||
<li><a href="#" class="fa-facebook">Facebook</a></li>
|
<li><a href="#" class="fa-facebook">Facebook</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -76,7 +76,7 @@
|
|||||||
<!-- Footer -->
|
<!-- Footer -->
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
<ul class="copyright">
|
<ul class="copyright">
|
||||||
<li>© Jane Doe</li>
|
<li>© Muhammad Rameen</li>
|
||||||
<li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
|
<li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user