Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
K
kulnug
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
kulnug
Commits
590ca296
Kaydet (Commit)
590ca296
authored
Nis 17, 2019
tarafından
Muhammed H. Alkan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Read diaries & navbar
üst
49795a01
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
152 additions
and
8 deletions
+152
-8
kulnug.py
kulnug.py
+38
-1
main.css
static/css/main.css
+16
-0
add.html
templates/add.html
+24
-1
index.html
templates/index.html
+33
-6
read_diary.html
templates/read_diary.html
+41
-0
No files found.
kulnug.py
Dosyayı görüntüle @
590ca296
#!/usr/bin/env python3
from
datetime
import
datetime
from
flask
import
Flask
from
flask
import
render_template
from
flask_sqlalchemy
import
SQLAlchemy
app
=
Flask
(
__name__
)
app
.
config
[
"SQLALCHEMY_DATABASE_URI"
]
=
"sqlite:////tmp/test.db"
app
.
config
[
"SQLALCHEMY_TRACK_MODIFICATIONS"
]
=
True
db
=
SQLAlchemy
(
app
)
class
Diary
(
db
.
Model
):
"""
Diary object for SQLAlchemy
"""
id
=
db
.
Column
(
db
.
Integer
,
primary_key
=
True
)
date
=
db
.
Column
(
db
.
DateTime
(),
index
=
True
,
default
=
datetime
.
now
)
content
=
db
.
Column
(
db
.
String
(),
unique
=
True
)
def
__repr__
(
self
):
return
f
"<Diary {self.id}>"
@app.route
(
"/"
)
def
index
():
return
render_template
(
"index.html"
)
"""
Route for index page.
"""
return
render_template
(
"index.html"
,
diaries
=
Diary
.
query
.
all
())
@app.route
(
"/add"
)
def
add_page
():
"""
Route for adding new diaries.
"""
return
render_template
(
"add.html"
)
@app.route
(
"/diaries/<int:diary_id>"
)
def
read_diary
(
diary_id
):
"""
Route for reading the diaries.
"""
return
render_template
(
"read_diary.html"
,
diary
=
Diary
.
query
.
get
(
diary_id
))
app
.
run
(
debug
=
True
)
static/css/main.css
0 → 100644
Dosyayı görüntüle @
590ca296
@import
url('https://fonts.googleapis.com/css?family=Raleway')
;
body
{
font-family
:
'Raleway'
,
sans-serif
;
}
.center
{
height
:
200px
;
width
:
400px
;
top
:
50%
;
left
:
50%
;
margin-top
:
-100px
;
margin-left
:
-200px
;
font-size
:
20px
;
position
:
fixed
;
}
templates/add.html
Dosyayı görüntüle @
590ca296
...
...
@@ -4,9 +4,32 @@
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1, shrink-to-fit=no"
>
<link
rel=
"stylesheet"
href=
"https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity=
"sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin=
"anonymous"
>
<title>
Kulnug
</title>
<link
rel=
"stylesheet"
href=
"{{ url_for('static', filename='css/main.css') }}"
>
<title>
Kulnug - Writing diary
</title>
</head>
<body>
<nav
class=
"navbar navbar-expand-lg navbar-light bg-light"
>
<a
class=
"navbar-brand"
href=
"#"
>
Kulnug
</a>
<button
class=
"navbar-toggler"
type=
"button"
data-toggle=
"collapse"
data-target=
"#navbarSupportedContent"
aria-controls=
"navbarSupportedContent"
aria-expanded=
"false"
aria-label=
"Toggle navigation"
>
<span
class=
"navbar-toggler-icon"
></span>
</button>
<div
class=
"collapse navbar-collapse"
id=
"navbarSupportedContent"
>
<ul
class=
"navbar-nav mr-auto"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"/"
>
Home
</a>
</li>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
href=
"/add"
>
Add diary
<span
class=
"sr-only"
>
(current)
</span></a>
</li>
</ul>
<form
class=
"form-inline my-2 my-lg-0"
>
<input
class=
"form-control mr-sm-2"
type=
"search"
placeholder=
"Search"
aria-label=
"Search"
>
<button
class=
"btn btn-outline-success my-2 my-sm-0"
type=
"submit"
>
Search
</button>
</form>
</div>
</nav>
<script
src=
"https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity=
"sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin=
"anonymous"
></script>
<script
src=
"https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity=
"sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin=
"anonymous"
></script>
<script
src=
"https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity=
"sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin=
"anonymous"
></script>
...
...
templates/index.html
Dosyayı görüntüle @
590ca296
...
...
@@ -4,15 +4,42 @@
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1, shrink-to-fit=no"
>
<link
rel=
"stylesheet"
href=
"https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity=
"sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin=
"anonymous"
>
<title>
Kulnug
</title>
<link
rel=
"stylesheet"
href=
"{{ url_for('static', filename='css/main.css') }}"
>
<title>
Kulnug - Home
</title>
</head>
<body>
<div
class=
"card"
style=
"width: 18rem;"
>
<div
class=
"card-body"
>
<h5
class=
"card-title"
>
Day x
</h5>
<p
class=
"card-text"
>
A random quote from the diary
</p>
<a
href=
"#"
class=
"card-link"
>
Link to diary.
</a>
<nav
class=
"navbar navbar-expand-lg navbar-light bg-light"
>
<a
class=
"navbar-brand"
href=
"#"
>
Kulnug
</a>
<button
class=
"navbar-toggler"
type=
"button"
data-toggle=
"collapse"
data-target=
"#navbarSupportedContent"
aria-controls=
"navbarSupportedContent"
aria-expanded=
"false"
aria-label=
"Toggle navigation"
>
<span
class=
"navbar-toggler-icon"
></span>
</button>
<div
class=
"collapse navbar-collapse"
id=
"navbarSupportedContent"
>
<ul
class=
"navbar-nav mr-auto"
>
<li
class=
"nav-item active"
>
<a
class=
"nav-link"
href=
"/"
>
Home
<span
class=
"sr-only"
>
(current)
</span></a>
</li>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"/add"
>
Add diary
</a>
</li>
</ul>
<form
class=
"form-inline my-2 my-lg-0"
>
<input
class=
"form-control mr-sm-2"
type=
"search"
placeholder=
"Search"
aria-label=
"Search"
>
<button
class=
"btn btn-outline-success my-2 my-sm-0"
type=
"submit"
>
Search
</button>
</form>
</div>
</nav>
<div
class=
"row"
>
{% for diary in diaries %}
<div
class=
"card"
style=
"width: 18rem;"
>
<div
class=
"card-body"
>
<h5
class=
"card-title"
>
Diary {{ diary.id }}
</h5>
<p
class=
"card-text"
>
{{ diary.content[:20] }}...
</p>
<a
href=
"/diaries/{{ diary.id }}"
class=
"card-link"
>
Read more
</a>
<p
class=
"card-text"
><small
class=
"text-muted"
>
Posted at {{ diary.date.strftime('%y/%m/%d') }}
</small></p>
</div>
</div>
{% endfor %}
</div>
<script
src=
"https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity=
"sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin=
"anonymous"
></script>
<script
src=
"https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity=
"sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin=
"anonymous"
></script>
...
...
templates/read_diary.html
0 → 100644
Dosyayı görüntüle @
590ca296
<!doctype html>
<html
lang=
"en"
>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1, shrink-to-fit=no"
>
<link
rel=
"stylesheet"
href=
"https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity=
"sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin=
"anonymous"
>
<link
rel=
"stylesheet"
href=
"{{ url_for('static', filename='css/main.css') }}"
>
<title>
Kulnug - Reading diary {{ diary.id }}
</title>
</head>
<body>
<nav
class=
"navbar navbar-expand-lg navbar-light bg-light"
>
<a
class=
"navbar-brand"
href=
"#"
>
Kulnug
</a>
<button
class=
"navbar-toggler"
type=
"button"
data-toggle=
"collapse"
data-target=
"#navbarSupportedContent"
aria-controls=
"navbarSupportedContent"
aria-expanded=
"false"
aria-label=
"Toggle navigation"
>
<span
class=
"navbar-toggler-icon"
></span>
</button>
<div
class=
"collapse navbar-collapse"
id=
"navbarSupportedContent"
>
<ul
class=
"navbar-nav mr-auto"
>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"/"
>
Home
</a>
</li>
<li
class=
"nav-item"
>
<a
class=
"nav-link"
href=
"/add"
>
Add diary
</a>
</li>
</ul>
<form
class=
"form-inline my-2 my-lg-0"
>
<input
class=
"form-control mr-sm-2"
type=
"search"
placeholder=
"Search"
aria-label=
"Search"
>
<button
class=
"btn btn-outline-success my-2 my-sm-0"
type=
"submit"
>
Search
</button>
</form>
</div>
</nav>
<div
class=
"center"
>
<h1>
Diary {{ diary.id }}
</h1>
<p>
{{ diary.content }}
</p>
</div>
<script
src=
"https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity=
"sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin=
"anonymous"
></script>
<script
src=
"https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity=
"sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin=
"anonymous"
></script>
<script
src=
"https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity=
"sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
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