You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
717 B
20 lines
717 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" type="text/css">
|
|
</head>
|
|
<body>
|
|
<h2>
|
|
<img alt="Avatar" class="avatar" src="{{ url_for('static', filename='images/avatar.png') }}">
|
|
首页
|
|
</h2>
|
|
<ul class="tools">
|
|
<li><a href="{{ url_for('crawl') }}" class="crawl-btn">爬取数据</a></li>
|
|
<li><a href="{{ url_for('result') }}" class="result-btn">查看数据</a></li>
|
|
</ul>
|
|
<img alt="Walking Totoro" class="totoro" src="{{ url_for('static', filename='images/totoro.gif') }}">
|
|
<footer>
|
|
<small>© 2018 <a href="http://helloflask.com/book/3">HelloFlask</a></small>
|
|
</footer>
|
|
</body>
|
|
</html> |