- Notifications
You must be signed in to change notification settings - Fork4
W3 Personal Blog is a flat bootstrap responsive theme designed by W3layouts ported to a pelican by Samael500.
License
samael500/w3-personal-blog
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Pelican adaptation of W3 Personal Blog template.Live demo.
Personal Blogis a clean, flat and professional Blogging category template forbloggers and blogging website. It can be customized easily to suit your wishes.It comes with a free Flat Responsive web design template.You can use this template for any type of websites.
Personal Blog web template is built in a Fancy style however it can be usedas per the user requirements. Personal Blog designed with a clean flat gridsystem. It is compatible in all web browsers,Smartphones and Tablets.It isdesigned using HTML5 and CSS3.
- Template Name: Personal Blog a Blogging Category Flat Bootstrap Responsive Web Template
- Licence: Life Time Free Licence under Creative Commons Attribution 3.0
- Unported. Unlimited Use, Source files & PSD included, you can help & support us
- (W3Layouts, a Non-Profit) by donations or you should keep link to our website.
- Date Created: Feb 21, 2015
- Compatible Browsers: Google Chrome, Firefox, Safari, IE, Opera etc
- High Resolution: Yes
- Layout: Fluid Responsive Layout
- Source Files included: HTML files (.html), Style Sheets (.css), Images (.jpg/png/gif),
- Tags: Free Responsive Template, free responsive templates download, freeresponsive mobile templates, free html5 css3 templates, free fluid responsivethemes, single flat Responsive web template, cross-browser compatible webtemplate, best responsive template.
- Download PSD:Here
This entry was posted inBlogging Template.
On the main page of the article is displayed with a preview image. To specify the image to add to the meta tag informationImage
.
For example:
Title: Ралли на браузерахDate: 2015-04-01 10:20Modified: 2015-04-05 19:30Category: PythonTags: python, browsers, wb-techImage: /media/browsers/pedestal.pngSummary: Собственный проект[WB--Tech](http://wbtech.pro/) по комментированию скриншотов[coment.me](http://coment.me/) на сегодняшний день, для получения снимка сайта использует связку`selenium + firefox`. Данный подход решает задачи получения скриншота, однако тратит достаточно много памяти, и к тому же со временем накапливается большое количество повисших процессов, что в свою очередь приводит к подвисанию сервиса. В связи с этим, необходимо исследовать доступные варианты и определить наилучший из браузеров для автоматического создания скриншотов...#
To change the short text in the design theme, you should define constants and names.
const name | default value |
---|---|
ARCHIVES_TEXT | Archives |
ARTICLESCATEGORY_TEXT | Articles in category |
ARTICLESTAG_TEXT | Articles with tag |
AUTHOR_TEXT | Author |
AUTHORS_TEXT | Authors |
CATEGORIES_TEXT | Categories |
CATEGORY_TEXT | Category |
TAGS_TEXT | Tags |
COMMENTS_TEXT | Comments |
CONTENT_TEXT | Content |
FIRST_TEXT | first |
LAST_TEXT | last |
READMORE_TEXT | read more... |
ATOM_FEED_TEXT | Feed Atom |
RSS_FEED_TEXT | Feed RSS |
GETPDF_TEXT | Get the pdf |
It is my pelicanconf.py file:
#!/usr/bin/env python# -*- coding: utf-8 -*- #from __future__importunicode_literalsimportdatetimeAUTHOR=u'Maks'SITENAME=u'Maks blog'# SITESUBTITLE = u'Samael500'SITEURL='https://samael500.github.io'KEYWORDS=u'Samael500 personal blog'PATH='content'# languages settingsTIMEZONE='Europe/Moscow'DEFAULT_LANG=u'ru'ARCHIVES_TEXT=u'Архив'ARTICLESCATEGORY_TEXT=u'Статьи в категории'ARTICLESTAG_TEXT=u'Статьи с тегом'AUTHOR_TEXT=u'Автор'AUTHORS_TEXT=u'Авторы'CATEGORIES_TEXT=u'Категории'CATEGORY_TEXT=u'Категория'TAGS_TEXT=u'Теги'COMMENTS_TEXT=u'Комментарии'CONTENT_TEXT=u'Содержимое'FIRST_TEXT=u'первая'LAST_TEXT=u'последняя'READMORE_TEXT=u'далее...'# Feed generation is usually not desired when developingFEED_DOMAIN=SITEURL# BlogrollLINKS= ( ('Pelican','http://getpelican.com/'), ('Python.org','http://python.org/'), ('Jinja2','http://jinja.pocoo.org/'),# ('You can modify those links in your config file', '#'),)# Social widgetSOCIAL= ( ('<i></i> ВКонтакте','https://vk.com/id44829586'), ('<i></i> Facebook','https://www.facebook.com/samael500'), ('<i></i> Twitter','https://twitter.com/samael500'), ('<i></i> Github','https://github.com/samael500'),)# TWITTER_USERNAME = 'samael500'GITHUB_URL='https://github.com/Samael500'GOOGLE_CUSTOM_SEARCH='006263355362628034990:cuxoisonrno'THEME='../w3-personal-blog'DISPLAY_PAGES_ON_MENU=TrueDEFAULT_PAGINATION=10# url and path settingsRELATIVE_URLS=TrueCACHE_CONTENT=FalseSTATIC_PATHS= ['icons','media','extra','emojify','stuff', ]# articleARTICLE_URL=u'articles/{category}/{slug}/'ARTICLE_SAVE_AS=u'articles/{category}/{slug}/index.html'# pagePAGE_URL=u'{slug}/'PAGE_SAVE_AS=u'{slug}/index.html'# authorAUTHOR_URL=u'author/{slug}/'AUTHOR_SAVE_AS=u'author/{slug}/index.html'# authorsAUTHORS_URL=u'authors/'AUTHORS_SAVE_AS=u'authors/index.html'# categoryCATEGORY_URL=u'category/{slug}.html'CATEGORY_SAVE_AS=u'category/{slug}.html'# tagTAG_URL=u'tag/{slug}/'TAG_SAVE_AS=u'tag/{slug}/index.html'CURRENT_YEAR=datetime.date.today().yearLICENSE_ROW='''<p><a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" src="https://i.creativecommons.org/l/by/4.0/80x15.png" /></a>This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p>'''