Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
KLUGLUG
KL Event Management
Commits
85ce642c
Commit
85ce642c
authored
Apr 02, 2019
by
Phani Surya Teja Mahankali
Browse files
Delete layou.html
parent
1496c808
Pipeline
#20231
passed with stage
in 16 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
flask/flaskblog/templates/layou.html
deleted
100644 → 0
View file @
1496c808
<!DOCTYPE html>
<html>
<head>
<!-- Required meta tags -->
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1, shrink-to-fit=no"
>
<!-- Bootstrap CSS -->
<link
rel=
"stylesheet"
href=
"https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity=
"sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin=
"anonymous"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{{ url_for('static', filename='main.css') }}"
>
{% if title %}
<title>
Flask Blog - {{ title }}
</title>
{% else %}
<title>
Flask Blog
</title>
{% endif %}
</head>
<body>
<header
class=
"site-header"
>
<nav
class=
"navbar navbar-expand-md navbar-dark bg-steel fixed-top"
>
<div
class=
"container"
>
<a
class=
"navbar-brand mr-4"
href=
"/"
>
Flask Blog
</a>
<button
class=
"navbar-toggler"
type=
"button"
data-toggle=
"collapse"
data-target=
"#navbarToggle"
aria-controls=
"navbarToggle"
aria-expanded=
"false"
aria-label=
"Toggle navigation"
>
<span
class=
"navbar-toggler-icon"
></span>
</button>
<div
class=
"collapse navbar-collapse"
id=
"navbarToggle"
>
<div
class=
"navbar-nav mr-auto"
>
<a
class=
"nav-item nav-link"
href=
"{{ url_for('home') }}"
>
Home
</a>
<a
class=
"nav-item nav-link"
href=
"{{ url_for('about') }}"
>
About
</a>
</div>
<!-- Navbar Right Side -->
<div
class=
"navbar-nav"
>
<a
class=
"nav-item nav-link"
href=
"{{ url_for('login') }}"
>
Login
</a>
<a
class=
"nav-item nav-link"
href=
"{{ url_for('register') }}"
>
Register
</a>
</div>
</div>
</div>
</nav>
</header>
<main
role=
"main"
class=
"container"
>
<div
class=
"row"
>
<div
class=
"col-md-8"
>
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
<div
class=
"alert alert-{{ category }}"
>
{{ message }}
</div>
{% endfor %}
{% endif %}
{% endwith %}
{% block content %}{% endblock %}
</div>
<div
class=
"col-md-4"
>
<div
class=
"content-section"
>
<h3>
Our Sidebar
</h3>
<p
class=
'text-muted'
>
You can put any information here you'd like.
<ul
class=
"list-group"
>
<li
class=
"list-group-item list-group-item-light"
>
Latest Posts
</li>
<li
class=
"list-group-item list-group-item-light"
>
Announcements
</li>
<li
class=
"list-group-item list-group-item-light"
>
Calendars
</li>
<li
class=
"list-group-item list-group-item-light"
>
etc
</li>
</ul>
</p>
</div>
</div>
</div>
</main>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script
src=
"https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity=
"sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin=
"anonymous"
></script>
<script
src=
"https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity=
"sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin=
"anonymous"
></script>
<script
src=
"https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity=
"sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin=
"anonymous"
></script>
</body>
</html>
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment