21 lines
No EOL
760 B
HTML
21 lines
No EOL
760 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Curious Greg - Home</title>
|
|
<link rel='stylesheet' type='text/css' href="{{ url_for('static', filename='style.css') }}" />
|
|
<script type="text/javascript" src="{{ url_for('static', filename='script.js') }}"></script>
|
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<h1>Welcome</h1>
|
|
<h2>You're all set up and ready to go.</h2>
|
|
<noscript>
|
|
Curious Greg will not function without JavaScript. Please ensure you have JavaScript enabled.
|
|
</noscript>
|
|
<!-- <div id='logo-main'></div> -->
|
|
<div id='body'>
|
|
You haven't posted to Curious Cat in a while, so we'll wait <strong>14 minutes</strong> until we check for new answers.
|
|
</div>
|
|
{% include 'footer.html' %}
|
|
</body>
|
|
</html> |