31 lines
1006 B
HTML
31 lines
1006 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename= 'css/style.css') }}">
|
|
<title>Tool of The Week</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
|
|
</head>
|
|
|
|
<header>
|
|
<h1 class=roboto-bold>Matthew's Tool of the Week</h1>
|
|
<h2 class=roboto-regular> Week: {{ tool.Week_to_post }} </h2>
|
|
</header>
|
|
|
|
<body>
|
|
<div id=headerpad />
|
|
<a href='http://{{ tool["Url"] }}'>
|
|
<div id=imagebox>
|
|
<i></i>
|
|
</div>
|
|
<button>{{ tool.Name }}</button>
|
|
</a>
|
|
<div id=descriptionbox>
|
|
<p class=roboto-regular> {{ tool.Description }} </p>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|