Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
K
KL Event Management
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
KLUGLUG
KL Event Management
Commits
85ce642c
Commit
85ce642c
authored
Apr 02, 2019
by
Phani Surya Teja Mahankali
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete layou.html
parent
1496c808
Pipeline
#20231
passed with stage
in 16 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
78 deletions
+0
-78
flask/flaskblog/templates/layou.html
flask/flaskblog/templates/layou.html
+0
-78
No files found.
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
Markdown
is supported
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