├── blog ├── __init__.py ├── __pycache__ │ ├── urls.cpython-311.pyc │ ├── urls.cpython-37.pyc │ ├── wsgi.cpython-311.pyc │ ├── wsgi.cpython-37.pyc │ ├── __init__.cpython-37.pyc │ ├── settings.cpython-37.pyc │ ├── __init__.cpython-311.pyc │ └── settings.cpython-311.pyc ├── urls.py ├── asgi.py ├── wsgi.py └── settings.py ├── backend ├── __init__.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ └── __init__.cpython-37.pyc ├── models.py ├── tests.py ├── admin.py ├── __pycache__ │ ├── admin.cpython-37.pyc │ ├── apps.cpython-311.pyc │ ├── apps.cpython-37.pyc │ ├── urls.cpython-311.pyc │ ├── urls.cpython-37.pyc │ ├── views.cpython-37.pyc │ ├── __init__.cpython-37.pyc │ ├── admin.cpython-311.pyc │ ├── models.cpython-311.pyc │ ├── models.cpython-37.pyc │ ├── views.cpython-311.pyc │ └── __init__.cpython-311.pyc ├── apps.py ├── urls.py └── views.py ├── README.md ├── img.jpg ├── db.sqlite3 ├── requirements.txt ├── static ├── images │ ├── logo.png │ ├── author.jpg │ ├── favicon.png │ ├── signature.png │ ├── author-full.jpg │ └── post │ │ ├── post-1.jpg │ │ ├── post-2.jpg │ │ ├── post-3.jpg │ │ ├── post-4.jpg │ │ ├── post-5.jpg │ │ └── post-6.jpg ├── plugins │ ├── slick │ │ ├── ajax-loader.gif │ │ ├── fonts │ │ │ ├── slick.eot │ │ │ ├── slick.ttf │ │ │ ├── slick.woff │ │ │ └── slick.svg │ │ └── slick.css │ └── themify-icons │ │ ├── fonts │ │ ├── themify.eot │ │ ├── themify.ttf │ │ └── themify.woff │ │ └── themify-icons.css ├── js │ └── script.js └── css │ └── style.css ├── manage.py └── frontend ├── contact.html ├── details └── footer.html ├── about.html ├── post-details-1.html ├── post-details-2.html ├── privacy-policy.html ├── terms-conditions.html ├── base.html ├── index-list.html ├── author.html ├── post-elements.html ├── index-full.html ├── index-list-right.html ├── index-list-left.html ├── index-full-right.html ├── index.html └── index-full-left.html /blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/img.jpg -------------------------------------------------------------------------------- /backend/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /backend/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /backend/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/static/images/logo.png -------------------------------------------------------------------------------- /static/images/author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/static/images/author.jpg -------------------------------------------------------------------------------- /static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/static/images/favicon.png -------------------------------------------------------------------------------- /static/images/signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/static/images/signature.png -------------------------------------------------------------------------------- /static/images/author-full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/static/images/author-full.jpg -------------------------------------------------------------------------------- /static/images/post/post-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/static/images/post/post-1.jpg -------------------------------------------------------------------------------- /static/images/post/post-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/static/images/post/post-2.jpg -------------------------------------------------------------------------------- /static/images/post/post-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/static/images/post/post-3.jpg -------------------------------------------------------------------------------- /static/images/post/post-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/static/images/post/post-4.jpg -------------------------------------------------------------------------------- /static/images/post/post-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/static/images/post/post-5.jpg -------------------------------------------------------------------------------- /static/images/post/post-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/static/images/post/post-6.jpg -------------------------------------------------------------------------------- /blog/__pycache__/urls.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/blog/__pycache__/urls.cpython-311.pyc -------------------------------------------------------------------------------- /blog/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/blog/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /blog/__pycache__/wsgi.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/blog/__pycache__/wsgi.cpython-311.pyc -------------------------------------------------------------------------------- /blog/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/blog/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /static/plugins/slick/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/static/plugins/slick/ajax-loader.gif -------------------------------------------------------------------------------- /static/plugins/slick/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/static/plugins/slick/fonts/slick.eot -------------------------------------------------------------------------------- /static/plugins/slick/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/static/plugins/slick/fonts/slick.ttf -------------------------------------------------------------------------------- /static/plugins/slick/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/static/plugins/slick/fonts/slick.woff -------------------------------------------------------------------------------- /backend/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/backend/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /backend/__pycache__/apps.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/backend/__pycache__/apps.cpython-311.pyc -------------------------------------------------------------------------------- /backend/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/backend/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /backend/__pycache__/urls.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/backend/__pycache__/urls.cpython-311.pyc -------------------------------------------------------------------------------- /backend/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/backend/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /backend/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/backend/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /blog/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/blog/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /blog/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/blog/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /backend/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/backend/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /backend/__pycache__/admin.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/backend/__pycache__/admin.cpython-311.pyc -------------------------------------------------------------------------------- /backend/__pycache__/models.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/backend/__pycache__/models.cpython-311.pyc -------------------------------------------------------------------------------- /backend/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/backend/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /backend/__pycache__/views.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/backend/__pycache__/views.cpython-311.pyc -------------------------------------------------------------------------------- /blog/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/blog/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /blog/__pycache__/settings.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/blog/__pycache__/settings.cpython-311.pyc -------------------------------------------------------------------------------- /backend/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/backend/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /static/plugins/themify-icons/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/static/plugins/themify-icons/fonts/themify.eot -------------------------------------------------------------------------------- /static/plugins/themify-icons/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/static/plugins/themify-icons/fonts/themify.ttf -------------------------------------------------------------------------------- /static/plugins/themify-icons/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/static/plugins/themify-icons/fonts/themify.woff -------------------------------------------------------------------------------- /backend/migrations/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/backend/migrations/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /backend/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/block_content/HEAD/backend/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /backend/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class BackendConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'backend' 7 | -------------------------------------------------------------------------------- /blog/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path,include 3 | 4 | urlpatterns = [ 5 | path('admin/', admin.site.urls), 6 | path('', include('backend.urls')), 7 | 8 | ] -------------------------------------------------------------------------------- /blog/asgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | ASGI config for blog project. 3 | 4 | It exposes the ASGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/3.2/howto/deployment/asgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.asgi import get_asgi_application 13 | 14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'blog.settings') 15 | 16 | application = get_asgi_application() 17 | -------------------------------------------------------------------------------- /blog/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for blog project. 3 | 4 | It exposes the WSGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/3.2/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.wsgi import get_wsgi_application 13 | 14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'blog.settings') 15 | 16 | application = get_wsgi_application() 17 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """Django's command-line utility for administrative tasks.""" 3 | import os 4 | import sys 5 | 6 | 7 | def main(): 8 | """Run administrative tasks.""" 9 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'blog.settings') 10 | try: 11 | from django.core.management import execute_from_command_line 12 | except ImportError as exc: 13 | raise ImportError( 14 | "Couldn't import Django. Are you sure it's installed and " 15 | "available on your PYTHONPATH environment variable? Did you " 16 | "forget to activate a virtual environment?" 17 | ) from exc 18 | execute_from_command_line(sys.argv) 19 | 20 | 21 | if __name__ == '__main__': 22 | main() 23 | -------------------------------------------------------------------------------- /backend/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from .views import * 3 | urlpatterns = [ 4 | path('',HomeView.as_view()), 5 | path('about/',AboutView.as_view(), name="about" ), 6 | path('author/',AuthorView.as_view(),name="author" ), 7 | path('contact/',ContactView.as_view() , name= "contact" ), 8 | path('indexfullleft/',IndexFullLeftView.as_view(),name="ifl" ), 9 | path('indexfullright/',IndexFullRightView.as_view() , name="ifr" ), 10 | path('indexfull/',IndexFullView.as_view() , name="if" ), 11 | path('indexlistleft/',IndexListLeftView.as_view() , name="ill" ), 12 | path('indexlistright/',IndexListRightView.as_view() , name="ilr"), 13 | path('indexlist/',IndexListView.as_view() , name="il"), 14 | path('postdetails1/',PostDetails1View.as_view(),name="pd1" ), 15 | path('postdetails2/',PostDetails2View.as_view() , name="pd2" ), 16 | path('postelements/',PostElementsView.as_view() , name="pe" ), 17 | path('privacypolicy/',PrivacyPolicyView.as_view() , name="pp"), 18 | path('termsconditions/',TermsConditionsView.as_view(), name="tc") 19 | ] 20 | -------------------------------------------------------------------------------- /backend/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | from django.views.generic import TemplateView 3 | 4 | class HomeView(TemplateView): 5 | template_name = 'index.html' 6 | 7 | class AboutView(TemplateView): 8 | template_name = 'about.html' 9 | 10 | class AuthorView(TemplateView): 11 | template_name = 'author.html' 12 | 13 | class ContactView(TemplateView): 14 | template_name = 'contact.html' 15 | 16 | class IndexFullLeftView(TemplateView): 17 | template_name = 'index-full-left.html' 18 | 19 | class IndexFullRightView(TemplateView): 20 | template_name = 'index-full-right.html' 21 | 22 | class IndexFullView(TemplateView): 23 | template_name = 'index-full.html' 24 | 25 | class IndexListLeftView(TemplateView): 26 | template_name = 'index-list-left.html' 27 | 28 | class IndexListRightView(TemplateView): 29 | template_name = 'index-list-right.html' 30 | 31 | class IndexListView(TemplateView): 32 | template_name = 'index-list.html' 33 | 34 | class PostDetails1View(TemplateView): 35 | template_name = 'post-details-1.html' 36 | 37 | class PostDetails2View(TemplateView): 38 | template_name = 'post-details-2.html' 39 | 40 | class PostElementsView(TemplateView): 41 | template_name = 'post-elements.html' 42 | 43 | class PrivacyPolicyView(TemplateView): 44 | template_name = 'privacy-policy.html' 45 | 46 | class TermsConditionsView(TemplateView): 47 | template_name = 'terms-conditions.html' 48 | -------------------------------------------------------------------------------- /static/plugins/slick/fonts/slick.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Generated by Fontastic.me 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /frontend/contact.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | {% load static %} 3 | {% block content %} 4 | 5 |
6 |
7 |
8 |
9 |
10 |

Talk To Me Anytime :)

11 | 21 |
22 |
23 |
24 |
25 |

Ask Us Anything
Or just Say Hi,

26 |

Rather than just filling out a form, Sleeknote also offers help to the user 27 |
with links directing them to find additional information or take popular actions.

28 |

Hate Forms? Write Us Email

29 |

georgia.young@example.com 30 |

