-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
012e1c7
commit 1657b52
Showing
59 changed files
with
3,748 additions
and
25 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.10.6 on 2019-04-26 07:22 | ||
from __future__ import unicode_literals | ||
|
||
from django.conf import settings | ||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
initial = True | ||
|
||
dependencies = [ | ||
migrations.swappable_dependency(settings.AUTH_USER_MODEL), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='Category', | ||
fields=[ | ||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | ||
('name', models.CharField(max_length=100)), | ||
], | ||
), | ||
migrations.CreateModel( | ||
name='Post', | ||
fields=[ | ||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | ||
('title', models.CharField(max_length=70)), | ||
('body', models.TextField()), | ||
('created_time', models.DateTimeField()), | ||
('modified_time', models.DateTimeField()), | ||
('excerpt', models.CharField(blank=True, max_length=200)), | ||
('author', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), | ||
('category', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='blog.Category')), | ||
], | ||
), | ||
migrations.CreateModel( | ||
name='Tag', | ||
fields=[ | ||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | ||
('name', models.CharField(max_length=100)), | ||
], | ||
), | ||
migrations.AddField( | ||
model_name='post', | ||
name='tags', | ||
field=models.ManyToManyField(blank=True, to='blog.Tag'), | ||
), | ||
] |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Black & White</title> | ||
|
||
<!-- meta --> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
<!-- css --> | ||
<link rel="stylesheet" href="css/bootstrap.min.css"> | ||
<link rel="stylesheet" href="css/ionicons.min.css"> | ||
<link rel="stylesheet" href="css/pace.css"> | ||
<link rel="stylesheet" href="css/custom.css"> | ||
|
||
<!-- js --> | ||
<script src="js/jquery-2.1.3.min.js"></script> | ||
<script src="js/bootstrap.min.js"></script> | ||
<script src="js/pace.min.js"></script> | ||
<script src="js/modernizr.custom.js"></script> | ||
</head> | ||
|
||
<body id="page"> | ||
<div class="container"> | ||
<header id="site-header"> | ||
<div class="row"> | ||
<div class="col-md-4 col-sm-5 col-xs-8"> | ||
<div class="logo"> | ||
<h1><a href="index.html"><b>Black</b> & White</a></h1> | ||
</div> | ||
</div><!-- col-md-4 --> | ||
<div class="col-md-8 col-sm-7 col-xs-4"> | ||
<nav class="main-nav" role="navigation"> | ||
<div class="navbar-header"> | ||
<button type="button" id="trigger-overlay" class="navbar-toggle"> | ||
<span class="ion-navicon"></span> | ||
</button> | ||
</div> | ||
|
||
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> | ||
<ul class="nav navbar-nav navbar-right"> | ||
<li class="cl-effect-11"><a href="index.html" data-hover="Home">Home</a></li> | ||
<li class="cl-effect-11"><a href="full-width.html" data-hover="Blog">Blog</a></li> | ||
<li class="cl-effect-11"><a href="about.html" data-hover="About">About</a></li> | ||
<li class="cl-effect-11"><a href="contact.html" data-hover="Contact">Contact</a></li> | ||
</ul> | ||
</div><!-- /.navbar-collapse --> | ||
</nav> | ||
<div id="header-search-box"> | ||
<a id="search-menu" href="#"><span id="search-icon" class="ion-ios-search-strong"></span></a> | ||
<div id="search-form" class="search-form"> | ||
<form role="search" method="get" id="searchform" action="#"> | ||
<input type="search" placeholder="Search" required> | ||
<button type="submit"><span class="ion-ios-search-strong"></span></button> | ||
</form> | ||
</div> | ||
</div> | ||
</div><!-- col-md-8 --> | ||
</div> | ||
</header> | ||
</div> | ||
|
||
<div class="content-body"> | ||
<div class="container"> | ||
<div class="row"> | ||
<main class="col-md-12"> | ||
<h1 class="page-title">About Me</h1> | ||
<article class="post"> | ||
<div class="entry-content clearfix"> | ||
<figure class="img-responsive-center"> | ||
<img class="img-responsive" src="img/me.jpg" alt="Developer Image"> | ||
</figure> | ||
<p>Responsive web design offers us a way forward, finally allowing us to design for the ebb and flow of things. There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don’t look even slightly.</p> | ||
<p>Responsive web design offers us a way forward, finally allowing us to design for the ebb and flow of things. There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don’t look even slightly.</p> | ||
<div class="height-40px"></div> | ||
<h2 class="title text-center">Social</h2> | ||
<ul class="social"> | ||
<li class="facebook"><a href="#"><span class="ion-social-facebook"></span></a></li> | ||
<li class="twitter"><a href="#"><span class="ion-social-twitter"></span></a></li> | ||
<li class="google-plus"><a href="#"><span class="ion-social-googleplus"></span></a></li> | ||
<li class="tumblr"><a href="#"><span class="ion-social-tumblr"></span></a></li> | ||
</ul> | ||
</div> | ||
</article> | ||
</main> | ||
</div> | ||
</div> | ||
</div> | ||
<footer id="site-footer"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<p class="copyright">© 2014 ThemeWagon.com</p> | ||
</div> | ||
</div> | ||
</div> | ||
</footer> | ||
|
||
<!-- Mobile Menu --> | ||
<div class="overlay overlay-hugeinc"> | ||
<button type="button" class="overlay-close"><span class="ion-ios-close-empty"></span></button> | ||
<nav> | ||
<ul> | ||
<li><a href="index.html">Home</a></li> | ||
<li><a href="full-width.html">Blog</a></li> | ||
<li><a href="about.html">About</a></li> | ||
<li><a href="contact.html">Contact</a></li> | ||
</ul> | ||
</nav> | ||
</div> | ||
|
||
<script src="js/script.js"></script> | ||
|
||
</body> | ||
</html> |
Oops, something went wrong.