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 name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<!--[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 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>
|
||||
<body class="is-loading">
|
||||
|
||||
@ -23,9 +23,9 @@
|
||||
<!-- Main -->
|
||||
<section id="main">
|
||||
<header>
|
||||
<span class="avatar"><img src="images/avatar.jpg" alt="" /></span>
|
||||
<h1>Jane Doe</h1>
|
||||
<p>Senior Psychonautics Engineer</p>
|
||||
<span class="avatar"><img src="/static/images/avatar.jpg" alt="" /></span>
|
||||
<h1>Muhammad Rameen</h1>
|
||||
<p>Learning Python Programming & web development</p>
|
||||
</header>
|
||||
<!--
|
||||
<hr />
|
||||
@ -66,7 +66,7 @@
|
||||
-->
|
||||
<footer>
|
||||
<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-facebook">Facebook</a></li>
|
||||
</ul>
|
||||
@ -76,7 +76,7 @@
|
||||
<!-- Footer -->
|
||||
<footer id="footer">
|
||||
<ul class="copyright">
|
||||
<li>© Jane Doe</li>
|
||||
<li>© Muhammad Rameen</li>
|
||||
<li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
|
||||
</ul>
|
||||
</footer>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user