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
6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 0 additions & 7 deletions A11200/readme.md

This file was deleted.

1 change: 0 additions & 1 deletion A14365/readme.md

This file was deleted.

3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@

A14365-野奔
我是野奔,工作党,大家多多关照哟

A10355-新欢
我是新欢,工作党,python初学者
12 changes: 12 additions & 0 deletions Teamwork/readme.md
Original file line number Diff line number Diff line change
@@ -1 +1,13 @@
# uband-S2-Wind-teamwork

uband友班编程作业

## 背景

## 需求

## 发布

## 其他

## 参考资料
15 changes: 15 additions & 0 deletions Teamwork/run.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from flask import Flask
from flask import render_template

app = Flask(__name__)

@app.route('/')
def hello_world():
return render_template('index.html')

@app.route('/details')
def details():
return render_template('index.html')

if __name__ == '__main__':
app.run(debug=True)
17 changes: 17 additions & 0 deletions Teamwork/static/css/app.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@

.head_img{
width:100px;
height:100px;
margin: 0 auto;
display:block;
border-radius:50%;

}
.head_form{
text-align:center;
font-size:18px;
}
.paragraph{
text-align:center;
font-size:13px;
}
Binary file added Teamwork/static/img/liudehua.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions Teamwork/templates/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>

<title>
WIND
</title>
<link rel="stylesheet" href="static/css/app.css">
</head>
<body>
<div>
<h1 class="head_form">野奔</h1>
<hr />
<p class="paragraph">我是野奔 </p>
<p class="paragraph">任劳任怨的搬砖狗 </p>
<img class="head_img" src="static/img/liudehua.jpg" alt="">
</div>
</body>
</html>