31 |
32 |
33 |
34 |
35 |
36 | 37 | 38 |
39 |
40 | 41 | 42 |
43 |
44 | 45 | 46 |
47 | 48 |
49 |
50 |
51 |
52 |
53 | {% include 'details/footer.html' %} 54 | {% endblock content %} 55 | 56 | 57 | -------------------------------------------------------------------------------- /static/plugins/slick/slick.css: -------------------------------------------------------------------------------- 1 | /* Slider */ 2 | .slick-slider 3 | { 4 | position: relative; 5 | 6 | display: block; 7 | box-sizing: border-box; 8 | 9 | -webkit-user-select: none; 10 | -moz-user-select: none; 11 | -ms-user-select: none; 12 | user-select: none; 13 | 14 | -webkit-touch-callout: none; 15 | -khtml-user-select: none; 16 | -ms-touch-action: pan-y; 17 | touch-action: pan-y; 18 | -webkit-tap-highlight-color: transparent; 19 | } 20 | 21 | .slick-list 22 | { 23 | position: relative; 24 | 25 | display: block; 26 | overflow: hidden; 27 | 28 | margin: 0; 29 | padding: 0; 30 | } 31 | .slick-list:focus 32 | { 33 | outline: none; 34 | } 35 | .slick-list.dragging 36 | { 37 | cursor: pointer; 38 | cursor: hand; 39 | } 40 | 41 | .slick-slider .slick-track, 42 | .slick-slider .slick-list 43 | { 44 | -webkit-transform: translate3d(0, 0, 0); 45 | -moz-transform: translate3d(0, 0, 0); 46 | -ms-transform: translate3d(0, 0, 0); 47 | -o-transform: translate3d(0, 0, 0); 48 | transform: translate3d(0, 0, 0); 49 | } 50 | 51 | .slick-track 52 | { 53 | position: relative; 54 | top: 0; 55 | left: 0; 56 | 57 | display: block; 58 | margin-left: auto; 59 | margin-right: auto; 60 | } 61 | .slick-track:before, 62 | .slick-track:after 63 | { 64 | display: table; 65 | 66 | content: ''; 67 | } 68 | .slick-track:after 69 | { 70 | clear: both; 71 | } 72 | .slick-loading .slick-track 73 | { 74 | visibility: hidden; 75 | } 76 | 77 | .slick-slide 78 | { 79 | display: none; 80 | float: left; 81 | 82 | height: 100%; 83 | min-height: 1px; 84 | } 85 | [dir='rtl'] .slick-slide 86 | { 87 | float: right; 88 | } 89 | .slick-slide img 90 | { 91 | display: block; 92 | } 93 | .slick-slide.slick-loading img 94 | { 95 | display: none; 96 | } 97 | .slick-slide.dragging img 98 | { 99 | pointer-events: none; 100 | } 101 | .slick-initialized .slick-slide 102 | { 103 | display: block; 104 | } 105 | .slick-loading .slick-slide 106 | { 107 | visibility: hidden; 108 | } 109 | .slick-vertical .slick-slide 110 | { 111 | display: block; 112 | 113 | height: auto; 114 | 115 | border: 1px solid transparent; 116 | } 117 | .slick-arrow.slick-hidden { 118 | display: none; 119 | } 120 | -------------------------------------------------------------------------------- /frontend/details/footer.html: -------------------------------------------------------------------------------- 1 | {% load static %} 2 | -------------------------------------------------------------------------------- /static/js/script.js: -------------------------------------------------------------------------------- 1 | /** 2 | * WEBSITE: https://themefisher.com 3 | * TWITTER: https://twitter.com/themefisher 4 | * FACEBOOK: https://www.facebook.com/themefisher 5 | * GITHUB: https://github.com/themefisher/ 6 | */ 7 | 8 | (function ($) { 9 | 'use strict'; 10 | 11 | // Preloader js 12 | $(window).on('load', function () { 13 | $('.preloader').fadeOut(100); 14 | }); 15 | 16 | 17 | // Search Form Open 18 | $('#searchOpen').on('click', function () { 19 | $('.search-wrapper').addClass('open'); 20 | setTimeout(function () { 21 | $('.search-box').focus(); 22 | }, 400); 23 | }); 24 | $('#searchClose').on('click', function () { 25 | $('.search-wrapper').removeClass('open'); 26 | }); 27 | 28 | 29 | // tab 30 | $('.tab-content').find('.tab-pane').each(function (idx, item) { 31 | var navTabs = $(this).closest('.code-tabs').find('.nav-tabs'), 32 | title = $(this).attr('title'); 33 | navTabs.append(''); 34 | }); 35 | 36 | $('.code-tabs ul.nav-tabs').each(function () { 37 | $(this).find('li:first').addClass('active'); 38 | }); 39 | 40 | $('.code-tabs .tab-content').each(function () { 41 | $(this).find('div:first').addClass('active'); 42 | }); 43 | 44 | $('.nav-tabs a').click(function (e) { 45 | e.preventDefault(); 46 | var tab = $(this).parent(), 47 | tabIndex = tab.index(), 48 | tabPanel = $(this).closest('.code-tabs'), 49 | tabPane = tabPanel.find('.tab-pane').eq(tabIndex); 50 | tabPanel.find('.active').removeClass('active'); 51 | tab.addClass('active'); 52 | tabPane.addClass('active'); 53 | }); 54 | 55 | 56 | // Accordions 57 | $('.collapse').on('shown.bs.collapse', function () { 58 | $(this).parent().find('.ti-plus').removeClass('ti-plus').addClass('ti-minus'); 59 | }).on('hidden.bs.collapse', function () { 60 | $(this).parent().find('.ti-minus').removeClass('ti-minus').addClass('ti-plus'); 61 | }); 62 | 63 | 64 | 65 | //easeInOutExpo Declaration 66 | jQuery.extend(jQuery.easing, { 67 | easeInOutExpo: function (x, t, b, c, d) { 68 | if (t === 0) {return b;} 69 | if (t === d) {return b + c;} 70 | if ((t /= d / 2) < 1) {return c / 2 * Math.pow(2, 10 * (t - 1)) + b;} 71 | return c / 2 * (-Math.pow(2, -10 * --t) + 2) + b; 72 | } 73 | }); 74 | 75 | // back to top button 76 | $('#scrollTop').click(function (e) { 77 | e.preventDefault(); 78 | $('html,body').animate({ 79 | scrollTop: 0 80 | }, 1500, 'easeInOutExpo'); 81 | }); 82 | 83 | //post slider 84 | $('.post-slider').slick({ 85 | slidesToShow: 1, 86 | slidesToScroll: 1, 87 | autoplay: true, 88 | dots: false, 89 | arrows: true, 90 | prevArrow: '', 91 | nextArrow: '' 92 | }); 93 | 94 | })(jQuery); -------------------------------------------------------------------------------- /frontend/about.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | {% load static %} 3 | {% block content %} 4 | 5 |
6 |
7 |
8 |
9 |
10 |

Hi, I Am John Doe

11 | 21 |
22 | author 23 |
24 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Condimentum in urna justo elit turpis risus vitae viverra enim. Augue quis vitae in non nisi, posuere ultrices tempus. Feugiat consequat suspendisse laoreet vitae enim adipiscing cursus. Duis nunc vitae tincidunt sed nibh id. Egestas erat consequat, ornare etiam donec faucibus. Lorem ut enim nunc, senectus adipiscing sed. Lobortis commodo aliquet pulvinar molestie faucibus diam. Semper porttitor justo, et dictum

25 |

Faucibus duis urna, consequat morbi imperdiet pulvinar. Mauris vitae sed aliquet eu tincidunt id. Nulla leo eget erat vel pharetra. Morbi nullam morbi non purus, augue. Massa cras odio ante cursus a mauris. Volutpat faucibus feugiat feugiat euismod congue ridiculus. Et ipsum euismod nulla et aenean diam duis. Sem molestie est mauris sit. Et eleifend odio

26 |
27 |
28 |

Life is a series of natural and spontaneous changes. Don’t resist them – that only create sorrow. Let reality changes be reality. Let things flow naturally way they like.

-John Doe 29 |
30 |
31 |
32 |

My Skills & Experiences:

33 |

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cumto sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec.

34 |
    35 |
  • In enim justo, rhoncus ut,
  • 36 |
  • Curabitur ullamcorper ultricies
  • 37 |
  • Donec vitae sapien utlorem
  • 38 |
39 |

Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna.

40 |
41 |
42 |
43 |
44 |
45 | {% include 'details/footer.html' %} 46 | {% endblock content %} 47 | 48 | 49 | -------------------------------------------------------------------------------- /frontend/post-details-1.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | {% load static %} 3 | {% block content %} 4 | 5 |
6 |
7 |
8 |
9 |

Cheerful Loving Couple Bakers Drinking Coffee

10 | 20 |
21 |
22 |
23 | post-thumb 24 |
25 |
26 |
27 |
28 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out. Unique side projects are the best place to innovate, but balancing commercially and creatively lucrative work is tricky. So, this article looks at

29 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out. Unique side projects are the best place to innovate, but balancing commercially and creatively lucrative work is tricky. So, this article looks at

30 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out. Unique side projects are the best place to innovate, but balancing commercially and creatively lucrative work is tricky. So, this article looks at

31 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out. Unique side projects are the best place to innovate, but balancing commercially and creatively lucrative work is tricky. So, this article looks at

32 |
33 |
34 |
35 |
36 |
37 | 38 | {% endblock content %} -------------------------------------------------------------------------------- /frontend/post-details-2.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | {% load static %} 3 | {% block content %} 4 | 5 | 6 |
7 |
8 |
9 |
10 |

Cheerful Loving Couple Bakers Drinking Coffee

11 | 21 |
22 |
23 |
24 | post-thumb 25 | post-thumb 26 |
27 |
28 |
29 |
30 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out. Unique side projects are the best place to innovate, but balancing commercially and creatively lucrative work is tricky. So, this article looks at

31 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out. Unique side projects are the best place to innovate, but balancing commercially and creatively lucrative work is tricky. So, this article looks at

32 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out. Unique side projects are the best place to innovate, but balancing commercially and creatively lucrative work is tricky. So, this article looks at

33 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out. Unique side projects are the best place to innovate, but balancing commercially and creatively lucrative work is tricky. So, this article looks at

34 |
35 |
36 |
37 |
38 |
39 | 40 | {% endblock content %} -------------------------------------------------------------------------------- /frontend/privacy-policy.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | {% load static %} 3 | {% block content %} 4 | 5 |
6 |
7 |
8 |
9 |
10 |

Our Privacy Policy

11 |
12 |
13 |

Responsibility of Contributors

14 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id 15 | feugiat quisque aliquam sagittis. Sem turpis sed viverra massa gravida pharetra. Non dui dolor potenti 16 | eu dignissim fusce. Ultrices amet, in curabitur a arcu a lectus morbi id. Iaculis erat sagittis in 17 | tortor cursus. Molestie urna eu tortor, erat scelerisque eget. Nunc hendrerit sed interdum lacus. 18 | Lorem quis viverra sed

19 |

pretium, aliquam sit. Praesent elementum magna amet, tincidunt eros, nibh in leo. Malesuada purus, 20 | lacus, at aliquam suspendisse tempus. Quis tempus amet, velit nascetur sollicitudin. At sollicitudin 21 | eget amet in. Eu velit nascetur sollicitudin erhdfvssfvrgss eget viverra nec elementum. Lacus, 22 | facilisis tristique lectus in.

23 |

Gathering of Personal Information

24 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id 25 | feugiat quisque aliquam sagittis. Sem turpis sed viverra massa gravida pharetra. Non dui dolor potenti 26 | eu dignissim fusce. Ultrices amet, in curabitur a arcu a lectus morbi id. Iaculis erat sagittis in 27 | tortor cursus. Molestie urna eu tortor, erat scelerisque eget. Nunc hendrerit sed interdum lacus. 28 | Lorem quis viverra sed

29 |

Protection of Personal- Information

30 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id 31 | feugiat quisque aliquam sagittis. Sem turpis sed viverra massa gravida pharetra. Non dui dolor potenti 32 | eu dignissim fusce. Ultrices amet, in curabitur a arcu a lectus morbi id. Iaculis erat sagittis in 33 | tortor cursus.

34 |

Molestie urna eu tortor, erat scelerisque eget. Nunc hendrerit sed interdum lacus. Lorem quis viverra 35 | sed 36 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id 37 | feugiat

38 |

Privacy Policy Changes

39 |
    40 |
  1. Sll the Themefisher items are designed to be with the latest , We check all
  2. 41 |
  3. comments that threaten or harm the reputation of any person or organization
  4. 42 |
  5. personal information including, but limited to, email addresses, telephone numbers
  6. 43 |
  7. Any Update come in The technology Customer will get automatic Notification.
  8. 44 |
45 | 46 |
47 |
48 |
49 |
50 |
51 | 52 | {% endblock content %} -------------------------------------------------------------------------------- /frontend/terms-conditions.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | {% load static %} 3 | {% block content %} 4 | 5 |
6 |
7 |
8 |
9 |
10 |

Our Terms And Conditions

11 |
12 |
13 |

Responsibility of Contributors

14 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id 15 | feugiat quisque aliquam sagittis. Sem turpis sed viverra massa gravida pharetra. Non dui dolor potenti 16 | eu dignissim fusce. Ultrices amet, in curabitur a arcu a lectus morbi id. Iaculis erat sagittis in 17 | tortor cursus. Molestie urna eu tortor, erat scelerisque eget. Nunc hendrerit sed interdum lacus. 18 | Lorem quis viverra sed

19 |

pretium, aliquam sit. Praesent elementum magna amet, tincidunt eros, nibh in leo. Malesuada purus, 20 | lacus, at aliquam suspendisse tempus. Quis tempus amet, velit nascetur sollicitudin. At sollicitudin 21 | eget amet in. Eu velit nascetur sollicitudin erhdfvssfvrgss eget viverra nec elementum. Lacus, 22 | facilisis tristique lectus in.

23 |

Gathering of Personal Information

24 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id 25 | feugiat quisque aliquam sagittis. Sem turpis sed viverra massa gravida pharetra. Non dui dolor potenti 26 | eu dignissim fusce. Ultrices amet, in curabitur a arcu a lectus morbi id. Iaculis erat sagittis in 27 | tortor cursus. Molestie urna eu tortor, erat scelerisque eget. Nunc hendrerit sed interdum lacus. 28 | Lorem quis viverra sed

29 |

Protection of Personal- Information

30 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id 31 | feugiat quisque aliquam sagittis. Sem turpis sed viverra massa gravida pharetra. Non dui dolor potenti 32 | eu dignissim fusce. Ultrices amet, in curabitur a arcu a lectus morbi id. Iaculis erat sagittis in 33 | tortor cursus.

34 |

Molestie urna eu tortor, erat scelerisque eget. Nunc hendrerit sed interdum lacus. Lorem quis viverra 35 | sed 36 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id 37 | feugiat

38 |

Privacy Policy Changes

39 |
    40 |
  1. Sll the Themefisher items are designed to be with the latest , We check all
  2. 41 |
  3. comments that threaten or harm the reputation of any person or organization
  4. 42 |
  5. personal information including, but limited to, email addresses, telephone numbers
  6. 43 |
  7. Any Update come in The technology Customer will get automatic Notification.
  8. 44 |
45 | 46 |
47 |
48 |
49 |
50 |
51 | 52 | {% endblock content %} -------------------------------------------------------------------------------- /blog/settings.py: -------------------------------------------------------------------------------- 1 | """ 2 | Django settings for blog project. 3 | 4 | Generated by 'django-admin startproject' using Django 3.2.16. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/3.2/topics/settings/ 8 | 9 | For the full list of settings and their values, see 10 | https://docs.djangoproject.com/en/3.2/ref/settings/ 11 | """ 12 | 13 | from pathlib import Path 14 | 15 | # Build paths inside the project like this: BASE_DIR / 'subdir'. 16 | BASE_DIR = Path(__file__).resolve().parent.parent 17 | 18 | 19 | # Quick-start development settings - unsuitable for production 20 | # See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/ 21 | 22 | # SECURITY WARNING: keep the secret key used in production secret! 23 | SECRET_KEY = 'django-insecure-&^pj@cu3g4koqwok=+f7w*-g2zp)r6%n50r)f2zs(9kbbe%e0k' 24 | 25 | # SECURITY WARNING: don't run with debug turned on in production! 26 | DEBUG = True 27 | 28 | ALLOWED_HOSTS = [] 29 | 30 | 31 | # Application definition 32 | 33 | INSTALLED_APPS = [ 34 | 'django.contrib.admin', 35 | 'django.contrib.auth', 36 | 'django.contrib.contenttypes', 37 | 'django.contrib.sessions', 38 | 'django.contrib.messages', 39 | 'django.contrib.staticfiles', 40 | 'backend' 41 | ] 42 | 43 | MIDDLEWARE = [ 44 | 'django.middleware.security.SecurityMiddleware', 45 | 'django.contrib.sessions.middleware.SessionMiddleware', 46 | 'django.middleware.common.CommonMiddleware', 47 | 'django.middleware.csrf.CsrfViewMiddleware', 48 | 'django.contrib.auth.middleware.AuthenticationMiddleware', 49 | 'django.contrib.messages.middleware.MessageMiddleware', 50 | 'django.middleware.clickjacking.XFrameOptionsMiddleware', 51 | ] 52 | 53 | ROOT_URLCONF = 'blog.urls' 54 | 55 | TEMPLATES = [ 56 | { 57 | 'BACKEND': 'django.template.backends.django.DjangoTemplates', 58 | 'DIRS': [ BASE_DIR / 'frontend'], 59 | 'APP_DIRS': True, 60 | 'OPTIONS': { 61 | 'context_processors': [ 62 | 'django.template.context_processors.debug', 63 | 'django.template.context_processors.request', 64 | 'django.contrib.auth.context_processors.auth', 65 | 'django.contrib.messages.context_processors.messages', 66 | ], 67 | }, 68 | }, 69 | ] 70 | 71 | WSGI_APPLICATION = 'blog.wsgi.application' 72 | 73 | 74 | # Database 75 | # https://docs.djangoproject.com/en/3.2/ref/settings/#databases 76 | 77 | DATABASES = { 78 | 'default': { 79 | 'ENGINE': 'django.db.backends.sqlite3', 80 | 'NAME': BASE_DIR / 'db.sqlite3', 81 | } 82 | } 83 | 84 | 85 | # Password validation 86 | # https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators 87 | 88 | AUTH_PASSWORD_VALIDATORS = [ 89 | { 90 | 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', 91 | }, 92 | { 93 | 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', 94 | }, 95 | { 96 | 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', 97 | }, 98 | { 99 | 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', 100 | }, 101 | ] 102 | 103 | 104 | # Internationalization 105 | # https://docs.djangoproject.com/en/3.2/topics/i18n/ 106 | 107 | LANGUAGE_CODE = 'en-us' 108 | 109 | TIME_ZONE = 'UTC' 110 | 111 | USE_I18N = True 112 | 113 | USE_L10N = True 114 | 115 | USE_TZ = True 116 | 117 | 118 | # Static files (CSS, JavaScript, Images) 119 | # https://docs.djangoproject.com/en/3.2/howto/static-files/ 120 | 121 | STATIC_URL = '/static/' 122 | STATICFILES_DIRS = [ 123 | BASE_DIR / 'static' 124 | ] 125 | 126 | # Default primary key field type 127 | # https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field 128 | 129 | DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' 130 | -------------------------------------------------------------------------------- /frontend/base.html: -------------------------------------------------------------------------------- 1 | {% load static %} 2 | 3 | 4 | 5 | 6 | 7 | Logbook - Homepage 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 |
36 |
37 | 38 | 100 |
101 |
102 | 103 | 104 | 105 | 106 | {% block content %} 107 | {% endblock content %} 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | -------------------------------------------------------------------------------- /frontend/index-list.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | {% load static %} 3 | {% block content %} 4 | 5 |
6 |
7 |
8 |
9 | 32 | 53 | 75 | 96 | 119 | 140 |
141 |
142 |

Cheerful Loving Couple Bakers Drinking 143 | Coffee

144 | 153 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the …

Continue Reading 154 |
155 |
156 |
157 |
158 |
159 |
160 | 161 | {% endblock content %} -------------------------------------------------------------------------------- /frontend/author.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | {% load static %} 3 | {% block content %} 4 | 5 |
6 |
7 |
8 |
9 |
10 |

John Doe

11 | 19 |
20 |
21 |
22 | 23 |
24 |
25 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin sit amet vulputate augue. Duis auctor lacus id vehicula gravida. Nam suscipit vitae purus et laoreet. Donec nisi dolor, consequat vel pretium id, auctor in dui. Nam iaculis, neque ac ullamcorper. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin sit amet vulputate augue. Duis auctor lacus id vehicula gravida. Nam suscipit vitae purus et laoreet.

26 |

Donec nisi dolor, consequat vel pretium id, auctor in dui. Nam iaculis, neque ac ullamcorper.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin sit amet vulputate augue.

27 |
28 |
29 |
30 |
31 | 32 |
33 |
34 |
35 |
36 |
37 |

Posted by this author

38 |
39 |
40 |
41 | 61 |
62 |
63 | 81 |
82 |
83 | 102 |
103 |
104 | 122 |
123 |
124 | 143 |
144 |
145 | 163 |
164 |
165 | 180 |
181 |
182 |
183 |
184 | 185 | {% endblock content %} 186 | {% include 'details.footer.html' %} 187 | 188 | 189 | -------------------------------------------------------------------------------- /frontend/post-elements.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | {% load static %} 3 | {% block content %} 4 | 5 | 6 |
7 |
8 |
9 |
10 |

Elements That You Can Use To Create A New Post On This Template.

11 | 20 |
21 |
22 |
23 | post-thumb 24 | post-thumb 25 | post-thumb 26 |
27 |
28 |
29 |
30 |

Heading example

31 |

Here is example of hedings. You can use this heading by following markdownify rules. For example: use # for heading 1 and use ###### for heading 6.

32 |

Heading 1

33 |

Heading 2

34 |

Heading 3

35 |

Heading 4

36 |
Heading 5
37 |
Heading 6
38 |
39 |
Emphasis
40 |

Emphasis, aka italics, with asterisks or underscores.

41 |

Strong emphasis, aka bold, with asterisks or underscores.

42 |

Combined emphasis with asterisks and underscores.

43 |

Strikethrough uses two tildes. Scratch this. 44 |

45 |
46 | 47 |

I’m an inline-style link 48 |

49 |

I’m an inline-style link with title 50 |

51 |

I’m a reference-style link 52 |

53 |

I’m a relative reference to a repository file 54 |

55 |

You can use numbers for reference-style link definitions 56 |

57 |

Or leave it empty and use the link text itself.

58 |

URLs and URLs in angle brackets will automatically get turned into links. 59 | http://www.example.com or http://www.example.com and sometimes example.com (but not on Github, for example).

60 |

Some text to show that the reference links can follow later.

61 |
62 |
Paragraph
63 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam nihil enim maxime corporis cumque totam aliquid nam sint inventore optio modi neque laborum officiis necessitatibus, facilis placeat pariatur! Voluptatem, sed harum pariatur adipisci voluptates voluptatum cumque, porro sint minima similique magni perferendis fuga! Optio vel ipsum excepturi tempore reiciendis id quidem? Vel in, doloribus debitis nesciunt fugit sequi magnam accusantium modi neque quis, vitae velit, pariatur harum autem a! Velit impedit atque maiores animi possimus asperiores natus repellendus excepturi sint architecto eligendi non, omnis nihil. Facilis, doloremque illum. Fugit optio laborum minus debitis natus illo perspiciatis corporis voluptatum rerum laboriosam.

64 |
65 |
Ordered List
66 |
    67 |
  1. List item
  2. 68 |
  3. List item
  4. 69 |
  5. List item
  6. 70 |
  7. List item
  8. 71 |
  9. List item
  10. 72 |
73 |
74 |
Unordered List
75 |
    76 |
  • List item
  • 77 |
  • List item
  • 78 |
  • List item
  • 79 |
  • List item
  • 80 |
  • List item
  • 81 |
82 |
83 |

Notice

84 |
85 |

This is a simple note.

86 |
87 |
88 |

This is a simple tip.

89 |
90 |
91 |

This is a simple info.

92 |
93 |
94 |

Tab

95 |
96 | 97 |
98 |
This is first tab
99 |
this is second tab
100 |
this is third tab
101 |
102 |
103 |
104 |

Collapse

105 |
106 | collapse 1 107 | 108 |
109 |
This is a simple collapse
110 |
111 |
112 |
113 | collapse 2 114 | 115 |
116 |
This is a simple collapse
117 |
118 |
119 |
120 | collapse 3 121 | 122 |
123 |
This is a simple collapse
124 |
125 |
126 |
127 |
Code and Syntax Highlighting
128 |

Inline code has back-ticks around it.

129 |
var s = "JavaScript syntax highlighting";
130 | alert(s);
131 | 
132 |
133 |
s = "Python syntax highlighting"
134 | print s
135 | 
136 |
137 |
138 |
Blockquote
139 |
140 |

This is a blockquote example.

141 |
142 |
143 |
Inline HTML
144 |

You can also use raw HTML in your Markdown, and it’ll mostly work pretty well.

145 |
Definition list
146 |
Is something people use sometimes.
Markdown in HTML
147 |
Does *not* work **very** well. Use HTML tags.
148 |
149 |
150 |
Tables
151 |

Colons can be used to align columns.

152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 |
TablesAreCool
col 3 isright-aligned$1600
col 2 iscentered$12
zebra stripesare neat$1
178 |

There must be at least 3 dashes separating each header cell. The outer pipes (|) are optional, and you don’t need to make the raw Markdown line up prettily. You can also use inline Markdown.

179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 191 | 193 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 |
MarkdownLessPretty
Still 190 | renders 192 | nicely 194 |
123
203 |
204 |
Image
205 |

206 | image 207 |

208 |
209 |
Youtube video
210 |
211 | 212 |
213 |
214 |
215 |
216 |
217 |
218 | 219 | {% endblock content %} -------------------------------------------------------------------------------- /frontend/index-full.html: -------------------------------------------------------------------------------- 1 | 2 | {% extends 'base.html' %} 3 | {% load static %} 4 | {% block content %} 5 | 6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | post-thumb 14 | post-thumb 15 | post-thumb 16 |
17 |
18 |
19 |

Elements That You Can Use To Create A New Post On This 20 | Template.

21 | 30 |

Heading example Here is example of hedings. You can use this heading by following markdownify rules. For example: use # for heading 1 and use ###### for heading 6. Heading 1 Heading 2 Heading 3 Heading 4 Heading 5 Heading 6 Emphasis Emphasis, aka italics, with asterisks or underscores.

Continue Reading 31 |
32 |
33 |
34 |
35 |
36 | post-thumb 37 |
38 |
39 |
40 |

Cheerful Loving Couple Bakers Drinking Coffee

41 | 50 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out.

Continue Reading 51 |
52 |
53 |
54 |
55 |
56 | post-thumb 57 | post-thumb 58 |
59 |
60 |
61 |

Cheerful Loving Couple Bakers Drinking Coffee

62 | 71 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out.

Continue Reading 72 |
73 |
74 |
75 |
76 |
77 | post-thumb 78 |
79 |
80 |
81 |

Cheerful Loving Couple Bakers Drinking Coffee

82 | 91 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out.

Continue Reading 92 |
93 |
94 |
95 |
96 |
97 | post-thumb 98 | post-thumb 99 |
100 |
101 |
102 |

Cheerful Loving Couple Bakers Drinking Coffee

103 | 113 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out.

Continue Reading 114 |
115 |
116 |
117 |
118 |
119 | post-thumb 120 |
121 |
122 |
123 |

Cheerful Loving Couple Bakers Drinking Coffee

124 | 133 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out.

Continue Reading 134 |
135 |
136 |
137 |
138 |

Cheerful Loving Couple Bakers Drinking Coffee

139 | 148 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out.

Continue Reading 149 |
150 |
151 |
152 |
153 |
154 |
155 | 156 | {% endblock content %} 157 | 158 | -------------------------------------------------------------------------------- /static/plugins/themify-icons/themify-icons.css: -------------------------------------------------------------------------------- 1 | @font-face{font-family:themify;src:url(fonts/themify.eot?-fvbane);src:url(fonts/themify.eot?#iefix-fvbane) format('embedded-opentype'),url(fonts/themify.woff?-fvbane) format('woff'),url(fonts/themify.ttf?-fvbane) format('truetype'),url(fonts/themify.svg?-fvbane#themify) format('svg');font-weight:400;font-style:normal}[class*=" ti-"],[class^=ti-]{font-family:themify;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ti-wand:before{content:"\e600"}.ti-volume:before{content:"\e601"}.ti-user:before{content:"\e602"}.ti-unlock:before{content:"\e603"}.ti-unlink:before{content:"\e604"}.ti-trash:before{content:"\e605"}.ti-thought:before{content:"\e606"}.ti-target:before{content:"\e607"}.ti-tag:before{content:"\e608"}.ti-tablet:before{content:"\e609"}.ti-star:before{content:"\e60a"}.ti-spray:before{content:"\e60b"}.ti-signal:before{content:"\e60c"}.ti-shopping-cart:before{content:"\e60d"}.ti-shopping-cart-full:before{content:"\e60e"}.ti-settings:before{content:"\e60f"}.ti-search:before{content:"\e610"}.ti-zoom-in:before{content:"\e611"}.ti-zoom-out:before{content:"\e612"}.ti-cut:before{content:"\e613"}.ti-ruler:before{content:"\e614"}.ti-ruler-pencil:before{content:"\e615"}.ti-ruler-alt:before{content:"\e616"}.ti-bookmark:before{content:"\e617"}.ti-bookmark-alt:before{content:"\e618"}.ti-reload:before{content:"\e619"}.ti-plus:before{content:"\e61a"}.ti-pin:before{content:"\e61b"}.ti-pencil:before{content:"\e61c"}.ti-pencil-alt:before{content:"\e61d"}.ti-paint-roller:before{content:"\e61e"}.ti-paint-bucket:before{content:"\e61f"}.ti-na:before{content:"\e620"}.ti-mobile:before{content:"\e621"}.ti-minus:before{content:"\e622"}.ti-medall:before{content:"\e623"}.ti-medall-alt:before{content:"\e624"}.ti-marker:before{content:"\e625"}.ti-marker-alt:before{content:"\e626"}.ti-arrow-up:before{content:"\e627"}.ti-arrow-right:before{content:"\e628"}.ti-arrow-left:before{content:"\e629"}.ti-arrow-down:before{content:"\e62a"}.ti-lock:before{content:"\e62b"}.ti-location-arrow:before{content:"\e62c"}.ti-link:before{content:"\e62d"}.ti-layout:before{content:"\e62e"}.ti-layers:before{content:"\e62f"}.ti-layers-alt:before{content:"\e630"}.ti-key:before{content:"\e631"}.ti-import:before{content:"\e632"}.ti-image:before{content:"\e633"}.ti-heart:before{content:"\e634"}.ti-heart-broken:before{content:"\e635"}.ti-hand-stop:before{content:"\e636"}.ti-hand-open:before{content:"\e637"}.ti-hand-drag:before{content:"\e638"}.ti-folder:before{content:"\e639"}.ti-flag:before{content:"\e63a"}.ti-flag-alt:before{content:"\e63b"}.ti-flag-alt-2:before{content:"\e63c"}.ti-eye:before{content:"\e63d"}.ti-export:before{content:"\e63e"}.ti-exchange-vertical:before{content:"\e63f"}.ti-desktop:before{content:"\e640"}.ti-cup:before{content:"\e641"}.ti-crown:before{content:"\e642"}.ti-comments:before{content:"\e643"}.ti-comment:before{content:"\e644"}.ti-comment-alt:before{content:"\e645"}.ti-close:before{content:"\e646"}.ti-clip:before{content:"\e647"}.ti-angle-up:before{content:"\e648"}.ti-angle-right:before{content:"\e649"}.ti-angle-left:before{content:"\e64a"}.ti-angle-down:before{content:"\e64b"}.ti-check:before{content:"\e64c"}.ti-check-box:before{content:"\e64d"}.ti-camera:before{content:"\e64e"}.ti-announcement:before{content:"\e64f"}.ti-brush:before{content:"\e650"}.ti-briefcase:before{content:"\e651"}.ti-bolt:before{content:"\e652"}.ti-bolt-alt:before{content:"\e653"}.ti-blackboard:before{content:"\e654"}.ti-bag:before{content:"\e655"}.ti-move:before{content:"\e656"}.ti-arrows-vertical:before{content:"\e657"}.ti-arrows-horizontal:before{content:"\e658"}.ti-fullscreen:before{content:"\e659"}.ti-arrow-top-right:before{content:"\e65a"}.ti-arrow-top-left:before{content:"\e65b"}.ti-arrow-circle-up:before{content:"\e65c"}.ti-arrow-circle-right:before{content:"\e65d"}.ti-arrow-circle-left:before{content:"\e65e"}.ti-arrow-circle-down:before{content:"\e65f"}.ti-angle-double-up:before{content:"\e660"}.ti-angle-double-right:before{content:"\e661"}.ti-angle-double-left:before{content:"\e662"}.ti-angle-double-down:before{content:"\e663"}.ti-zip:before{content:"\e664"}.ti-world:before{content:"\e665"}.ti-wheelchair:before{content:"\e666"}.ti-view-list:before{content:"\e667"}.ti-view-list-alt:before{content:"\e668"}.ti-view-grid:before{content:"\e669"}.ti-uppercase:before{content:"\e66a"}.ti-upload:before{content:"\e66b"}.ti-underline:before{content:"\e66c"}.ti-truck:before{content:"\e66d"}.ti-timer:before{content:"\e66e"}.ti-ticket:before{content:"\e66f"}.ti-thumb-up:before{content:"\e670"}.ti-thumb-down:before{content:"\e671"}.ti-text:before{content:"\e672"}.ti-stats-up:before{content:"\e673"}.ti-stats-down:before{content:"\e674"}.ti-split-v:before{content:"\e675"}.ti-split-h:before{content:"\e676"}.ti-smallcap:before{content:"\e677"}.ti-shine:before{content:"\e678"}.ti-shift-right:before{content:"\e679"}.ti-shift-left:before{content:"\e67a"}.ti-shield:before{content:"\e67b"}.ti-notepad:before{content:"\e67c"}.ti-server:before{content:"\e67d"}.ti-quote-right:before{content:"\e67e"}.ti-quote-left:before{content:"\e67f"}.ti-pulse:before{content:"\e680"}.ti-printer:before{content:"\e681"}.ti-power-off:before{content:"\e682"}.ti-plug:before{content:"\e683"}.ti-pie-chart:before{content:"\e684"}.ti-paragraph:before{content:"\e685"}.ti-panel:before{content:"\e686"}.ti-package:before{content:"\e687"}.ti-music:before{content:"\e688"}.ti-music-alt:before{content:"\e689"}.ti-mouse:before{content:"\e68a"}.ti-mouse-alt:before{content:"\e68b"}.ti-money:before{content:"\e68c"}.ti-microphone:before{content:"\e68d"}.ti-menu:before{content:"\e68e"}.ti-menu-alt:before{content:"\e68f"}.ti-map:before{content:"\e690"}.ti-map-alt:before{content:"\e691"}.ti-loop:before{content:"\e692"}.ti-location-pin:before{content:"\e693"}.ti-list:before{content:"\e694"}.ti-light-bulb:before{content:"\e695"}.ti-Italic:before{content:"\e696"}.ti-info:before{content:"\e697"}.ti-infinite:before{content:"\e698"}.ti-id-badge:before{content:"\e699"}.ti-hummer:before{content:"\e69a"}.ti-home:before{content:"\e69b"}.ti-help:before{content:"\e69c"}.ti-headphone:before{content:"\e69d"}.ti-harddrives:before{content:"\e69e"}.ti-harddrive:before{content:"\e69f"}.ti-gift:before{content:"\e6a0"}.ti-game:before{content:"\e6a1"}.ti-filter:before{content:"\e6a2"}.ti-files:before{content:"\e6a3"}.ti-file:before{content:"\e6a4"}.ti-eraser:before{content:"\e6a5"}.ti-envelope:before{content:"\e6a6"}.ti-download:before{content:"\e6a7"}.ti-direction:before{content:"\e6a8"}.ti-direction-alt:before{content:"\e6a9"}.ti-dashboard:before{content:"\e6aa"}.ti-control-stop:before{content:"\e6ab"}.ti-control-shuffle:before{content:"\e6ac"}.ti-control-play:before{content:"\e6ad"}.ti-control-pause:before{content:"\e6ae"}.ti-control-forward:before{content:"\e6af"}.ti-control-backward:before{content:"\e6b0"}.ti-cloud:before{content:"\e6b1"}.ti-cloud-up:before{content:"\e6b2"}.ti-cloud-down:before{content:"\e6b3"}.ti-clipboard:before{content:"\e6b4"}.ti-car:before{content:"\e6b5"}.ti-calendar:before{content:"\e6b6"}.ti-book:before{content:"\e6b7"}.ti-bell:before{content:"\e6b8"}.ti-basketball:before{content:"\e6b9"}.ti-bar-chart:before{content:"\e6ba"}.ti-bar-chart-alt:before{content:"\e6bb"}.ti-back-right:before{content:"\e6bc"}.ti-back-left:before{content:"\e6bd"}.ti-arrows-corner:before{content:"\e6be"}.ti-archive:before{content:"\e6bf"}.ti-anchor:before{content:"\e6c0"}.ti-align-right:before{content:"\e6c1"}.ti-align-left:before{content:"\e6c2"}.ti-align-justify:before{content:"\e6c3"}.ti-align-center:before{content:"\e6c4"}.ti-alert:before{content:"\e6c5"}.ti-alarm-clock:before{content:"\e6c6"}.ti-agenda:before{content:"\e6c7"}.ti-write:before{content:"\e6c8"}.ti-window:before{content:"\e6c9"}.ti-widgetized:before{content:"\e6ca"}.ti-widget:before{content:"\e6cb"}.ti-widget-alt:before{content:"\e6cc"}.ti-wallet:before{content:"\e6cd"}.ti-video-clapper:before{content:"\e6ce"}.ti-video-camera:before{content:"\e6cf"}.ti-vector:before{content:"\e6d0"}.ti-themify-logo:before{content:"\e6d1"}.ti-themify-favicon:before{content:"\e6d2"}.ti-themify-favicon-alt:before{content:"\e6d3"}.ti-support:before{content:"\e6d4"}.ti-stamp:before{content:"\e6d5"}.ti-split-v-alt:before{content:"\e6d6"}.ti-slice:before{content:"\e6d7"}.ti-shortcode:before{content:"\e6d8"}.ti-shift-right-alt:before{content:"\e6d9"}.ti-shift-left-alt:before{content:"\e6da"}.ti-ruler-alt-2:before{content:"\e6db"}.ti-receipt:before{content:"\e6dc"}.ti-pin2:before{content:"\e6dd"}.ti-pin-alt:before{content:"\e6de"}.ti-pencil-alt2:before{content:"\e6df"}.ti-palette:before{content:"\e6e0"}.ti-more:before{content:"\e6e1"}.ti-more-alt:before{content:"\e6e2"}.ti-microphone-alt:before{content:"\e6e3"}.ti-magnet:before{content:"\e6e4"}.ti-line-double:before{content:"\e6e5"}.ti-line-dotted:before{content:"\e6e6"}.ti-line-dashed:before{content:"\e6e7"}.ti-layout-width-full:before{content:"\e6e8"}.ti-layout-width-default:before{content:"\e6e9"}.ti-layout-width-default-alt:before{content:"\e6ea"}.ti-layout-tab:before{content:"\e6eb"}.ti-layout-tab-window:before{content:"\e6ec"}.ti-layout-tab-v:before{content:"\e6ed"}.ti-layout-tab-min:before{content:"\e6ee"}.ti-layout-slider:before{content:"\e6ef"}.ti-layout-slider-alt:before{content:"\e6f0"}.ti-layout-sidebar-right:before{content:"\e6f1"}.ti-layout-sidebar-none:before{content:"\e6f2"}.ti-layout-sidebar-left:before{content:"\e6f3"}.ti-layout-placeholder:before{content:"\e6f4"}.ti-layout-menu:before{content:"\e6f5"}.ti-layout-menu-v:before{content:"\e6f6"}.ti-layout-menu-separated:before{content:"\e6f7"}.ti-layout-menu-full:before{content:"\e6f8"}.ti-layout-media-right-alt:before{content:"\e6f9"}.ti-layout-media-right:before{content:"\e6fa"}.ti-layout-media-overlay:before{content:"\e6fb"}.ti-layout-media-overlay-alt:before{content:"\e6fc"}.ti-layout-media-overlay-alt-2:before{content:"\e6fd"}.ti-layout-media-left-alt:before{content:"\e6fe"}.ti-layout-media-left:before{content:"\e6ff"}.ti-layout-media-center-alt:before{content:"\e700"}.ti-layout-media-center:before{content:"\e701"}.ti-layout-list-thumb:before{content:"\e702"}.ti-layout-list-thumb-alt:before{content:"\e703"}.ti-layout-list-post:before{content:"\e704"}.ti-layout-list-large-image:before{content:"\e705"}.ti-layout-line-solid:before{content:"\e706"}.ti-layout-grid4:before{content:"\e707"}.ti-layout-grid3:before{content:"\e708"}.ti-layout-grid2:before{content:"\e709"}.ti-layout-grid2-thumb:before{content:"\e70a"}.ti-layout-cta-right:before{content:"\e70b"}.ti-layout-cta-left:before{content:"\e70c"}.ti-layout-cta-center:before{content:"\e70d"}.ti-layout-cta-btn-right:before{content:"\e70e"}.ti-layout-cta-btn-left:before{content:"\e70f"}.ti-layout-column4:before{content:"\e710"}.ti-layout-column3:before{content:"\e711"}.ti-layout-column2:before{content:"\e712"}.ti-layout-accordion-separated:before{content:"\e713"}.ti-layout-accordion-merged:before{content:"\e714"}.ti-layout-accordion-list:before{content:"\e715"}.ti-ink-pen:before{content:"\e716"}.ti-info-alt:before{content:"\e717"}.ti-help-alt:before{content:"\e718"}.ti-headphone-alt:before{content:"\e719"}.ti-hand-point-up:before{content:"\e71a"}.ti-hand-point-right:before{content:"\e71b"}.ti-hand-point-left:before{content:"\e71c"}.ti-hand-point-down:before{content:"\e71d"}.ti-gallery:before{content:"\e71e"}.ti-face-smile:before{content:"\e71f"}.ti-face-sad:before{content:"\e720"}.ti-credit-card:before{content:"\e721"}.ti-control-skip-forward:before{content:"\e722"}.ti-control-skip-backward:before{content:"\e723"}.ti-control-record:before{content:"\e724"}.ti-control-eject:before{content:"\e725"}.ti-comments-smiley:before{content:"\e726"}.ti-brush-alt:before{content:"\e727"}.ti-youtube:before{content:"\e728"}.ti-vimeo:before{content:"\e729"}.ti-twitter:before{content:"\e72a"}.ti-time:before{content:"\e72b"}.ti-tumblr:before{content:"\e72c"}.ti-skype:before{content:"\e72d"}.ti-share:before{content:"\e72e"}.ti-share-alt:before{content:"\e72f"}.ti-rocket:before{content:"\e730"}.ti-pinterest:before{content:"\e731"}.ti-new-window:before{content:"\e732"}.ti-microsoft:before{content:"\e733"}.ti-list-ol:before{content:"\e734"}.ti-linkedin:before{content:"\e735"}.ti-layout-sidebar-2:before{content:"\e736"}.ti-layout-grid4-alt:before{content:"\e737"}.ti-layout-grid3-alt:before{content:"\e738"}.ti-layout-grid2-alt:before{content:"\e739"}.ti-layout-column4-alt:before{content:"\e73a"}.ti-layout-column3-alt:before{content:"\e73b"}.ti-layout-column2-alt:before{content:"\e73c"}.ti-instagram:before{content:"\e73d"}.ti-google:before{content:"\e73e"}.ti-github:before{content:"\e73f"}.ti-flickr:before{content:"\e740"}.ti-facebook:before{content:"\e741"}.ti-dropbox:before{content:"\e742"}.ti-dribbble:before{content:"\e743"}.ti-apple:before{content:"\e744"}.ti-android:before{content:"\e745"}.ti-save:before{content:"\e746"}.ti-save-alt:before{content:"\e747"}.ti-yahoo:before{content:"\e748"}.ti-wordpress:before{content:"\e749"}.ti-vimeo-alt:before{content:"\e74a"}.ti-twitter-alt:before{content:"\e74b"}.ti-tumblr-alt:before{content:"\e74c"}.ti-trello:before{content:"\e74d"}.ti-stack-overflow:before{content:"\e74e"}.ti-soundcloud:before{content:"\e74f"}.ti-sharethis:before{content:"\e750"}.ti-sharethis-alt:before{content:"\e751"}.ti-reddit:before{content:"\e752"}.ti-pinterest-alt:before{content:"\e753"}.ti-microsoft-alt:before{content:"\e754"}.ti-linux:before{content:"\e755"}.ti-jsfiddle:before{content:"\e756"}.ti-joomla:before{content:"\e757"}.ti-html5:before{content:"\e758"}.ti-flickr-alt:before{content:"\e759"}.ti-email:before{content:"\e75a"}.ti-drupal:before{content:"\e75b"}.ti-dropbox-alt:before{content:"\e75c"}.ti-css3:before{content:"\e75d"}.ti-rss:before{content:"\e75e"}.ti-rss-alt:before{content:"\e75f"} -------------------------------------------------------------------------------- /frontend/index-list-right.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | {% load static %} 3 | {% block content %} 4 |
5 |
6 |
7 |
8 | 31 | 52 | 74 | 95 | 118 | 139 |
140 |
141 |

Cheerful Loving Couple Bakers Drinking 142 | Coffee

143 | 152 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the …

Continue Reading 153 |
154 |
155 |
156 | 249 |
250 |
251 |
252 | 253 | {% endblock content %} -------------------------------------------------------------------------------- /frontend/index-list-left.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | {% load static %} 3 | {% block content %} 4 | 5 |
6 |
7 |
8 | 101 |
102 | 125 | 146 | 168 | 189 | 212 | 233 |
234 |
235 |

Cheerful Loving Couple Bakers Drinking 236 | Coffee

237 | 246 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the …

Continue Reading 247 |
248 |
249 |
250 |
251 |
252 |
253 | 254 | {% endblock content %} -------------------------------------------------------------------------------- /frontend/index-full-right.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | {% load static %} 3 | {% block content %} 4 | 5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | post-thumb 13 | post-thumb 14 | post-thumb 15 |
16 |
17 |
18 |

Elements That You Can Use To Create A New Post On This Template.

19 | 29 |

Heading example Here is example of hedings. You can use this heading by following markdownify rules. For example: use # for heading 1 and use ###### for heading 6. Heading 1 Heading 2 Heading 3 Heading 4 Heading 5 Heading 6 Emphasis Emphasis, aka italics, with asterisks or underscores.

Continue Reading 30 |
31 |
32 |
33 |
34 |
35 | post-thumb 36 |
37 |
38 |
39 |

Cheerful Loving Couple Bakers Drinking Coffee

40 | 49 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out.

Continue Reading 50 |
51 |
52 |
53 |
54 |
55 | post-thumb 56 | post-thumb 57 |
58 |
59 |
60 |

Cheerful Loving Couple Bakers Drinking Coffee

61 | 70 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out.

Continue Reading 71 |
72 |
73 |
74 |
75 |
76 | post-thumb 77 |
78 |
79 |
80 |

Cheerful Loving Couple Bakers Drinking Coffee

81 | 90 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out.

Continue Reading 91 |
92 |
93 |
94 |
95 |
96 | post-thumb 97 | post-thumb 98 |
99 |
100 |
101 |

Cheerful Loving Couple Bakers Drinking Coffee

102 | 112 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out.

Continue Reading 113 |
114 |
115 |
116 |
117 |
118 | post-thumb 119 |
120 |
121 |
122 |

Cheerful Loving Couple Bakers Drinking Coffee

123 | 132 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out.

Continue Reading 133 |
134 |
135 |
136 |
137 |

Cheerful Loving Couple Bakers Drinking Coffee

138 | 147 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out.

Continue Reading 148 |
149 |
150 |
151 |
248 | 249 | 250 | {% endblock content %} 251 | 252 | 253 | 254 | -------------------------------------------------------------------------------- /frontend/index-full-left.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | {% load static %} 3 | {% block content %} 4 | 5 |
6 |
7 |
8 | 101 |
102 |
103 |
104 |
105 | post-thumb 106 | post-thumb 107 | post-thumb 108 |
109 |
110 |
111 |

Elements 112 | That You Can Use To Create A New Post On This Template.

113 | 123 |

Heading example Here is example of hedings. You can use this heading by following markdownify rules. For example: use # for heading 1 and use ###### for heading 6. Heading 1 Heading 2 Heading 3 Heading 4 Heading 5 Heading 6 Emphasis Emphasis, aka italics, with asterisks or underscores.

Continue Reading 124 |
125 |
126 |
127 |
128 |
129 | post-thumb 130 |
131 |
132 |
133 |

Cheerful 134 | Loving Couple Bakers Drinking Coffee

135 | 145 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out.

Continue Reading 146 |
147 |
148 |
149 |
150 |
151 | post-thumb 152 | post-thumb 153 |
154 |
155 |
156 |

Cheerful 157 | Loving Couple Bakers Drinking Coffee

158 | 168 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out.

Continue Reading 169 |
170 |
171 |
172 |
173 |
174 | post-thumb 175 |
176 |
177 |
178 |

Cheerful 179 | Loving Couple Bakers Drinking Coffee

180 | 190 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out.

Continue Reading 191 |
192 |
193 |
194 |
195 |
196 | post-thumb 197 | post-thumb 198 |
199 |
200 |
201 |

Cheerful 202 | Loving Couple Bakers Drinking Coffee

203 | 213 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out.

Continue Reading 214 |
215 |
216 |
217 |
218 |
219 | post-thumb 220 |
221 |
222 |
223 |

Cheerful 224 | Loving Couple Bakers Drinking Coffee

225 | 234 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out.

Continue Reading 235 |
236 |
237 |
238 |
239 |

Cheerful 240 | Loving Couple Bakers Drinking Coffee

241 | 250 |

It’s no secret that the digital industry is booming. From exciting startups to global brands, companies are reaching out to digital agencies, responding to the new possibilities available. However, the industry is fast becoming overcrowded, heaving with agencies offering similar services — on the surface, at least. Producing creative, fresh projects is the key to standing out.

Continue Reading 251 |
252 |
253 |
254 |
255 |
256 |
257 | 258 | {% endblock content %} 259 | -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- 1 | /** 2 | * WEBSITE: https://themefisher.com 3 | * TWITTER: https://twitter.com/themefisher 4 | * FACEBOOK: https://www.facebook.com/themefisher 5 | * GITHUB: https://github.com/themefisher/ 6 | */ 7 | 8 | /*!------------------------------------------------------------------ 9 | [MAIN STYLESHEET] 10 | 11 | PROJECT: Project Name 12 | VERSION: Versoin Number 13 | -------------------------------------------------------------------*/ 14 | /*------------------------------------------------------------------ 15 | [TABLE OF CONTENTS] 16 | -------------------------------------------------------------------*/ 17 | /* typography */ 18 | body { 19 | line-height: 1.7; 20 | font-family: "Open Sans", sans-serif; 21 | -webkit-font-smoothing: antialiased; 22 | color: #696c6d; 23 | font-size: 14px; 24 | } 25 | 26 | p, .paragraph { 27 | font-weight: 400; 28 | color: #696c6d; 29 | font-size: 14px; 30 | line-height: 1.7; 31 | font-family: "Open Sans", sans-serif; 32 | } 33 | 34 | h1, h2, h3, h4, h5, h6 { 35 | color: #1c1d1f; 36 | font-family: "Montserrat", sans-serif; 37 | font-weight: 600; 38 | line-height: 1.2; 39 | } 40 | 41 | h1, .h1 { 42 | font-size: 45px; 43 | } 44 | 45 | h2, .h2 { 46 | font-size: 36px; 47 | } 48 | 49 | h3, .h3 { 50 | font-size: 28px; 51 | } 52 | 53 | h4, .h4 { 54 | font-size: 22px; 55 | } 56 | 57 | h5, .h5 { 58 | font-size: 18px; 59 | } 60 | 61 | h6, .h6 { 62 | font-size: 14px; 63 | } 64 | 65 | /* Button style */ 66 | .btn { 67 | font-size: 14px; 68 | font-family: "Open Sans", sans-serif; 69 | text-transform: capitalize; 70 | padding: 8px 25px; 71 | border-radius: 50px; 72 | border: 1px solid; 73 | position: relative; 74 | z-index: 1; 75 | transition: 0.2s ease; 76 | } 77 | .btn:hover, .btn:active, .btn:focus { 78 | outline: 0; 79 | box-shadow: none !important; 80 | } 81 | 82 | .btn-primary { 83 | background: #ce8460; 84 | color: #fff; 85 | border-color: #ce8460; 86 | } 87 | .btn-primary:active, .btn-primary:hover, .btn-primary.focus, .btn-primary.active { 88 | background: #ce8460 !important; 89 | border-color: #ce8460 !important; 90 | } 91 | 92 | .btn-outline-primary { 93 | background: transparent; 94 | color: #696c6d; 95 | border-color: #ce8460; 96 | } 97 | .btn-outline-primary:active, .btn-outline-primary:hover, .btn-outline-primary.focus, .btn-outline-primary.active { 98 | background: #ce8460 !important; 99 | border-color: #ce8460 !important; 100 | color: #fff; 101 | } 102 | 103 | .btn-outline-light { 104 | background: transparent; 105 | color: #696c6d; 106 | border-color: #ddd; 107 | } 108 | .btn-outline-light:active, .btn-outline-light:hover, .btn-outline-light.focus, .btn-outline-light.active { 109 | background: #f0f0f0 !important; 110 | border-color: #ddd !important; 111 | } 112 | 113 | body { 114 | background-color: #fff; 115 | overflow-x: hidden; 116 | } 117 | 118 | ::-moz-selection { 119 | background: #daa287; 120 | color: #fff; 121 | } 122 | 123 | ::selection { 124 | background: #daa287; 125 | color: #fff; 126 | } 127 | 128 | /* preloader */ 129 | .preloader { 130 | position: fixed; 131 | top: 0; 132 | left: 0; 133 | right: 0; 134 | bottom: 0; 135 | background-color: #fff; 136 | z-index: 9999; 137 | display: flex; 138 | align-items: center; 139 | justify-content: center; 140 | } 141 | 142 | img { 143 | vertical-align: middle; 144 | border: 0; 145 | } 146 | 147 | a, 148 | a:hover, 149 | a:focus { 150 | text-decoration: none; 151 | } 152 | 153 | a, 154 | button, 155 | select { 156 | cursor: pointer; 157 | transition: 0.2s ease; 158 | } 159 | a:focus, 160 | button:focus, 161 | select:focus { 162 | outline: 0; 163 | } 164 | 165 | a:hover { 166 | color: #ce8460; 167 | } 168 | 169 | .slick-slide { 170 | outline: 0; 171 | } 172 | 173 | .section { 174 | padding-top: 100px; 175 | padding-bottom: 100px; 176 | } 177 | .section-sm { 178 | padding-top: 80px; 179 | padding-bottom: 80px; 180 | } 181 | 182 | .bg-cover { 183 | background-size: cover; 184 | background-position: center center; 185 | background-repeat: no-repeat; 186 | } 187 | 188 | .border-primary { 189 | border-color: #ddd !important; 190 | } 191 | 192 | /* overlay */ 193 | .overlay { 194 | position: relative; 195 | } 196 | .overlay::before { 197 | position: absolute; 198 | content: ""; 199 | height: 100%; 200 | width: 100%; 201 | top: 0; 202 | left: 0; 203 | background: #000; 204 | opacity: 0.5; 205 | } 206 | 207 | .outline-0 { 208 | outline: 0 !important; 209 | } 210 | 211 | .d-unset { 212 | display: unset !important; 213 | } 214 | 215 | .bg-primary { 216 | background: #ce8460 !important; 217 | } 218 | 219 | .text-primary { 220 | color: #ce8460 !important; 221 | } 222 | 223 | .text-color { 224 | color: #696c6d; 225 | } 226 | 227 | .mb-10 { 228 | margin-bottom: 10px !important; 229 | } 230 | 231 | .mb-20 { 232 | margin-bottom: 20px !important; 233 | } 234 | 235 | .mb-30 { 236 | margin-bottom: 30px !important; 237 | } 238 | 239 | .mb-40 { 240 | margin-bottom: 40px !important; 241 | } 242 | 243 | .mb-50 { 244 | margin-bottom: 50px !important; 245 | } 246 | 247 | .mb-60 { 248 | margin-bottom: 60px !important; 249 | } 250 | 251 | .mb-70 { 252 | margin-bottom: 70px !important; 253 | } 254 | 255 | .mb-80 { 256 | margin-bottom: 80px !important; 257 | } 258 | 259 | .mb-90 { 260 | margin-bottom: 90px !important; 261 | } 262 | 263 | .mb-100 { 264 | margin-bottom: 100px !important; 265 | } 266 | 267 | .zindex-1 { 268 | z-index: 1; 269 | } 270 | 271 | .overflow-hidden { 272 | overflow: hidden; 273 | } 274 | 275 | .rounded-lg, .post-slider { 276 | border-radius: 10px !important; 277 | } 278 | 279 | .border-default { 280 | border-color: #ddd !important; 281 | } 282 | 283 | .form-control:focus { 284 | outline: 0; 285 | box-shadow: none; 286 | } 287 | .form-control::-moz-placeholder { 288 | font-size: 80%; 289 | } 290 | .form-control::placeholder { 291 | font-size: 80%; 292 | } 293 | 294 | .nav-item { 295 | margin: 0; 296 | } 297 | .nav-item .nav-link { 298 | text-transform: capitalize; 299 | } 300 | 301 | .navbar-white .navbar-nav .nav-link { 302 | color: #1c1d1f; 303 | } 304 | .navbar-white .navbar-nav .nav-link:hover { 305 | color: #ce8460; 306 | } 307 | 308 | .navbar-expand-lg .navbar-nav .nav-link { 309 | padding: 15px 20px; 310 | } 311 | 312 | .navbar .dropdown:hover .dropdown-menu { 313 | visibility: visible; 314 | opacity: 1; 315 | transform: scaleX(1); 316 | } 317 | .navbar .dropdown-menu { 318 | box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12); 319 | padding: 10px 0; 320 | border: 0; 321 | top: 50px; 322 | left: 0px; 323 | border-radius: 0; 324 | display: block; 325 | visibility: hidden; 326 | transition: 0.3s ease; 327 | opacity: 0; 328 | transform: scale(0.8); 329 | background: #fff; 330 | border-radius: 10px; 331 | } 332 | @media (max-width: 991px) { 333 | .navbar .dropdown-menu { 334 | display: none; 335 | opacity: 1; 336 | visibility: visible; 337 | transform: scale(1); 338 | transform-origin: unset; 339 | } 340 | } 341 | .navbar .dropdown-menu.show { 342 | visibility: hidden; 343 | } 344 | @media (max-width: 991px) { 345 | .navbar .dropdown-menu.show { 346 | visibility: visible; 347 | display: block; 348 | } 349 | } 350 | .navbar .dropdown-item { 351 | position: relative; 352 | color: #1c1d1f; 353 | transition: 0.2s ease; 354 | font-size: 14px; 355 | } 356 | @media (max-width: 991px) { 357 | .navbar .dropdown-item { 358 | text-align: center; 359 | } 360 | } 361 | .navbar .dropdown-item:not(:last-child) { 362 | margin-bottom: 10px; 363 | } 364 | .navbar .dropdown-item:hover { 365 | color: #ce8460 !important; 366 | background: transparent; 367 | } 368 | 369 | /* search */ 370 | .search-btn { 371 | border: 0; 372 | background: transparent; 373 | } 374 | 375 | .search-wrapper { 376 | position: absolute; 377 | top: 0; 378 | left: 0; 379 | right: 0; 380 | height: 100%; 381 | z-index: 2; 382 | visibility: hidden; 383 | transition: 0.2s ease; 384 | opacity: 0; 385 | } 386 | .search-wrapper.open { 387 | visibility: visible; 388 | opacity: 1; 389 | } 390 | 391 | .search-box { 392 | height: 100%; 393 | width: 100%; 394 | border: 0; 395 | background: #fff; 396 | font-size: 20px; 397 | padding: 0; 398 | } 399 | .search-box:focus { 400 | box-shadow: none !important; 401 | outline: 0; 402 | } 403 | 404 | .search-close { 405 | position: absolute; 406 | right: 5px; 407 | top: 50%; 408 | transform: translateY(-50%); 409 | border: 0; 410 | background: transparent; 411 | page-break-after: 10px; 412 | font-size: 20px; 413 | } 414 | 415 | .post-title { 416 | color: #1c1d1f; 417 | } 418 | .post-title:hover { 419 | color: #ce8460; 420 | } 421 | 422 | .post-meta li { 423 | margin-right: 10px; 424 | font-size: 90%; 425 | } 426 | .post-meta a { 427 | color: #696c6d; 428 | border-bottom: 1px dotted #ddd; 429 | } 430 | .post-meta a:hover { 431 | color: #ce8460; 432 | } 433 | 434 | .recent-thumb-alt { 435 | font-size: 0; 436 | height: 60px; 437 | width: 60px; 438 | border-radius: 50%; 439 | background-color: #ce8460; 440 | text-align: center; 441 | } 442 | .recent-thumb-alt::first-letter { 443 | font-size: 40px; 444 | line-height: 60px; 445 | color: #fff; 446 | } 447 | 448 | .social-icons { 449 | margin-bottom: 0; 450 | } 451 | .social-icons a { 452 | display: block; 453 | color: #888c8e; 454 | padding: 5px; 455 | font-size: 14px; 456 | } 457 | .social-icons a:hover { 458 | color: #ce8460; 459 | } 460 | 461 | .social-icons-rounded { 462 | margin-bottom: 0; 463 | } 464 | .social-icons-rounded a { 465 | display: block; 466 | color: #888c8e; 467 | font-size: 14px; 468 | height: 40px; 469 | width: 40px; 470 | line-height: 40px; 471 | border-radius: 50%; 472 | border: 1px solid #ddd; 473 | } 474 | .social-icons-rounded a:hover { 475 | color: #ce8460; 476 | border-color: #ce8460; 477 | } 478 | 479 | .post-slider { 480 | overflow: hidden; 481 | margin-bottom: 20px; 482 | } 483 | .post-slider img { 484 | border-radius: inherit; 485 | } 486 | .post-slider:hover .prevArrow { 487 | left: 10px; 488 | } 489 | .post-slider:hover .nextArrow { 490 | right: 10px; 491 | } 492 | 493 | .slider-sm .slick-arrow { 494 | height: 35px; 495 | width: 35px; 496 | line-height: 35px; 497 | } 498 | 499 | .slick-arrow { 500 | position: absolute; 501 | top: 50%; 502 | transform: translateY(-50%); 503 | z-index: 9; 504 | height: 50px; 505 | width: 50px; 506 | line-height: 50px; 507 | border-radius: 50%; 508 | background: rgba(206, 132, 96, 0.5); 509 | color: #fff; 510 | border: 0; 511 | } 512 | @media (max-width: 575px) { 513 | .slick-arrow { 514 | display: none; 515 | } 516 | } 517 | .slick-arrow:focus { 518 | outline: 0; 519 | } 520 | .slick-arrow:hover { 521 | background: #ce8460; 522 | } 523 | 524 | .prevArrow { 525 | left: -60px; 526 | } 527 | 528 | .nextArrow { 529 | right: -60px; 530 | } 531 | 532 | .pagination { 533 | margin-top: 50px; 534 | } 535 | .pagination .page-item .page-link { 536 | display: inline-block; 537 | width: 40px; 538 | height: 40px; 539 | line-height: 40px; 540 | border-radius: 50%; 541 | background: #f0f0f0; 542 | text-align: center; 543 | padding: 0; 544 | margin-right: 10px; 545 | border: 0; 546 | color: #696c6d; 547 | } 548 | .pagination .page-item .page-link:hover { 549 | background: #ce8460; 550 | color: #fff; 551 | } 552 | .pagination .page-item .page-link:focus { 553 | box-shadow: none; 554 | } 555 | .pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link { 556 | border-radius: 50%; 557 | } 558 | .pagination .page-item.active .page-link { 559 | background: #ce8460; 560 | color: #fff; 561 | } 562 | 563 | .content * { 564 | word-break: break-word; 565 | overflow-wrap: break-word; 566 | } 567 | .content img { 568 | max-width: 100%; 569 | } 570 | .content h1, 571 | .content h2, 572 | .content h3, 573 | .content h4, 574 | .content h5, 575 | .content h6 { 576 | font-weight: 500; 577 | } 578 | .content strong { 579 | font-weight: 600; 580 | } 581 | .content a { 582 | color: #696c6d; 583 | border-bottom: 1px dotted #ddd; 584 | } 585 | .content a:hover { 586 | color: #ce8460; 587 | } 588 | .content ol, 589 | .content ul { 590 | padding-left: 20px; 591 | } 592 | .content ol li, 593 | .content ul li { 594 | margin-bottom: 10px; 595 | } 596 | .content ul { 597 | padding-left: 0; 598 | margin-bottom: 20px; 599 | list-style-type: none; 600 | } 601 | .content ul li { 602 | padding-left: 20px; 603 | position: relative; 604 | } 605 | .content ul li::before { 606 | position: absolute; 607 | content: ""; 608 | height: 8px; 609 | width: 8px; 610 | border-radius: 50%; 611 | background: #ce8460; 612 | left: 3px; 613 | top: 8px; 614 | } 615 | .content table { 616 | width: 100%; 617 | max-width: 100%; 618 | margin-bottom: 1rem; 619 | border: 1px solid #ddd; 620 | } 621 | .content table td, 622 | .content table th { 623 | padding: 0.75rem; 624 | vertical-align: top; 625 | margin-bottom: 0; 626 | } 627 | .content tr:not(:last-child) { 628 | border-bottom: 1px solid #ddd; 629 | } 630 | .content th { 631 | font-weight: 500; 632 | } 633 | .content thead { 634 | background: #f0f0f0; 635 | margin-bottom: 0; 636 | } 637 | .content thead tr { 638 | border-bottom: 1px solid #ddd; 639 | } 640 | .content tbody { 641 | background: #fdfdfd; 642 | margin-bottom: 0; 643 | } 644 | .content .notices { 645 | margin: 2rem 0; 646 | position: relative; 647 | overflow: hidden; 648 | } 649 | .content .notices p { 650 | padding: 10px; 651 | margin-bottom: 0; 652 | } 653 | .content .notices p::before { 654 | position: absolute; 655 | top: 2px; 656 | color: #fff; 657 | font-family: "themify"; 658 | font-weight: 900; 659 | content: "\e717"; 660 | left: 10px; 661 | } 662 | .content .notices.note p { 663 | border-top: 30px solid #6ab0de; 664 | background: #f0f0f0; 665 | } 666 | .content .notices.note p::after { 667 | content: "Note"; 668 | position: absolute; 669 | top: 2px; 670 | color: #fff; 671 | left: 2rem; 672 | } 673 | .content .notices.tip p { 674 | border-top: 30px solid #78C578; 675 | background: #f0f0f0; 676 | } 677 | .content .notices.tip p::after { 678 | content: "Tip"; 679 | position: absolute; 680 | top: 2px; 681 | color: #fff; 682 | left: 2rem; 683 | } 684 | .content .notices.info p { 685 | border-top: 30px solid #F0B37E; 686 | background: #f0f0f0; 687 | } 688 | .content .notices.info p::after { 689 | content: "Info"; 690 | position: absolute; 691 | top: 2px; 692 | color: #fff; 693 | left: 2rem; 694 | } 695 | .content .notices.warning p { 696 | border-top: 30px solid #E06F6C; 697 | background: #f0f0f0; 698 | } 699 | .content .notices.warning p::after { 700 | content: "Warning"; 701 | position: absolute; 702 | top: 2px; 703 | color: #fff; 704 | left: 2rem; 705 | } 706 | .content blockquote { 707 | font-size: 20px !important; 708 | color: #696c6d; 709 | padding: 20px 40px; 710 | border-left: 2px solid #ce8460; 711 | margin: 40px 0; 712 | font-weight: bold; 713 | background: #f0f0f0; 714 | } 715 | .content blockquote p { 716 | margin-bottom: 0 !important; 717 | } 718 | .content pre { 719 | display: block; 720 | padding: 9.5px; 721 | margin: 10px 0px 10px; 722 | white-space: pre-wrap; 723 | } 724 | .content code { 725 | margin-bottom: 0 !important; 726 | font-size: 100%; 727 | } 728 | 729 | .code-tabs { 730 | border: 1px solid #ddd; 731 | overflow: hidden; 732 | margin-bottom: 20px; 733 | } 734 | .code-tabs .nav-tabs { 735 | margin-bottom: 0; 736 | } 737 | .code-tabs .nav-tabs .nav-item { 738 | padding-left: 0; 739 | border-right: 1px solid #ddd; 740 | } 741 | .code-tabs .nav-tabs .nav-item .nav-link { 742 | text-decoration: none; 743 | font-weight: 500; 744 | border: 0; 745 | } 746 | .code-tabs .nav-tabs .nav-item::before { 747 | display: none; 748 | } 749 | .code-tabs .nav-tabs .nav-item.active { 750 | background: #ce8460; 751 | } 752 | .code-tabs .nav-tabs .nav-item.active .nav-link { 753 | color: #fff; 754 | } 755 | .code-tabs .tab-content { 756 | padding: 20px 15px; 757 | } 758 | 759 | .title-bordered { 760 | border: 1px solid #ddd; 761 | border-radius: 40px; 762 | padding: 2px; 763 | } 764 | .title-bordered h1, 765 | .title-bordered h2, 766 | .title-bordered h3, 767 | .title-bordered h4, 768 | .title-bordered h5, 769 | .title-bordered h6 { 770 | background: #f0f0f0; 771 | padding: 10px 25px; 772 | margin-bottom: 0; 773 | border-radius: inherit; 774 | display: inline-block; 775 | } 776 | 777 | .form-group label { 778 | font-size: 13px; 779 | color: #1c1d1f; 780 | } 781 | .form-group .form-control { 782 | border-color: #ddd; 783 | } 784 | .form-group .form-control:focus { 785 | outline: 0; 786 | box-shadow: none; 787 | border-color: #ce8460; 788 | } 789 | .form-group textarea.form-control { 790 | height: 120px; 791 | } 792 | 793 | .widget { 794 | background: #fff; 795 | margin-bottom: 40px; 796 | } 797 | .widget-title { 798 | position: relative; 799 | margin-bottom: 15px; 800 | } 801 | .widget-title span { 802 | background: #fff; 803 | position: relative; 804 | padding-right: 5px; 805 | z-index: 1; 806 | } 807 | .widget-title::before { 808 | position: absolute; 809 | content: ""; 810 | right: 0; 811 | height: 1px; 812 | width: 100%; 813 | background: #ddd; 814 | top: 50%; 815 | } 816 | .widget-search { 817 | position: relative; 818 | } 819 | .widget-search input { 820 | border: 0; 821 | border-bottom: 1px dotted #ddd; 822 | width: 100%; 823 | height: 40px; 824 | } 825 | .widget-search input:focus { 826 | outline: 0; 827 | } 828 | .widget-search input::-moz-placeholder { 829 | font-size: 90%; 830 | } 831 | .widget-search input::placeholder { 832 | font-size: 90%; 833 | } 834 | .widget-search button { 835 | height: 30px; 836 | width: 30px; 837 | line-height: 30px; 838 | display: inline-block; 839 | padding: 0; 840 | background: #f0f0f0; 841 | color: #1c1d1f; 842 | text-align: center; 843 | border-radius: 50%; 844 | position: absolute; 845 | right: 0; 846 | top: 5px; 847 | border: 0; 848 | font-size: 12px; 849 | } 850 | .widget-list li { 851 | padding: 5px 0; 852 | } 853 | .widget-list li:not(:last-child) { 854 | border-bottom: 1px dotted #ddd; 855 | } 856 | .widget-list li a { 857 | color: #1c1d1f; 858 | } 859 | .widget-list li a:hover { 860 | color: #ce8460; 861 | } 862 | .widget-list-inline li { 863 | margin-bottom: 10px; 864 | } 865 | .widget-list-inline li a { 866 | padding: 2px 10px; 867 | border: 1px solid #ddd; 868 | border-radius: 40px; 869 | display: block; 870 | color: #696c6d; 871 | } 872 | .widget-list-inline li a:hover { 873 | border-color: #ce8460; 874 | background: #ce8460; 875 | color: #fff; 876 | } 877 | .widget-post { 878 | padding: 15px 0 !important; 879 | } 880 | .widget-post img { 881 | height: 60px; 882 | width: 60px; 883 | border-radius: 50%; 884 | -o-object-fit: cover; 885 | object-fit: cover; 886 | } 887 | 888 | .footer-list a { 889 | display: block; 890 | color: #888c8e; 891 | padding: 5px 0; 892 | } 893 | .footer-list a:hover { 894 | color: #ce8460; 895 | } 896 | 897 | .subscription .form-control { 898 | background-color: #f0f0f0; 899 | border: 0; 900 | margin-bottom: 10px; 901 | padding-left: 40px; 902 | } 903 | .subscription .email-icon { 904 | position: absolute; 905 | left: 10px; 906 | top: 10px; 907 | font-size: 18px; 908 | color: #ce8460; 909 | } 910 | 911 | .quote { 912 | background-color: #f0f0f0; 913 | display: flex; 914 | padding: 20px; 915 | } 916 | .quote i { 917 | font-size: 24px; 918 | color: #ce8460; 919 | margin-right: 10px; 920 | } 921 | .quote p { 922 | font-style: italic; 923 | } 924 | .quote-by { 925 | color: #ce8460; 926 | } 927 | 928 | .scroll-top { 929 | border-top: 1px solid #ddd; 930 | position: relative; 931 | margin: 20px 0 40px; 932 | } 933 | .scroll-top a { 934 | position: absolute; 935 | top: 50%; 936 | left: 50%; 937 | transform: translate(-50%, -50%); 938 | height: 50px; 939 | width: 50px; 940 | border-radius: 50%; 941 | background-color: #ce8460; 942 | color: #fff; 943 | text-align: center; 944 | line-height: 50px; 945 | display: block; 946 | } 947 | /*# sourceMappingURL=style.css.map */ 948 | --------------------------------------------------------------------------------