Merge pull request #1 from alexandrevicenzi/master

Update to upstream
This commit is contained in:
Max Norba 2020-02-29 18:09:25 +03:00 committed by GitHub
commit 032c6e4282
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
124 changed files with 6179 additions and 1204 deletions

12
.github/FUNDING.yml vendored Normal file
View file

@ -0,0 +1,12 @@
# These are supported funding model platforms
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: https://www.alexandrevicenzi.com/donate

4
.gitignore vendored
View file

@ -57,3 +57,7 @@ venv
# NPM # NPM
node_modules node_modules
# Pelican
output
plugins

View file

@ -1,13 +1,8 @@
language: python language: python
python: python:
- "2.7"
- "3.4"
- "3.5"
- "3.6" - "3.6"
install: install:
- pip install pelican markdown - pip install -r docs/requirements.txt
before_script: script: pelican -s docs/pelicanconf.py
- git clone https://github.com/getpelican/pelican-plugins plugins
script: pelican -s tests/pelicanconf.py
notifications: notifications:
email: false email: false

View file

@ -1,10 +1,10 @@
# Flex [![Build Status](https://travis-ci.org/alexandrevicenzi/Flex.svg?branch=master)](https://travis-ci.org/alexandrevicenzi/Flex) [![Dependency Status](https://david-dm.org/alexandrevicenzi/Flex.svg)](https://david-dm.org/alexandrevicenzi/Flex) [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/alexandre-vicenzi/flex?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) # Flex [![Build Status](https://travis-ci.org/alexandrevicenzi/Flex.svg?branch=master)](https://travis-ci.org/alexandrevicenzi/Flex)
The minimalist [Pelican](http://blog.getpelican.com/) theme. The minimalist [Pelican](http://blog.getpelican.com/) theme.
## Notes ## Notes
- **DO NOT** send any questions to my personal email, they are **IGNORED**. If you have questions open an issue. - If you have questions open an issue.
- This theme is not under development anymore, it's stable and has a lot of features. This means that new requests (not bug fixes) will be discussed and have lower priorities. - This theme is not under development anymore, it's stable and has a lot of features. This means that new requests (not bug fixes) will be discussed and have lower priorities.
- If you want a version of this theme to Jekyll or Hugo open an issue and let's discuss it. - If you want a version of this theme to Jekyll or Hugo open an issue and let's discuss it.
@ -47,12 +47,6 @@ The best way to install is over [pelican-themes](https://github.com/getpelican/p
The alternative way is to clone this repository. The `master` branch is stable and is safe to checkout, but I would recommend you to checkout a tag branch. The alternative way is to clone this repository. The `master` branch is stable and is safe to checkout, but I would recommend you to checkout a tag branch.
## Donate
Are you using this theme? Support bug fixes and new features.
[Click here](https://www.alexandrevicenzi.com/donate) to donate.
## Documentation ## Documentation
The documentation covers most of the settings available and how to use this theme. The documentation covers most of the settings available and how to use this theme.
@ -78,8 +72,6 @@ As always, if you want something that only makes sense to you, fork Flex and cre
Translate this theme to new languages at [Transifex](https://www.transifex.com/alexandrevicenzi/flex-pelican/). Translate this theme to new languages at [Transifex](https://www.transifex.com/alexandrevicenzi/flex-pelican/).
![Translations](https://github.com/alexandrevicenzi/Flex/blob/master/translations/translation_chart.png)
Read more about [Translation Support](https://github.com/alexandrevicenzi/Flex/wiki/Translations) in the Wiki. Read more about [Translation Support](https://github.com/alexandrevicenzi/Flex/wiki/Translations) in the Wiki.
## License ## License

74
docs/Makefile Normal file
View file

@ -0,0 +1,74 @@
PY?=python3
PELICAN?=pelican
PELICANOPTS=
BASEDIR=$(CURDIR)
INPUTDIR=$(BASEDIR)/content
OUTPUTDIR=$(BASEDIR)/blog
CONFFILE=$(BASEDIR)/pelicanconf.py
PUBLISHCONF=$(BASEDIR)/publishconf.py
GITHUB_PAGES_BRANCH=gh-pages
DEBUG ?= 0
ifeq ($(DEBUG), 1)
PELICANOPTS += -D
endif
RELATIVE ?= 0
ifeq ($(RELATIVE), 1)
PELICANOPTS += --relative-urls
endif
help:
@echo 'Makefile for a pelican Web site '
@echo ' '
@echo 'Usage: '
@echo ' make html (re)generate the web site '
@echo ' make clean remove the generated files '
@echo ' make regenerate regenerate files upon modification '
@echo ' make publish generate using production settings '
@echo ' make serve [PORT=8000] serve site at http://localhost:8000'
@echo ' make serve-global [SERVER=0.0.0.0] serve (as root) to $(SERVER):80 '
@echo ' make devserver [PORT=8000] serve and regenerate together '
@echo ' '
@echo 'Set the DEBUG variable to 1 to enable debugging, e.g. make DEBUG=1 html '
@echo 'Set the RELATIVE variable to 1 to enable relative urls '
@echo ' '
html:
$(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS)
clean:
[ ! -d $(OUTPUTDIR) ] || rm -rf $(OUTPUTDIR)
regenerate:
$(PELICAN) -r $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS)
serve:
ifdef PORT
$(PELICAN) -l $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS) -p $(PORT)
else
$(PELICAN) -l $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS)
endif
serve-global:
ifdef SERVER
$(PELICAN) -l $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS) -p $(PORT) -b $(SERVER)
else
$(PELICAN) -l $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS) -p $(PORT) -b 0.0.0.0
endif
devserver:
ifdef PORT
$(PELICAN) -lr $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS) -p $(PORT)
else
$(PELICAN) -lr $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS)
endif
publish:
$(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(PUBLISHCONF) $(PELICANOPTS)
.PHONY: html help clean regenerate serve serve-global devserver publish

View file

@ -1,9 +1,3 @@
# Flex Blog Example # Flex Blog Example
## Build Visit [http://flex.alxd.me/blog](http://flex.alxd.me/blog).
`pelican -s pelicanconf.py`
## Publish
`pelican -s publishconf.py`

View file

@ -13,7 +13,9 @@
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet">
@ -73,15 +75,24 @@
<p>The minimalist Pelican theme</p> <p>The minimalist Pelican theme</p>
<nav> <nav>
<ul class="list"> <ul class="list">
<li><a href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a target="_blank" href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a target="_blank" href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li>
</ul> </ul>
</nav> </nav>
<ul class="social"> <ul class="social">
<li><a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank"><i class="fa fa-github"></i></a></li> <li>
<li><a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank"><i class="fa fa-rss"></i></a></li> <a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank">
<i class="fab fa-github">
</i>
</a></li>
<li>
<a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank">
<i class="fas fa-rss">
</i>
</a></li>
</ul> </ul>
</div> </div>
@ -111,7 +122,7 @@
<article class="single"> <article class="single">
<header> <header>
<h1> Archives <h1 id="archives"> Archives
</h1> </h1>
</header> </header>
<div> <div>
@ -136,9 +147,9 @@
<footer> <footer>
<p> <p>
&copy; 2018 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a> &copy; 2019 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>
</p> </p>
<p> Powered by <a href="http://getpelican.com" target="_blank">Pelican</a> - <a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a> theme by <a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a> <p> Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
</p><p> </p><p>
<a rel="license" <a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/" href="http://creativecommons.org/licenses/by-sa/4.0/"

View file

@ -13,7 +13,9 @@
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet">
@ -73,15 +75,24 @@
<p>The minimalist Pelican theme</p> <p>The minimalist Pelican theme</p>
<nav> <nav>
<ul class="list"> <ul class="list">
<li><a href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a target="_blank" href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a target="_blank" href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li>
</ul> </ul>
</nav> </nav>
<ul class="social"> <ul class="social">
<li><a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank"><i class="fa fa-github"></i></a></li> <li>
<li><a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank"><i class="fa fa-rss"></i></a></li> <a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank">
<i class="fab fa-github">
</i>
</a></li>
<li>
<a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank">
<i class="fas fa-rss">
</i>
</a></li>
</ul> </ul>
</div> </div>
@ -126,9 +137,6 @@
<p>There are new Pygments templates and also a few code highlight fixes. There's also new social icons.</p> <p>There are new Pygments templates and also a few code highlight fixes. There's also new social icons.</p>
<p>Version 2.2.0 also comes with new translations. You can see available translations <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p> <p>Version 2.2.0 also comes with new translations. You can see available translations <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p>
<p>Hope you enjoy this version.</p> <p>Hope you enjoy this version.</p>
<br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-2.html#flex-pelican-theme-update-2-2"> Continue reading
</a>
</div> </div>
<hr /> <hr />
</article> </article>
@ -146,8 +154,8 @@
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.1.0 comes with features that I was delaying for so long.</p> <p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.1.0 comes with features that I was delaying for so long.</p>
<p>Flex 2.1.0 adds support for Google AdSense.</p> <p>Flex 2.1.0 adds support for Google AdSense.</p>
<p>If you choose wisely, ads are a way to win some money, but if not, you may loose your users due to excessive use of ads …</p> <p>If you choose wisely, ads are a way to win some money, but if not, you may loose your users due to excessive use of ads …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -170,8 +178,8 @@ Yes, Flex now can be translated into your language.
You can read about <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p> You can read about <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p>
<p>The biggest challege was to create a way to translate without breaking old versions. <p>The biggest challege was to create a way to translate without breaking old versions.
If …</p> If …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -194,8 +202,8 @@ If …</p>
<li><a href="https://github.com/alexandrevicenzi/Flex/pull/34">Added browser color configuration</a></li> <li><a href="https://github.com/alexandrevicenzi/Flex/pull/34">Added browser color configuration</a></li>
<li><a href="https://github.com/alexandrevicenzi/Flex/pull/27">Related posts</a></li> <li><a href="https://github.com/alexandrevicenzi/Flex/pull/27">Related posts</a></li>
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/38">More Pygments Styles …</a></li></ul> <li><a href="https://github.com/alexandrevicenzi/Flex/issues/38">More Pygments Styles …</a></li></ul>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -218,9 +226,6 @@ If …</p>
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/14">Posts preview on main page</a></li> <li><a href="https://github.com/alexandrevicenzi/Flex/issues/14">Posts preview on main page</a></li>
</ul> </ul>
<p>Hope you enjoy this theme.</p> <p>Hope you enjoy this theme.</p>
<br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1-1.html#flex-pelican-theme-update-1-1-1"> Continue reading
</a>
</div> </div>
<hr /> <hr />
</article> </article>
@ -237,8 +242,8 @@ If …</p>
<div> <div>
<p>I've made the <a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> a time ago. For my surprise, many people are using it. I feel thankful for this.</p> <p>I've made the <a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> a time ago. For my surprise, many people are using it. I feel thankful for this.</p>
<p>So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release …</p> <p>So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -256,8 +261,8 @@ If …</p>
<div> <div>
<p>I just start a new fresh blog using <a href="http://getpelican.com">Pelican</a>. Sometimes choosing a theme for a new site is something difficult that takes time.</p> <p>I just start a new fresh blog using <a href="http://getpelican.com">Pelican</a>. Sometimes choosing a theme for a new site is something difficult that takes time.</p>
<p>In the Pelican <a href="http://www.pelicanthemes.com/">theme gallery</a>, I couldn't find anything that I really liked to feet all my needs. So in the first time of the history, I …</p> <p>In the Pelican <a href="http://www.pelicanthemes.com/">theme gallery</a>, I couldn't find anything that I really liked to feet all my needs. So in the first time of the history, I …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme"> Continue reading
</a> </a>
</div> </div>
</article> </article>
@ -277,9 +282,9 @@ If …</p>
<footer> <footer>
<p> <p>
&copy; 2018 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a> &copy; 2019 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>
</p> </p>
<p> Powered by <a href="http://getpelican.com" target="_blank">Pelican</a> - <a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a> theme by <a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a> <p> Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
</p><p> </p><p>
<a rel="license" <a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/" href="http://creativecommons.org/licenses/by-sa/4.0/"

View file

@ -13,7 +13,9 @@
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet">
@ -73,15 +75,24 @@
<p>The minimalist Pelican theme</p> <p>The minimalist Pelican theme</p>
<nav> <nav>
<ul class="list"> <ul class="list">
<li><a href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a target="_blank" href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a target="_blank" href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li>
</ul> </ul>
</nav> </nav>
<ul class="social"> <ul class="social">
<li><a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank"><i class="fa fa-github"></i></a></li> <li>
<li><a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank"><i class="fa fa-rss"></i></a></li> <a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank">
<i class="fab fa-github">
</i>
</a></li>
<li>
<a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank">
<i class="fas fa-rss">
</i>
</a></li>
</ul> </ul>
</div> </div>
@ -111,7 +122,7 @@
<article class="single"> <article class="single">
<header> <header>
<h1> Authors <h1 id="authors"> Authors
</h1> </h1>
</header> </header>
<div> <div>
@ -123,9 +134,9 @@
<footer> <footer>
<p> <p>
&copy; 2018 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a> &copy; 2019 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>
</p> </p>
<p> Powered by <a href="http://getpelican.com" target="_blank">Pelican</a> - <a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a> theme by <a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a> <p> Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
</p><p> </p><p>
<a rel="license" <a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/" href="http://creativecommons.org/licenses/by-sa/4.0/"

View file

@ -13,7 +13,9 @@
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet">
@ -73,15 +75,24 @@
<p>The minimalist Pelican theme</p> <p>The minimalist Pelican theme</p>
<nav> <nav>
<ul class="list"> <ul class="list">
<li><a href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a target="_blank" href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a target="_blank" href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li>
</ul> </ul>
</nav> </nav>
<ul class="social"> <ul class="social">
<li><a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank"><i class="fa fa-github"></i></a></li> <li>
<li><a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank"><i class="fa fa-rss"></i></a></li> <a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank">
<i class="fab fa-github">
</i>
</a></li>
<li>
<a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank">
<i class="fas fa-rss">
</i>
</a></li>
</ul> </ul>
</div> </div>
@ -111,7 +122,7 @@
<article class="single"> <article class="single">
<header> <header>
<h1> Categories <h1 id="categories"> Categories
</h1> </h1>
</header> </header>
<div> <div>
@ -123,9 +134,9 @@
<footer> <footer>
<p> <p>
&copy; 2018 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a> &copy; 2019 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>
</p> </p>
<p> Powered by <a href="http://getpelican.com" target="_blank">Pelican</a> - <a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a> theme by <a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a> <p> Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
</p><p> </p><p>
<a rel="license" <a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/" href="http://creativecommons.org/licenses/by-sa/4.0/"

View file

@ -13,7 +13,9 @@
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet">
@ -73,15 +75,24 @@
<p>The minimalist Pelican theme</p> <p>The minimalist Pelican theme</p>
<nav> <nav>
<ul class="list"> <ul class="list">
<li><a href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a target="_blank" href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a target="_blank" href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li>
</ul> </ul>
</nav> </nav>
<ul class="social"> <ul class="social">
<li><a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank"><i class="fa fa-github"></i></a></li> <li>
<li><a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank"><i class="fa fa-rss"></i></a></li> <a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank">
<i class="fab fa-github">
</i>
</a></li>
<li>
<a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank">
<i class="fas fa-rss">
</i>
</a></li>
</ul> </ul>
</div> </div>
@ -126,9 +137,6 @@
<p>There are new Pygments templates and also a few code highlight fixes. There's also new social icons.</p> <p>There are new Pygments templates and also a few code highlight fixes. There's also new social icons.</p>
<p>Version 2.2.0 also comes with new translations. You can see available translations <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p> <p>Version 2.2.0 also comes with new translations. You can see available translations <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p>
<p>Hope you enjoy this version.</p> <p>Hope you enjoy this version.</p>
<br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-2.html#flex-pelican-theme-update-2-2"> Continue reading
</a>
</div> </div>
<hr /> <hr />
</article> </article>
@ -146,8 +154,8 @@
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.1.0 comes with features that I was delaying for so long.</p> <p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.1.0 comes with features that I was delaying for so long.</p>
<p>Flex 2.1.0 adds support for Google AdSense.</p> <p>Flex 2.1.0 adds support for Google AdSense.</p>
<p>If you choose wisely, ads are a way to win some money, but if not, you may loose your users due to excessive use of ads …</p> <p>If you choose wisely, ads are a way to win some money, but if not, you may loose your users due to excessive use of ads …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -170,8 +178,8 @@ Yes, Flex now can be translated into your language.
You can read about <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p> You can read about <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p>
<p>The biggest challege was to create a way to translate without breaking old versions. <p>The biggest challege was to create a way to translate without breaking old versions.
If …</p> If …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -194,8 +202,8 @@ If …</p>
<li><a href="https://github.com/alexandrevicenzi/Flex/pull/34">Added browser color configuration</a></li> <li><a href="https://github.com/alexandrevicenzi/Flex/pull/34">Added browser color configuration</a></li>
<li><a href="https://github.com/alexandrevicenzi/Flex/pull/27">Related posts</a></li> <li><a href="https://github.com/alexandrevicenzi/Flex/pull/27">Related posts</a></li>
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/38">More Pygments Styles …</a></li></ul> <li><a href="https://github.com/alexandrevicenzi/Flex/issues/38">More Pygments Styles …</a></li></ul>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -218,9 +226,6 @@ If …</p>
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/14">Posts preview on main page</a></li> <li><a href="https://github.com/alexandrevicenzi/Flex/issues/14">Posts preview on main page</a></li>
</ul> </ul>
<p>Hope you enjoy this theme.</p> <p>Hope you enjoy this theme.</p>
<br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1-1.html#flex-pelican-theme-update-1-1-1"> Continue reading
</a>
</div> </div>
<hr /> <hr />
</article> </article>
@ -237,8 +242,8 @@ If …</p>
<div> <div>
<p>I've made the <a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> a time ago. For my surprise, many people are using it. I feel thankful for this.</p> <p>I've made the <a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> a time ago. For my surprise, many people are using it. I feel thankful for this.</p>
<p>So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release …</p> <p>So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -256,8 +261,8 @@ If …</p>
<div> <div>
<p>I just start a new fresh blog using <a href="http://getpelican.com">Pelican</a>. Sometimes choosing a theme for a new site is something difficult that takes time.</p> <p>I just start a new fresh blog using <a href="http://getpelican.com">Pelican</a>. Sometimes choosing a theme for a new site is something difficult that takes time.</p>
<p>In the Pelican <a href="http://www.pelicanthemes.com/">theme gallery</a>, I couldn't find anything that I really liked to feet all my needs. So in the first time of the history, I …</p> <p>In the Pelican <a href="http://www.pelicanthemes.com/">theme gallery</a>, I couldn't find anything that I really liked to feet all my needs. So in the first time of the history, I …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme"> Continue reading
</a> </a>
</div> </div>
</article> </article>
@ -277,9 +282,9 @@ If …</p>
<footer> <footer>
<p> <p>
&copy; 2018 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a> &copy; 2019 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>
</p> </p>
<p> Powered by <a href="http://getpelican.com" target="_blank">Pelican</a> - <a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a> theme by <a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a> <p> Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
</p><p> </p><p>
<a rel="license" <a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/" href="http://creativecommons.org/licenses/by-sa/4.0/"

View file

@ -1,11 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>Flex</title><link href="http://flex.alxd.me/blog/" rel="alternate"></link><link href="http://flex.alxd.me/blog/feeds/all.atom.xml" rel="self"></link><id>http://flex.alxd.me/blog/</id><updated>2018-06-24T08:00:00-04:00</updated><entry><title>Flex 2.2.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-2.html" rel="alternate"></link><published>2018-06-24T08:00:00-04:00</published><updated>2018-06-24T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2018-06-24:/blog/flex-pelican-theme-update-2-2.html</id><summary type="html">&lt;p&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; 2.2.0 comes with bug fixes and improvements.&lt;/p&gt; <feed xmlns="http://www.w3.org/2005/Atom"><title>Flex</title><link href="http://flex.alxd.me/blog/" rel="alternate"></link><link href="http://flex.alxd.me/blog/feeds/all.atom.xml" rel="self"></link><id>http://flex.alxd.me/blog/</id><updated>2018-06-24T08:00:00-04:00</updated><subtitle>The minimalist Pelican theme</subtitle><entry><title>Flex 2.2.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-2.html" rel="alternate"></link><published>2018-06-24T08:00:00-04:00</published><updated>2018-06-24T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2018-06-24:/blog/flex-pelican-theme-update-2-2.html</id><content type="html">&lt;p&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; 2.2.0 comes with bug fixes and improvements.&lt;/p&gt;
&lt;p&gt;There are new Pygments templates and also a few code highlight fixes. There's also new social icons.&lt;/p&gt; &lt;p&gt;There are new Pygments templates and also a few code highlight fixes. There's also new social icons.&lt;/p&gt;
&lt;p&gt;Version 2.2.0 also comes with new translations. You can see available translations &lt;a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations"&gt;here&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;Version 2.2.0 also comes with new translations. You can see available translations &lt;a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Hope you enjoy this version.&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; 2.2.0 comes with bug fixes and improvements.&lt;/p&gt; &lt;p&gt;Hope you enjoy this version.&lt;/p&gt;</content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 2.1.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html" rel="alternate"></link><published>2016-11-16T08:00:00-05:00</published><updated>2016-11-16T08:00:00-05:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-11-16:/blog/flex-pelican-theme-update-2-1.html</id><summary type="html">&lt;p&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; 2.1.0 comes with features that I was delaying for so long.&lt;/p&gt;
&lt;p&gt;There are new Pygments templates and also a few code highlight fixes. There's also new social icons.&lt;/p&gt;
&lt;p&gt;Version 2.2.0 also comes with new translations. You can see available translations &lt;a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Hope you enjoy this version.&lt;/p&gt;</content><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 2.1.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html" rel="alternate"></link><published>2016-11-16T08:00:00-05:00</published><updated>2016-11-16T08:00:00-05:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-11-16:/blog/flex-pelican-theme-update-2-1.html</id><summary type="html">&lt;p&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; 2.1.0 comes with features that I was delaying for so long.&lt;/p&gt;
&lt;p&gt;Flex 2.1.0 adds support for Google AdSense.&lt;/p&gt; &lt;p&gt;Flex 2.1.0 adds support for Google AdSense.&lt;/p&gt;
&lt;p&gt;If you choose wisely, ads are a way to win some money, but if not, you may loose your users due to excessive use of ads …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; 2.1.0 comes with features that I was delaying for so long.&lt;/p&gt; &lt;p&gt;If you choose wisely, ads are a way to win some money, but if not, you may loose your users due to excessive use of ads …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; 2.1.0 comes with features that I was delaying for so long.&lt;/p&gt;
&lt;p&gt;Flex 2.1.0 adds support for Google AdSense.&lt;/p&gt; &lt;p&gt;Flex 2.1.0 adds support for Google AdSense.&lt;/p&gt;
@ -28,7 +25,7 @@ Below you can see how to enable ads in your pelican configuration file.&lt;/p&gt
&lt;p&gt;Version 2.1.0 also comes with new translations. You can see available translations &lt;a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations"&gt;here&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;Version 2.1.0 also comes with new translations. You can see available translations &lt;a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Hope you enjoy this version.&lt;/p&gt;</content><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 2.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html" rel="alternate"></link><published>2016-09-13T08:00:00-04:00</published><updated>2016-09-13T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-09-13:/blog/flex-pelican-theme-update-2-0.html</id><summary type="html">&lt;p&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; 2.0 comes with new features. &lt;p&gt;Hope you enjoy this version.&lt;/p&gt;</content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 2.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html" rel="alternate"></link><published>2016-09-13T08:00:00-04:00</published><updated>2016-09-13T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-09-13:/blog/flex-pelican-theme-update-2-0.html</id><summary type="html">&lt;p&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; 2.0 comes with new features.
In fact there are two new features.&lt;/p&gt; In fact there are two new features.&lt;/p&gt;
&lt;p&gt;The biggest change is localization support. &lt;p&gt;The biggest change is localization support.
Yes, Flex now can be translated into your language. Yes, Flex now can be translated into your language.
@ -57,7 +54,7 @@ But if you want to use translation you need to add new lines to your pelican con
&lt;p&gt;Last but not least, Flex supports the feature "X minute read", similar &lt;a href="https://medium.com/"&gt;Medium&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;Last but not least, Flex supports the feature "X minute read", similar &lt;a href="https://medium.com/"&gt;Medium&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Hope you enjoy this version.&lt;/p&gt;</content><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 1.2.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html" rel="alternate"></link><published>2016-06-10T08:00:00-04:00</published><updated>2016-06-10T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-06-10:/blog/flex-pelican-theme-update-1-2-0.html</id><summary type="html">&lt;p&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; received some new features. Version 1.2.0 include new features and some updates.&lt;/p&gt; &lt;p&gt;Hope you enjoy this version.&lt;/p&gt;</content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 1.2.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html" rel="alternate"></link><published>2016-06-10T08:00:00-04:00</published><updated>2016-06-10T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-06-10:/blog/flex-pelican-theme-update-1-2-0.html</id><summary type="html">&lt;p&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; received some new features. Version 1.2.0 include new features and some updates.&lt;/p&gt;
&lt;p&gt;For developers there are new color styles for your code. For general purpose there is RUM support, related posts and browser color configuration.&lt;/p&gt; &lt;p&gt;For developers there are new color styles for your code. For general purpose there is RUM support, related posts and browser color configuration.&lt;/p&gt;
&lt;ul&gt; &lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex/issues/31"&gt;Update font-awesome&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex/issues/31"&gt;Update font-awesome&lt;/a&gt;&lt;/li&gt;
@ -73,19 +70,13 @@ But if you want to use translation you need to add new lines to your pelican con
&lt;li&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex/issues/16"&gt;Add StatusCake RUM support&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex/issues/16"&gt;Add StatusCake RUM support&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt; &lt;/ul&gt;
&lt;p&gt;If you need help or want to report a bug, please open an &lt;a href="https://github.com/alexandrevicenzi/Flex/issues"&gt;issue&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;If you need help or want to report a bug, please open an &lt;a href="https://github.com/alexandrevicenzi/Flex/issues"&gt;issue&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Hope you enjoy this theme.&lt;/p&gt;</content><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 1.1.1</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1-1.html" rel="alternate"></link><published>2016-02-27T08:00:00-05:00</published><updated>2016-02-27T08:00:00-05:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-02-27:/blog/flex-pelican-theme-update-1-1-1.html</id><summary type="html">&lt;p&gt;Today, &lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; received a small update.&lt;/p&gt; &lt;p&gt;Hope you enjoy this theme.&lt;/p&gt;</content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 1.1.1</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1-1.html" rel="alternate"></link><published>2016-02-27T08:00:00-05:00</published><updated>2016-02-27T08:00:00-05:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-02-27:/blog/flex-pelican-theme-update-1-1-1.html</id><content type="html">&lt;p&gt;Today, &lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; received a small update.&lt;/p&gt;
&lt;p&gt;Some bugs are now fixed. I think the most important fixes are:&lt;/p&gt; &lt;p&gt;Some bugs are now fixed. I think the most important fixes are:&lt;/p&gt;
&lt;ul&gt; &lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex/issues/21"&gt;Bug in CSS with placement of "Newer Posts" button&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex/issues/21"&gt;Bug in CSS with placement of "Newer Posts" button&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex/issues/14"&gt;Posts preview on main page&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex/issues/14"&gt;Posts preview on main page&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt; &lt;/ul&gt;
&lt;p&gt;Hope you enjoy this theme.&lt;/p&gt;</summary><content type="html">&lt;p&gt;Today, &lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; received a small update.&lt;/p&gt; &lt;p&gt;Hope you enjoy this theme.&lt;/p&gt;</content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 1.1.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html" rel="alternate"></link><published>2015-10-07T08:00:00-04:00</published><updated>2015-10-07T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2015-10-07:/blog/flex-pelican-theme-update-1-1.html</id><summary type="html">&lt;p&gt;I've made the &lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; a time ago. For my surprise, many people are using it. I feel thankful for this.&lt;/p&gt;
&lt;p&gt;Some bugs are now fixed. I think the most important fixes are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex/issues/21"&gt;Bug in CSS with placement of "Newer Posts" button&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex/issues/14"&gt;Posts preview on main page&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Hope you enjoy this theme.&lt;/p&gt;</content><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 1.1.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html" rel="alternate"></link><published>2015-10-07T08:00:00-04:00</published><updated>2015-10-07T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2015-10-07:/blog/flex-pelican-theme-update-1-1.html</id><summary type="html">&lt;p&gt;I've made the &lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; a time ago. For my surprise, many people are using it. I feel thankful for this.&lt;/p&gt;
&lt;p&gt;So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release …&lt;/p&gt;</summary><content type="html">&lt;p&gt;I've made the &lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; a time ago. For my surprise, many people are using it. I feel thankful for this.&lt;/p&gt; &lt;p&gt;So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release …&lt;/p&gt;</summary><content type="html">&lt;p&gt;I've made the &lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; a time ago. For my surprise, many people are using it. I feel thankful for this.&lt;/p&gt;
&lt;p&gt;So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release the &lt;a href="https://github.com/alexandrevicenzi/Flex/releases/tag/v1.1"&gt;second version&lt;/a&gt; of Flex (aka v1.1).&lt;/p&gt; &lt;p&gt;So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release the &lt;a href="https://github.com/alexandrevicenzi/Flex/releases/tag/v1.1"&gt;second version&lt;/a&gt; of Flex (aka v1.1).&lt;/p&gt;
&lt;p&gt;This new version doesn't include nothing so special, just some bug fix and a new setting to allow custom CSS stylesheets.&lt;/p&gt; &lt;p&gt;This new version doesn't include nothing so special, just some bug fix and a new setting to allow custom CSS stylesheets.&lt;/p&gt;
@ -97,7 +88,7 @@ But if you want to use translation you need to add new lines to your pelican con
&lt;/pre&gt;&lt;/div&gt; &lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;I would like to thank all who helped in this new version.&lt;/p&gt;</content><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex: Responsive Pelican theme</title><link href="http://flex.alxd.me/blog/flex-pelican-theme.html" rel="alternate"></link><published>2015-07-22T08:00:00-04:00</published><updated>2015-07-22T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2015-07-22:/blog/flex-pelican-theme.html</id><summary type="html">&lt;p&gt;I just start a new fresh blog using &lt;a href="http://getpelican.com"&gt;Pelican&lt;/a&gt;. Sometimes choosing a theme for a new site is something difficult that takes time.&lt;/p&gt; &lt;p&gt;I would like to thank all who helped in this new version.&lt;/p&gt;</content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex: Responsive Pelican theme</title><link href="http://flex.alxd.me/blog/flex-pelican-theme.html" rel="alternate"></link><published>2015-07-22T08:00:00-04:00</published><updated>2015-07-22T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2015-07-22:/blog/flex-pelican-theme.html</id><summary type="html">&lt;p&gt;I just start a new fresh blog using &lt;a href="http://getpelican.com"&gt;Pelican&lt;/a&gt;. Sometimes choosing a theme for a new site is something difficult that takes time.&lt;/p&gt;
&lt;p&gt;In the Pelican &lt;a href="http://www.pelicanthemes.com/"&gt;theme gallery&lt;/a&gt;, I couldn't find anything that I really liked to feet all my needs. So in the first time of the history, I …&lt;/p&gt;</summary><content type="html">&lt;p&gt;I just start a new fresh blog using &lt;a href="http://getpelican.com"&gt;Pelican&lt;/a&gt;. Sometimes choosing a theme for a new site is something difficult that takes time.&lt;/p&gt; &lt;p&gt;In the Pelican &lt;a href="http://www.pelicanthemes.com/"&gt;theme gallery&lt;/a&gt;, I couldn't find anything that I really liked to feet all my needs. So in the first time of the history, I …&lt;/p&gt;</summary><content type="html">&lt;p&gt;I just start a new fresh blog using &lt;a href="http://getpelican.com"&gt;Pelican&lt;/a&gt;. Sometimes choosing a theme for a new site is something difficult that takes time.&lt;/p&gt;
&lt;p&gt;In the Pelican &lt;a href="http://www.pelicanthemes.com/"&gt;theme gallery&lt;/a&gt;, I couldn't find anything that I really liked to feet all my needs. So in the first time of the history, I choose to create my own theme. I never did this before.&lt;/p&gt; &lt;p&gt;In the Pelican &lt;a href="http://www.pelicanthemes.com/"&gt;theme gallery&lt;/a&gt;, I couldn't find anything that I really liked to feet all my needs. So in the first time of the history, I choose to create my own theme. I never did this before.&lt;/p&gt;
&lt;p&gt;Creating a theme for Pelican is quite easy, unlike Wordpress. You can take a look in the &lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Source Code of Flex&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;Creating a theme for Pelican is quite easy, unlike Wordpress. You can take a look in the &lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Source Code of Flex&lt;/a&gt;.&lt;/p&gt;
@ -185,4 +176,4 @@ Swap: 20480 1267 19213
&lt;p&gt;You can take a look in the &lt;a href="https://raw.githubusercontent.com/alexandrevicenzi/blog/master/content/News/flex-pelican-theme.md"&gt;source code of this page&lt;/a&gt; to know how to create rich examples.&lt;/p&gt; &lt;p&gt;You can take a look in the &lt;a href="https://raw.githubusercontent.com/alexandrevicenzi/blog/master/content/News/flex-pelican-theme.md"&gt;source code of this page&lt;/a&gt; to know how to create rich examples.&lt;/p&gt;
&lt;p&gt;Flex is my first attempt creating themes and there's no IE testing yet. You can check the &lt;a href="https://github.com/alexandrevicenzi/flex"&gt;sources here&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;Flex is my first attempt creating themes and there's no IE testing yet. You can check the &lt;a href="https://github.com/alexandrevicenzi/flex"&gt;sources here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;As soon as possible I will add this project to Pelican gallery.&lt;/p&gt; &lt;p&gt;As soon as possible I will add this project to Pelican gallery.&lt;/p&gt;
&lt;p&gt;Drop a comment if you like this theme, or &lt;a href="https://github.com/alexandrevicenzi/Flex/issues"&gt;open an issue&lt;/a&gt; if you need a feature or found a bug.&lt;/p&gt;</content><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry></feed> &lt;p&gt;Drop a comment if you like this theme, or &lt;a href="https://github.com/alexandrevicenzi/Flex/issues"&gt;open an issue&lt;/a&gt; if you need a feature or found a bug.&lt;/p&gt;</content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry></feed>

View file

@ -1,11 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>Flex - News</title><link href="http://flex.alxd.me/blog/" rel="alternate"></link><link href="http://flex.alxd.me/blog/feeds/news.atom.xml" rel="self"></link><id>http://flex.alxd.me/blog/</id><updated>2018-06-24T08:00:00-04:00</updated><entry><title>Flex 2.2.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-2.html" rel="alternate"></link><published>2018-06-24T08:00:00-04:00</published><updated>2018-06-24T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2018-06-24:/blog/flex-pelican-theme-update-2-2.html</id><summary type="html">&lt;p&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; 2.2.0 comes with bug fixes and improvements.&lt;/p&gt; <feed xmlns="http://www.w3.org/2005/Atom"><title>Flex - News</title><link href="http://flex.alxd.me/blog/" rel="alternate"></link><link href="http://flex.alxd.me/blog/feeds/news.atom.xml" rel="self"></link><id>http://flex.alxd.me/blog/</id><updated>2018-06-24T08:00:00-04:00</updated><subtitle>The minimalist Pelican theme</subtitle><entry><title>Flex 2.2.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-2.html" rel="alternate"></link><published>2018-06-24T08:00:00-04:00</published><updated>2018-06-24T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2018-06-24:/blog/flex-pelican-theme-update-2-2.html</id><content type="html">&lt;p&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; 2.2.0 comes with bug fixes and improvements.&lt;/p&gt;
&lt;p&gt;There are new Pygments templates and also a few code highlight fixes. There's also new social icons.&lt;/p&gt; &lt;p&gt;There are new Pygments templates and also a few code highlight fixes. There's also new social icons.&lt;/p&gt;
&lt;p&gt;Version 2.2.0 also comes with new translations. You can see available translations &lt;a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations"&gt;here&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;Version 2.2.0 also comes with new translations. You can see available translations &lt;a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Hope you enjoy this version.&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; 2.2.0 comes with bug fixes and improvements.&lt;/p&gt; &lt;p&gt;Hope you enjoy this version.&lt;/p&gt;</content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 2.1.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html" rel="alternate"></link><published>2016-11-16T08:00:00-05:00</published><updated>2016-11-16T08:00:00-05:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-11-16:/blog/flex-pelican-theme-update-2-1.html</id><summary type="html">&lt;p&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; 2.1.0 comes with features that I was delaying for so long.&lt;/p&gt;
&lt;p&gt;There are new Pygments templates and also a few code highlight fixes. There's also new social icons.&lt;/p&gt;
&lt;p&gt;Version 2.2.0 also comes with new translations. You can see available translations &lt;a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Hope you enjoy this version.&lt;/p&gt;</content><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 2.1.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html" rel="alternate"></link><published>2016-11-16T08:00:00-05:00</published><updated>2016-11-16T08:00:00-05:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-11-16:/blog/flex-pelican-theme-update-2-1.html</id><summary type="html">&lt;p&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; 2.1.0 comes with features that I was delaying for so long.&lt;/p&gt;
&lt;p&gt;Flex 2.1.0 adds support for Google AdSense.&lt;/p&gt; &lt;p&gt;Flex 2.1.0 adds support for Google AdSense.&lt;/p&gt;
&lt;p&gt;If you choose wisely, ads are a way to win some money, but if not, you may loose your users due to excessive use of ads …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; 2.1.0 comes with features that I was delaying for so long.&lt;/p&gt; &lt;p&gt;If you choose wisely, ads are a way to win some money, but if not, you may loose your users due to excessive use of ads …&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; 2.1.0 comes with features that I was delaying for so long.&lt;/p&gt;
&lt;p&gt;Flex 2.1.0 adds support for Google AdSense.&lt;/p&gt; &lt;p&gt;Flex 2.1.0 adds support for Google AdSense.&lt;/p&gt;
@ -28,7 +25,7 @@ Below you can see how to enable ads in your pelican configuration file.&lt;/p&gt
&lt;p&gt;Version 2.1.0 also comes with new translations. You can see available translations &lt;a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations"&gt;here&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;Version 2.1.0 also comes with new translations. You can see available translations &lt;a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Hope you enjoy this version.&lt;/p&gt;</content><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 2.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html" rel="alternate"></link><published>2016-09-13T08:00:00-04:00</published><updated>2016-09-13T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-09-13:/blog/flex-pelican-theme-update-2-0.html</id><summary type="html">&lt;p&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; 2.0 comes with new features. &lt;p&gt;Hope you enjoy this version.&lt;/p&gt;</content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 2.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html" rel="alternate"></link><published>2016-09-13T08:00:00-04:00</published><updated>2016-09-13T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-09-13:/blog/flex-pelican-theme-update-2-0.html</id><summary type="html">&lt;p&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; 2.0 comes with new features.
In fact there are two new features.&lt;/p&gt; In fact there are two new features.&lt;/p&gt;
&lt;p&gt;The biggest change is localization support. &lt;p&gt;The biggest change is localization support.
Yes, Flex now can be translated into your language. Yes, Flex now can be translated into your language.
@ -57,7 +54,7 @@ But if you want to use translation you need to add new lines to your pelican con
&lt;p&gt;Last but not least, Flex supports the feature "X minute read", similar &lt;a href="https://medium.com/"&gt;Medium&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;Last but not least, Flex supports the feature "X minute read", similar &lt;a href="https://medium.com/"&gt;Medium&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Hope you enjoy this version.&lt;/p&gt;</content><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 1.2.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html" rel="alternate"></link><published>2016-06-10T08:00:00-04:00</published><updated>2016-06-10T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-06-10:/blog/flex-pelican-theme-update-1-2-0.html</id><summary type="html">&lt;p&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; received some new features. Version 1.2.0 include new features and some updates.&lt;/p&gt; &lt;p&gt;Hope you enjoy this version.&lt;/p&gt;</content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 1.2.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html" rel="alternate"></link><published>2016-06-10T08:00:00-04:00</published><updated>2016-06-10T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-06-10:/blog/flex-pelican-theme-update-1-2-0.html</id><summary type="html">&lt;p&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; received some new features. Version 1.2.0 include new features and some updates.&lt;/p&gt;
&lt;p&gt;For developers there are new color styles for your code. For general purpose there is RUM support, related posts and browser color configuration.&lt;/p&gt; &lt;p&gt;For developers there are new color styles for your code. For general purpose there is RUM support, related posts and browser color configuration.&lt;/p&gt;
&lt;ul&gt; &lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex/issues/31"&gt;Update font-awesome&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex/issues/31"&gt;Update font-awesome&lt;/a&gt;&lt;/li&gt;
@ -73,19 +70,13 @@ But if you want to use translation you need to add new lines to your pelican con
&lt;li&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex/issues/16"&gt;Add StatusCake RUM support&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex/issues/16"&gt;Add StatusCake RUM support&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt; &lt;/ul&gt;
&lt;p&gt;If you need help or want to report a bug, please open an &lt;a href="https://github.com/alexandrevicenzi/Flex/issues"&gt;issue&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;If you need help or want to report a bug, please open an &lt;a href="https://github.com/alexandrevicenzi/Flex/issues"&gt;issue&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Hope you enjoy this theme.&lt;/p&gt;</content><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 1.1.1</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1-1.html" rel="alternate"></link><published>2016-02-27T08:00:00-05:00</published><updated>2016-02-27T08:00:00-05:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-02-27:/blog/flex-pelican-theme-update-1-1-1.html</id><summary type="html">&lt;p&gt;Today, &lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; received a small update.&lt;/p&gt; &lt;p&gt;Hope you enjoy this theme.&lt;/p&gt;</content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 1.1.1</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1-1.html" rel="alternate"></link><published>2016-02-27T08:00:00-05:00</published><updated>2016-02-27T08:00:00-05:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-02-27:/blog/flex-pelican-theme-update-1-1-1.html</id><content type="html">&lt;p&gt;Today, &lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; received a small update.&lt;/p&gt;
&lt;p&gt;Some bugs are now fixed. I think the most important fixes are:&lt;/p&gt; &lt;p&gt;Some bugs are now fixed. I think the most important fixes are:&lt;/p&gt;
&lt;ul&gt; &lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex/issues/21"&gt;Bug in CSS with placement of "Newer Posts" button&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex/issues/21"&gt;Bug in CSS with placement of "Newer Posts" button&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex/issues/14"&gt;Posts preview on main page&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex/issues/14"&gt;Posts preview on main page&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt; &lt;/ul&gt;
&lt;p&gt;Hope you enjoy this theme.&lt;/p&gt;</summary><content type="html">&lt;p&gt;Today, &lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; received a small update.&lt;/p&gt; &lt;p&gt;Hope you enjoy this theme.&lt;/p&gt;</content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 1.1.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html" rel="alternate"></link><published>2015-10-07T08:00:00-04:00</published><updated>2015-10-07T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2015-10-07:/blog/flex-pelican-theme-update-1-1.html</id><summary type="html">&lt;p&gt;I've made the &lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; a time ago. For my surprise, many people are using it. I feel thankful for this.&lt;/p&gt;
&lt;p&gt;Some bugs are now fixed. I think the most important fixes are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex/issues/21"&gt;Bug in CSS with placement of "Newer Posts" button&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/alexandrevicenzi/Flex/issues/14"&gt;Posts preview on main page&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Hope you enjoy this theme.&lt;/p&gt;</content><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 1.1.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html" rel="alternate"></link><published>2015-10-07T08:00:00-04:00</published><updated>2015-10-07T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2015-10-07:/blog/flex-pelican-theme-update-1-1.html</id><summary type="html">&lt;p&gt;I've made the &lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; a time ago. For my surprise, many people are using it. I feel thankful for this.&lt;/p&gt;
&lt;p&gt;So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release …&lt;/p&gt;</summary><content type="html">&lt;p&gt;I've made the &lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; a time ago. For my surprise, many people are using it. I feel thankful for this.&lt;/p&gt; &lt;p&gt;So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release …&lt;/p&gt;</summary><content type="html">&lt;p&gt;I've made the &lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Flex theme&lt;/a&gt; a time ago. For my surprise, many people are using it. I feel thankful for this.&lt;/p&gt;
&lt;p&gt;So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release the &lt;a href="https://github.com/alexandrevicenzi/Flex/releases/tag/v1.1"&gt;second version&lt;/a&gt; of Flex (aka v1.1).&lt;/p&gt; &lt;p&gt;So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release the &lt;a href="https://github.com/alexandrevicenzi/Flex/releases/tag/v1.1"&gt;second version&lt;/a&gt; of Flex (aka v1.1).&lt;/p&gt;
&lt;p&gt;This new version doesn't include nothing so special, just some bug fix and a new setting to allow custom CSS stylesheets.&lt;/p&gt; &lt;p&gt;This new version doesn't include nothing so special, just some bug fix and a new setting to allow custom CSS stylesheets.&lt;/p&gt;
@ -97,7 +88,7 @@ But if you want to use translation you need to add new lines to your pelican con
&lt;/pre&gt;&lt;/div&gt; &lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;I would like to thank all who helped in this new version.&lt;/p&gt;</content><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex: Responsive Pelican theme</title><link href="http://flex.alxd.me/blog/flex-pelican-theme.html" rel="alternate"></link><published>2015-07-22T08:00:00-04:00</published><updated>2015-07-22T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2015-07-22:/blog/flex-pelican-theme.html</id><summary type="html">&lt;p&gt;I just start a new fresh blog using &lt;a href="http://getpelican.com"&gt;Pelican&lt;/a&gt;. Sometimes choosing a theme for a new site is something difficult that takes time.&lt;/p&gt; &lt;p&gt;I would like to thank all who helped in this new version.&lt;/p&gt;</content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex: Responsive Pelican theme</title><link href="http://flex.alxd.me/blog/flex-pelican-theme.html" rel="alternate"></link><published>2015-07-22T08:00:00-04:00</published><updated>2015-07-22T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2015-07-22:/blog/flex-pelican-theme.html</id><summary type="html">&lt;p&gt;I just start a new fresh blog using &lt;a href="http://getpelican.com"&gt;Pelican&lt;/a&gt;. Sometimes choosing a theme for a new site is something difficult that takes time.&lt;/p&gt;
&lt;p&gt;In the Pelican &lt;a href="http://www.pelicanthemes.com/"&gt;theme gallery&lt;/a&gt;, I couldn't find anything that I really liked to feet all my needs. So in the first time of the history, I …&lt;/p&gt;</summary><content type="html">&lt;p&gt;I just start a new fresh blog using &lt;a href="http://getpelican.com"&gt;Pelican&lt;/a&gt;. Sometimes choosing a theme for a new site is something difficult that takes time.&lt;/p&gt; &lt;p&gt;In the Pelican &lt;a href="http://www.pelicanthemes.com/"&gt;theme gallery&lt;/a&gt;, I couldn't find anything that I really liked to feet all my needs. So in the first time of the history, I …&lt;/p&gt;</summary><content type="html">&lt;p&gt;I just start a new fresh blog using &lt;a href="http://getpelican.com"&gt;Pelican&lt;/a&gt;. Sometimes choosing a theme for a new site is something difficult that takes time.&lt;/p&gt;
&lt;p&gt;In the Pelican &lt;a href="http://www.pelicanthemes.com/"&gt;theme gallery&lt;/a&gt;, I couldn't find anything that I really liked to feet all my needs. So in the first time of the history, I choose to create my own theme. I never did this before.&lt;/p&gt; &lt;p&gt;In the Pelican &lt;a href="http://www.pelicanthemes.com/"&gt;theme gallery&lt;/a&gt;, I couldn't find anything that I really liked to feet all my needs. So in the first time of the history, I choose to create my own theme. I never did this before.&lt;/p&gt;
&lt;p&gt;Creating a theme for Pelican is quite easy, unlike Wordpress. You can take a look in the &lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Source Code of Flex&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;Creating a theme for Pelican is quite easy, unlike Wordpress. You can take a look in the &lt;a href="https://github.com/alexandrevicenzi/Flex"&gt;Source Code of Flex&lt;/a&gt;.&lt;/p&gt;
@ -185,4 +176,4 @@ Swap: 20480 1267 19213
&lt;p&gt;You can take a look in the &lt;a href="https://raw.githubusercontent.com/alexandrevicenzi/blog/master/content/News/flex-pelican-theme.md"&gt;source code of this page&lt;/a&gt; to know how to create rich examples.&lt;/p&gt; &lt;p&gt;You can take a look in the &lt;a href="https://raw.githubusercontent.com/alexandrevicenzi/blog/master/content/News/flex-pelican-theme.md"&gt;source code of this page&lt;/a&gt; to know how to create rich examples.&lt;/p&gt;
&lt;p&gt;Flex is my first attempt creating themes and there's no IE testing yet. You can check the &lt;a href="https://github.com/alexandrevicenzi/flex"&gt;sources here&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;Flex is my first attempt creating themes and there's no IE testing yet. You can check the &lt;a href="https://github.com/alexandrevicenzi/flex"&gt;sources here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;As soon as possible I will add this project to Pelican gallery.&lt;/p&gt; &lt;p&gt;As soon as possible I will add this project to Pelican gallery.&lt;/p&gt;
&lt;p&gt;Drop a comment if you like this theme, or &lt;a href="https://github.com/alexandrevicenzi/Flex/issues"&gt;open an issue&lt;/a&gt; if you need a feature or found a bug.&lt;/p&gt;</content><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry></feed> &lt;p&gt;Drop a comment if you like this theme, or &lt;a href="https://github.com/alexandrevicenzi/Flex/issues"&gt;open an issue&lt;/a&gt; if you need a feature or found a bug.&lt;/p&gt;</content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry></feed>

View file

@ -13,7 +13,9 @@
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet">
@ -46,6 +48,7 @@
<meta name="description" content="Today, Flex theme received a small update. Some bugs are now fixed. I think the most important fixes are: Bug in CSS with placement of &#34;Newer Posts&#34; button Posts preview on main page Hope you enjoy this theme." /> <meta name="description" content="Today, Flex theme received a small update. Some bugs are now fixed. I think the most important fixes are: Bug in CSS with placement of &#34;Newer Posts&#34; button Posts preview on main page Hope you enjoy this theme." />
<meta name="keywords" content="pelican, python, theme"> <meta name="keywords" content="pelican, python, theme">
<meta property="og:site_name" content="Flex"/> <meta property="og:site_name" content="Flex"/>
<meta property="og:title" content="Flex 1.1.1"/> <meta property="og:title" content="Flex 1.1.1"/>
<meta property="og:description" content="Today, Flex theme received a small update. Some bugs are now fixed. I think the most important fixes are: Bug in CSS with placement of &#34;Newer Posts&#34; button Posts preview on main page Hope you enjoy this theme."/> <meta property="og:description" content="Today, Flex theme received a small update. Some bugs are now fixed. I think the most important fixes are: Bug in CSS with placement of &#34;Newer Posts&#34; button Posts preview on main page Hope you enjoy this theme."/>
@ -82,15 +85,24 @@
<p>The minimalist Pelican theme</p> <p>The minimalist Pelican theme</p>
<nav> <nav>
<ul class="list"> <ul class="list">
<li><a href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a target="_blank" href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a target="_blank" href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li>
</ul> </ul>
</nav> </nav>
<ul class="social"> <ul class="social">
<li><a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank"><i class="fa fa-github"></i></a></li> <li>
<li><a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank"><i class="fa fa-rss"></i></a></li> <a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank">
<i class="fab fa-github">
</i>
</a></li>
<li>
<a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank">
<i class="fas fa-rss">
</i>
</a></li>
</ul> </ul>
</div> </div>
@ -185,9 +197,9 @@
<footer> <footer>
<p> <p>
&copy; 2018 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a> &copy; 2019 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>
</p> </p>
<p> Powered by <a href="http://getpelican.com" target="_blank">Pelican</a> - <a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a> theme by <a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a> <p> Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
</p><p> </p><p>
<a rel="license" <a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/" href="http://creativecommons.org/licenses/by-sa/4.0/"

View file

@ -13,7 +13,9 @@
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet">
@ -46,6 +48,7 @@
<meta name="description" content="I&#39;ve made the Flex theme a time ago. For my surprise, many people are using it. I feel thankful for this. So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release …" /> <meta name="description" content="I&#39;ve made the Flex theme a time ago. For my surprise, many people are using it. I feel thankful for this. So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release …" />
<meta name="keywords" content="pelican, python, theme"> <meta name="keywords" content="pelican, python, theme">
<meta property="og:site_name" content="Flex"/> <meta property="og:site_name" content="Flex"/>
<meta property="og:title" content="Flex 1.1.0"/> <meta property="og:title" content="Flex 1.1.0"/>
<meta property="og:description" content="I&#39;ve made the Flex theme a time ago. For my surprise, many people are using it. I feel thankful for this. So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release …"/> <meta property="og:description" content="I&#39;ve made the Flex theme a time ago. For my surprise, many people are using it. I feel thankful for this. So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release …"/>
@ -82,15 +85,24 @@
<p>The minimalist Pelican theme</p> <p>The minimalist Pelican theme</p>
<nav> <nav>
<ul class="list"> <ul class="list">
<li><a href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a target="_blank" href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a target="_blank" href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li>
</ul> </ul>
</nav> </nav>
<ul class="social"> <ul class="social">
<li><a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank"><i class="fa fa-github"></i></a></li> <li>
<li><a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank"><i class="fa fa-rss"></i></a></li> <a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank">
<i class="fab fa-github">
</i>
</a></li>
<li>
<a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank">
<i class="fas fa-rss">
</i>
</a></li>
</ul> </ul>
</div> </div>
@ -190,9 +202,9 @@
<footer> <footer>
<p> <p>
&copy; 2018 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a> &copy; 2019 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>
</p> </p>
<p> Powered by <a href="http://getpelican.com" target="_blank">Pelican</a> - <a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a> theme by <a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a> <p> Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
</p><p> </p><p>
<a rel="license" <a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/" href="http://creativecommons.org/licenses/by-sa/4.0/"

View file

@ -13,7 +13,9 @@
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet">
@ -46,6 +48,7 @@
<meta name="description" content="Flex theme received some new features. Version 1.2.0 include new features and some updates. For developers there are new color styles for your code. For general purpose there is RUM support, related posts and browser color configuration. Update font-awesome Added browser color configuration Related posts More Pygments Styles …" /> <meta name="description" content="Flex theme received some new features. Version 1.2.0 include new features and some updates. For developers there are new color styles for your code. For general purpose there is RUM support, related posts and browser color configuration. Update font-awesome Added browser color configuration Related posts More Pygments Styles …" />
<meta name="keywords" content="pelican, python, theme"> <meta name="keywords" content="pelican, python, theme">
<meta property="og:site_name" content="Flex"/> <meta property="og:site_name" content="Flex"/>
<meta property="og:title" content="Flex 1.2.0"/> <meta property="og:title" content="Flex 1.2.0"/>
<meta property="og:description" content="Flex theme received some new features. Version 1.2.0 include new features and some updates. For developers there are new color styles for your code. For general purpose there is RUM support, related posts and browser color configuration. Update font-awesome Added browser color configuration Related posts More Pygments Styles …"/> <meta property="og:description" content="Flex theme received some new features. Version 1.2.0 include new features and some updates. For developers there are new color styles for your code. For general purpose there is RUM support, related posts and browser color configuration. Update font-awesome Added browser color configuration Related posts More Pygments Styles …"/>
@ -82,15 +85,24 @@
<p>The minimalist Pelican theme</p> <p>The minimalist Pelican theme</p>
<nav> <nav>
<ul class="list"> <ul class="list">
<li><a href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a target="_blank" href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a target="_blank" href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li>
</ul> </ul>
</nav> </nav>
<ul class="social"> <ul class="social">
<li><a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank"><i class="fa fa-github"></i></a></li> <li>
<li><a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank"><i class="fa fa-rss"></i></a></li> <a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank">
<i class="fab fa-github">
</i>
</a></li>
<li>
<a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank">
<i class="fas fa-rss">
</i>
</a></li>
</ul> </ul>
</div> </div>
@ -189,9 +201,9 @@
<footer> <footer>
<p> <p>
&copy; 2018 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a> &copy; 2019 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>
</p> </p>
<p> Powered by <a href="http://getpelican.com" target="_blank">Pelican</a> - <a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a> theme by <a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a> <p> Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
</p><p> </p><p>
<a rel="license" <a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/" href="http://creativecommons.org/licenses/by-sa/4.0/"

View file

@ -13,7 +13,9 @@
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet">
@ -46,6 +48,7 @@
<meta name="description" content="Flex theme 2.0 comes with new features. In fact there are two new features. The biggest change is localization support. Yes, Flex now can be translated into your language. You can read about here. The biggest challege was to create a way to translate without breaking old versions. If …" /> <meta name="description" content="Flex theme 2.0 comes with new features. In fact there are two new features. The biggest change is localization support. Yes, Flex now can be translated into your language. You can read about here. The biggest challege was to create a way to translate without breaking old versions. If …" />
<meta name="keywords" content="pelican, python, theme"> <meta name="keywords" content="pelican, python, theme">
<meta property="og:site_name" content="Flex"/> <meta property="og:site_name" content="Flex"/>
<meta property="og:title" content="Flex 2.0"/> <meta property="og:title" content="Flex 2.0"/>
<meta property="og:description" content="Flex theme 2.0 comes with new features. In fact there are two new features. The biggest change is localization support. Yes, Flex now can be translated into your language. You can read about here. The biggest challege was to create a way to translate without breaking old versions. If …"/> <meta property="og:description" content="Flex theme 2.0 comes with new features. In fact there are two new features. The biggest change is localization support. Yes, Flex now can be translated into your language. You can read about here. The biggest challege was to create a way to translate without breaking old versions. If …"/>
@ -82,15 +85,24 @@
<p>The minimalist Pelican theme</p> <p>The minimalist Pelican theme</p>
<nav> <nav>
<ul class="list"> <ul class="list">
<li><a href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a target="_blank" href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a target="_blank" href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li>
</ul> </ul>
</nav> </nav>
<ul class="social"> <ul class="social">
<li><a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank"><i class="fa fa-github"></i></a></li> <li>
<li><a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank"><i class="fa fa-rss"></i></a></li> <a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank">
<i class="fab fa-github">
</i>
</a></li>
<li>
<a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank">
<i class="fas fa-rss">
</i>
</a></li>
</ul> </ul>
</div> </div>
@ -202,9 +214,9 @@ But if you want to use translation you need to add new lines to your pelican con
<footer> <footer>
<p> <p>
&copy; 2018 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a> &copy; 2019 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>
</p> </p>
<p> Powered by <a href="http://getpelican.com" target="_blank">Pelican</a> - <a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a> theme by <a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a> <p> Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
</p><p> </p><p>
<a rel="license" <a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/" href="http://creativecommons.org/licenses/by-sa/4.0/"

View file

@ -13,7 +13,9 @@
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet">
@ -46,6 +48,7 @@
<meta name="description" content="Flex theme 2.1.0 comes with features that I was delaying for so long. Flex 2.1.0 adds support for Google AdSense. If you choose wisely, ads are a way to win some money, but if not, you may loose your users due to excessive use of ads …" /> <meta name="description" content="Flex theme 2.1.0 comes with features that I was delaying for so long. Flex 2.1.0 adds support for Google AdSense. If you choose wisely, ads are a way to win some money, but if not, you may loose your users due to excessive use of ads …" />
<meta name="keywords" content="pelican, python, theme"> <meta name="keywords" content="pelican, python, theme">
<meta property="og:site_name" content="Flex"/> <meta property="og:site_name" content="Flex"/>
<meta property="og:title" content="Flex 2.1.0"/> <meta property="og:title" content="Flex 2.1.0"/>
<meta property="og:description" content="Flex theme 2.1.0 comes with features that I was delaying for so long. Flex 2.1.0 adds support for Google AdSense. If you choose wisely, ads are a way to win some money, but if not, you may loose your users due to excessive use of ads …"/> <meta property="og:description" content="Flex theme 2.1.0 comes with features that I was delaying for so long. Flex 2.1.0 adds support for Google AdSense. If you choose wisely, ads are a way to win some money, but if not, you may loose your users due to excessive use of ads …"/>
@ -82,15 +85,24 @@
<p>The minimalist Pelican theme</p> <p>The minimalist Pelican theme</p>
<nav> <nav>
<ul class="list"> <ul class="list">
<li><a href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a target="_blank" href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a target="_blank" href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li>
</ul> </ul>
</nav> </nav>
<ul class="social"> <ul class="social">
<li><a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank"><i class="fa fa-github"></i></a></li> <li>
<li><a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank"><i class="fa fa-rss"></i></a></li> <a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank">
<i class="fab fa-github">
</i>
</a></li>
<li>
<a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank">
<i class="fas fa-rss">
</i>
</a></li>
</ul> </ul>
</div> </div>
@ -200,9 +212,9 @@ Below you can see how to enable ads in your pelican configuration file.</p>
<footer> <footer>
<p> <p>
&copy; 2018 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a> &copy; 2019 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>
</p> </p>
<p> Powered by <a href="http://getpelican.com" target="_blank">Pelican</a> - <a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a> theme by <a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a> <p> Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
</p><p> </p><p>
<a rel="license" <a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/" href="http://creativecommons.org/licenses/by-sa/4.0/"

View file

@ -13,7 +13,9 @@
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet">
@ -46,6 +48,7 @@
<meta name="description" content="Flex theme 2.2.0 comes with bug fixes and improvements. There are new Pygments templates and also a few code highlight fixes. There&#39;s also new social icons. Version 2.2.0 also comes with new translations. You can see available translations here. Hope you enjoy this version." /> <meta name="description" content="Flex theme 2.2.0 comes with bug fixes and improvements. There are new Pygments templates and also a few code highlight fixes. There&#39;s also new social icons. Version 2.2.0 also comes with new translations. You can see available translations here. Hope you enjoy this version." />
<meta name="keywords" content="pelican, python, theme"> <meta name="keywords" content="pelican, python, theme">
<meta property="og:site_name" content="Flex"/> <meta property="og:site_name" content="Flex"/>
<meta property="og:title" content="Flex 2.2.0"/> <meta property="og:title" content="Flex 2.2.0"/>
<meta property="og:description" content="Flex theme 2.2.0 comes with bug fixes and improvements. There are new Pygments templates and also a few code highlight fixes. There&#39;s also new social icons. Version 2.2.0 also comes with new translations. You can see available translations here. Hope you enjoy this version."/> <meta property="og:description" content="Flex theme 2.2.0 comes with bug fixes and improvements. There are new Pygments templates and also a few code highlight fixes. There&#39;s also new social icons. Version 2.2.0 also comes with new translations. You can see available translations here. Hope you enjoy this version."/>
@ -82,15 +85,24 @@
<p>The minimalist Pelican theme</p> <p>The minimalist Pelican theme</p>
<nav> <nav>
<ul class="list"> <ul class="list">
<li><a href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a target="_blank" href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a target="_blank" href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li>
</ul> </ul>
</nav> </nav>
<ul class="social"> <ul class="social">
<li><a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank"><i class="fa fa-github"></i></a></li> <li>
<li><a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank"><i class="fa fa-rss"></i></a></li> <a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank">
<i class="fab fa-github">
</i>
</a></li>
<li>
<a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank">
<i class="fas fa-rss">
</i>
</a></li>
</ul> </ul>
</div> </div>
@ -182,9 +194,9 @@
<footer> <footer>
<p> <p>
&copy; 2018 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a> &copy; 2019 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>
</p> </p>
<p> Powered by <a href="http://getpelican.com" target="_blank">Pelican</a> - <a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a> theme by <a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a> <p> Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
</p><p> </p><p>
<a rel="license" <a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/" href="http://creativecommons.org/licenses/by-sa/4.0/"

View file

@ -13,7 +13,9 @@
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet">
@ -46,6 +48,7 @@
<meta name="description" content="I just start a new fresh blog using Pelican. Sometimes choosing a theme for a new site is something difficult that takes time. In the Pelican theme gallery, I couldn&#39;t find anything that I really liked to feet all my needs. So in the first time of the history, I …" /> <meta name="description" content="I just start a new fresh blog using Pelican. Sometimes choosing a theme for a new site is something difficult that takes time. In the Pelican theme gallery, I couldn&#39;t find anything that I really liked to feet all my needs. So in the first time of the history, I …" />
<meta name="keywords" content="pelican, python, theme"> <meta name="keywords" content="pelican, python, theme">
<meta property="og:site_name" content="Flex"/> <meta property="og:site_name" content="Flex"/>
<meta property="og:title" content="Flex: Responsive Pelican theme"/> <meta property="og:title" content="Flex: Responsive Pelican theme"/>
<meta property="og:description" content="I just start a new fresh blog using Pelican. Sometimes choosing a theme for a new site is something difficult that takes time. In the Pelican theme gallery, I couldn&#39;t find anything that I really liked to feet all my needs. So in the first time of the history, I …"/> <meta property="og:description" content="I just start a new fresh blog using Pelican. Sometimes choosing a theme for a new site is something difficult that takes time. In the Pelican theme gallery, I couldn&#39;t find anything that I really liked to feet all my needs. So in the first time of the history, I …"/>
@ -82,15 +85,24 @@
<p>The minimalist Pelican theme</p> <p>The minimalist Pelican theme</p>
<nav> <nav>
<ul class="list"> <ul class="list">
<li><a href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a target="_blank" href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a target="_blank" href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li>
</ul> </ul>
</nav> </nav>
<ul class="social"> <ul class="social">
<li><a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank"><i class="fa fa-github"></i></a></li> <li>
<li><a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank"><i class="fa fa-rss"></i></a></li> <a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank">
<i class="fab fa-github">
</i>
</a></li>
<li>
<a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank">
<i class="fas fa-rss">
</i>
</a></li>
</ul> </ul>
</div> </div>
@ -266,9 +278,9 @@ Swap: 20480 1267 19213
<footer> <footer>
<p> <p>
&copy; 2018 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a> &copy; 2019 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>
</p> </p>
<p> Powered by <a href="http://getpelican.com" target="_blank">Pelican</a> - <a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a> theme by <a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a> <p> Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
</p><p> </p><p>
<a rel="license" <a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/" href="http://creativecommons.org/licenses/by-sa/4.0/"

View file

@ -13,7 +13,9 @@
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet">
@ -72,15 +74,24 @@
<p>The minimalist Pelican theme</p> <p>The minimalist Pelican theme</p>
<nav> <nav>
<ul class="list"> <ul class="list">
<li><a href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a target="_blank" href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a target="_blank" href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li>
</ul> </ul>
</nav> </nav>
<ul class="social"> <ul class="social">
<li><a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank"><i class="fa fa-github"></i></a></li> <li>
<li><a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank"><i class="fa fa-rss"></i></a></li> <a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank">
<i class="fab fa-github">
</i>
</a></li>
<li>
<a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank">
<i class="fas fa-rss">
</i>
</a></li>
</ul> </ul>
</div> </div>
@ -125,9 +136,6 @@
<p>There are new Pygments templates and also a few code highlight fixes. There's also new social icons.</p> <p>There are new Pygments templates and also a few code highlight fixes. There's also new social icons.</p>
<p>Version 2.2.0 also comes with new translations. You can see available translations <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p> <p>Version 2.2.0 also comes with new translations. You can see available translations <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p>
<p>Hope you enjoy this version.</p> <p>Hope you enjoy this version.</p>
<br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-2.html#flex-pelican-theme-update-2-2"> Continue reading
</a>
</div> </div>
<hr /> <hr />
</article> </article>
@ -145,8 +153,8 @@
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.1.0 comes with features that I was delaying for so long.</p> <p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.1.0 comes with features that I was delaying for so long.</p>
<p>Flex 2.1.0 adds support for Google AdSense.</p> <p>Flex 2.1.0 adds support for Google AdSense.</p>
<p>If you choose wisely, ads are a way to win some money, but if not, you may loose your users due to excessive use of ads …</p> <p>If you choose wisely, ads are a way to win some money, but if not, you may loose your users due to excessive use of ads …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -169,8 +177,8 @@ Yes, Flex now can be translated into your language.
You can read about <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p> You can read about <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p>
<p>The biggest challege was to create a way to translate without breaking old versions. <p>The biggest challege was to create a way to translate without breaking old versions.
If …</p> If …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -193,8 +201,8 @@ If …</p>
<li><a href="https://github.com/alexandrevicenzi/Flex/pull/34">Added browser color configuration</a></li> <li><a href="https://github.com/alexandrevicenzi/Flex/pull/34">Added browser color configuration</a></li>
<li><a href="https://github.com/alexandrevicenzi/Flex/pull/27">Related posts</a></li> <li><a href="https://github.com/alexandrevicenzi/Flex/pull/27">Related posts</a></li>
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/38">More Pygments Styles …</a></li></ul> <li><a href="https://github.com/alexandrevicenzi/Flex/issues/38">More Pygments Styles …</a></li></ul>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -217,9 +225,6 @@ If …</p>
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/14">Posts preview on main page</a></li> <li><a href="https://github.com/alexandrevicenzi/Flex/issues/14">Posts preview on main page</a></li>
</ul> </ul>
<p>Hope you enjoy this theme.</p> <p>Hope you enjoy this theme.</p>
<br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1-1.html#flex-pelican-theme-update-1-1-1"> Continue reading
</a>
</div> </div>
<hr /> <hr />
</article> </article>
@ -236,8 +241,8 @@ If …</p>
<div> <div>
<p>I've made the <a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> a time ago. For my surprise, many people are using it. I feel thankful for this.</p> <p>I've made the <a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> a time ago. For my surprise, many people are using it. I feel thankful for this.</p>
<p>So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release …</p> <p>So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -255,8 +260,8 @@ If …</p>
<div> <div>
<p>I just start a new fresh blog using <a href="http://getpelican.com">Pelican</a>. Sometimes choosing a theme for a new site is something difficult that takes time.</p> <p>I just start a new fresh blog using <a href="http://getpelican.com">Pelican</a>. Sometimes choosing a theme for a new site is something difficult that takes time.</p>
<p>In the Pelican <a href="http://www.pelicanthemes.com/">theme gallery</a>, I couldn't find anything that I really liked to feet all my needs. So in the first time of the history, I …</p> <p>In the Pelican <a href="http://www.pelicanthemes.com/">theme gallery</a>, I couldn't find anything that I really liked to feet all my needs. So in the first time of the history, I …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme"> Continue reading
</a> </a>
</div> </div>
</article> </article>
@ -276,9 +281,9 @@ If …</p>
<footer> <footer>
<p> <p>
&copy; 2018 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a> &copy; 2019 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>
</p> </p>
<p> Powered by <a href="http://getpelican.com" target="_blank">Pelican</a> - <a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a> theme by <a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a> <p> Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
</p><p> </p><p>
<a rel="license" <a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/" href="http://creativecommons.org/licenses/by-sa/4.0/"

View file

@ -13,7 +13,9 @@
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet">
@ -51,6 +53,8 @@
<meta property="og:locale" content="en_US"/> <meta property="og:locale" content="en_US"/>
<meta property="og:url" content="http://flex.alxd.me/blog"/> <meta property="og:url" content="http://flex.alxd.me/blog"/>
<title>Flex &ndash; About</title> <title>Flex &ndash; About</title>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
@ -72,15 +76,24 @@
<p>The minimalist Pelican theme</p> <p>The minimalist Pelican theme</p>
<nav> <nav>
<ul class="list"> <ul class="list">
<li><a href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a target="_blank" href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a target="_blank" href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li>
</ul> </ul>
</nav> </nav>
<ul class="social"> <ul class="social">
<li><a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank"><i class="fa fa-github"></i></a></li> <li>
<li><a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank"><i class="fa fa-rss"></i></a></li> <a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank">
<i class="fab fa-github">
</i>
</a></li>
<li>
<a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank">
<i class="fas fa-rss">
</i>
</a></li>
</ul> </ul>
</div> </div>
@ -119,9 +132,9 @@
<footer> <footer>
<p> <p>
&copy; 2018 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a> &copy; 2019 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>
</p> </p>
<p> Powered by <a href="http://getpelican.com" target="_blank">Pelican</a> - <a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a> theme by <a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a> <p> Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
</p><p> </p><p>
<a rel="license" <a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/" href="http://creativecommons.org/licenses/by-sa/4.0/"

View file

@ -13,7 +13,9 @@
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet">
@ -51,6 +53,8 @@
<meta property="og:locale" content="en_US"/> <meta property="og:locale" content="en_US"/>
<meta property="og:url" content="http://flex.alxd.me/blog"/> <meta property="og:url" content="http://flex.alxd.me/blog"/>
<title>Flex &ndash; Contact</title> <title>Flex &ndash; Contact</title>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
@ -72,15 +76,24 @@
<p>The minimalist Pelican theme</p> <p>The minimalist Pelican theme</p>
<nav> <nav>
<ul class="list"> <ul class="list">
<li><a href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a target="_blank" href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a target="_blank" href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li>
</ul> </ul>
</nav> </nav>
<ul class="social"> <ul class="social">
<li><a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank"><i class="fa fa-github"></i></a></li> <li>
<li><a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank"><i class="fa fa-rss"></i></a></li> <a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank">
<i class="fab fa-github">
</i>
</a></li>
<li>
<a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank">
<i class="fas fa-rss">
</i>
</a></li>
</ul> </ul>
</div> </div>
@ -119,9 +132,9 @@
<footer> <footer>
<p> <p>
&copy; 2018 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a> &copy; 2019 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>
</p> </p>
<p> Powered by <a href="http://getpelican.com" target="_blank">Pelican</a> - <a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a> theme by <a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a> <p> Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
</p><p> </p><p>
<a rel="license" <a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/" href="http://creativecommons.org/licenses/by-sa/4.0/"

View file

@ -13,7 +13,9 @@
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet">
@ -73,15 +75,24 @@
<p>The minimalist Pelican theme</p> <p>The minimalist Pelican theme</p>
<nav> <nav>
<ul class="list"> <ul class="list">
<li><a href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a target="_blank" href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a target="_blank" href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li>
</ul> </ul>
</nav> </nav>
<ul class="social"> <ul class="social">
<li><a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank"><i class="fa fa-github"></i></a></li> <li>
<li><a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank"><i class="fa fa-rss"></i></a></li> <a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank">
<i class="fab fa-github">
</i>
</a></li>
<li>
<a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank">
<i class="fas fa-rss">
</i>
</a></li>
</ul> </ul>
</div> </div>
@ -126,9 +137,6 @@
<p>There are new Pygments templates and also a few code highlight fixes. There's also new social icons.</p> <p>There are new Pygments templates and also a few code highlight fixes. There's also new social icons.</p>
<p>Version 2.2.0 also comes with new translations. You can see available translations <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p> <p>Version 2.2.0 also comes with new translations. You can see available translations <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p>
<p>Hope you enjoy this version.</p> <p>Hope you enjoy this version.</p>
<br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-2.html#flex-pelican-theme-update-2-2"> Continue reading
</a>
</div> </div>
<hr /> <hr />
</article> </article>
@ -146,8 +154,8 @@
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.1.0 comes with features that I was delaying for so long.</p> <p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.1.0 comes with features that I was delaying for so long.</p>
<p>Flex 2.1.0 adds support for Google AdSense.</p> <p>Flex 2.1.0 adds support for Google AdSense.</p>
<p>If you choose wisely, ads are a way to win some money, but if not, you may loose your users due to excessive use of ads …</p> <p>If you choose wisely, ads are a way to win some money, but if not, you may loose your users due to excessive use of ads …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -170,8 +178,8 @@ Yes, Flex now can be translated into your language.
You can read about <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p> You can read about <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p>
<p>The biggest challege was to create a way to translate without breaking old versions. <p>The biggest challege was to create a way to translate without breaking old versions.
If …</p> If …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -194,8 +202,8 @@ If …</p>
<li><a href="https://github.com/alexandrevicenzi/Flex/pull/34">Added browser color configuration</a></li> <li><a href="https://github.com/alexandrevicenzi/Flex/pull/34">Added browser color configuration</a></li>
<li><a href="https://github.com/alexandrevicenzi/Flex/pull/27">Related posts</a></li> <li><a href="https://github.com/alexandrevicenzi/Flex/pull/27">Related posts</a></li>
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/38">More Pygments Styles …</a></li></ul> <li><a href="https://github.com/alexandrevicenzi/Flex/issues/38">More Pygments Styles …</a></li></ul>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -218,9 +226,6 @@ If …</p>
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/14">Posts preview on main page</a></li> <li><a href="https://github.com/alexandrevicenzi/Flex/issues/14">Posts preview on main page</a></li>
</ul> </ul>
<p>Hope you enjoy this theme.</p> <p>Hope you enjoy this theme.</p>
<br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1-1.html#flex-pelican-theme-update-1-1-1"> Continue reading
</a>
</div> </div>
<hr /> <hr />
</article> </article>
@ -237,8 +242,8 @@ If …</p>
<div> <div>
<p>I've made the <a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> a time ago. For my surprise, many people are using it. I feel thankful for this.</p> <p>I've made the <a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> a time ago. For my surprise, many people are using it. I feel thankful for this.</p>
<p>So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release …</p> <p>So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -256,8 +261,8 @@ If …</p>
<div> <div>
<p>I just start a new fresh blog using <a href="http://getpelican.com">Pelican</a>. Sometimes choosing a theme for a new site is something difficult that takes time.</p> <p>I just start a new fresh blog using <a href="http://getpelican.com">Pelican</a>. Sometimes choosing a theme for a new site is something difficult that takes time.</p>
<p>In the Pelican <a href="http://www.pelicanthemes.com/">theme gallery</a>, I couldn't find anything that I really liked to feet all my needs. So in the first time of the history, I …</p> <p>In the Pelican <a href="http://www.pelicanthemes.com/">theme gallery</a>, I couldn't find anything that I really liked to feet all my needs. So in the first time of the history, I …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme"> Continue reading
</a> </a>
</div> </div>
</article> </article>
@ -277,9 +282,9 @@ If …</p>
<footer> <footer>
<p> <p>
&copy; 2018 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a> &copy; 2019 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>
</p> </p>
<p> Powered by <a href="http://getpelican.com" target="_blank">Pelican</a> - <a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a> theme by <a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a> <p> Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
</p><p> </p><p>
<a rel="license" <a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/" href="http://creativecommons.org/licenses/by-sa/4.0/"

View file

@ -13,7 +13,9 @@
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet">
@ -73,15 +75,24 @@
<p>The minimalist Pelican theme</p> <p>The minimalist Pelican theme</p>
<nav> <nav>
<ul class="list"> <ul class="list">
<li><a href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a target="_blank" href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a target="_blank" href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li>
</ul> </ul>
</nav> </nav>
<ul class="social"> <ul class="social">
<li><a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank"><i class="fa fa-github"></i></a></li> <li>
<li><a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank"><i class="fa fa-rss"></i></a></li> <a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank">
<i class="fab fa-github">
</i>
</a></li>
<li>
<a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank">
<i class="fas fa-rss">
</i>
</a></li>
</ul> </ul>
</div> </div>
@ -126,9 +137,6 @@
<p>There are new Pygments templates and also a few code highlight fixes. There's also new social icons.</p> <p>There are new Pygments templates and also a few code highlight fixes. There's also new social icons.</p>
<p>Version 2.2.0 also comes with new translations. You can see available translations <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p> <p>Version 2.2.0 also comes with new translations. You can see available translations <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p>
<p>Hope you enjoy this version.</p> <p>Hope you enjoy this version.</p>
<br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-2.html#flex-pelican-theme-update-2-2"> Continue reading
</a>
</div> </div>
<hr /> <hr />
</article> </article>
@ -146,8 +154,8 @@
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.1.0 comes with features that I was delaying for so long.</p> <p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.1.0 comes with features that I was delaying for so long.</p>
<p>Flex 2.1.0 adds support for Google AdSense.</p> <p>Flex 2.1.0 adds support for Google AdSense.</p>
<p>If you choose wisely, ads are a way to win some money, but if not, you may loose your users due to excessive use of ads …</p> <p>If you choose wisely, ads are a way to win some money, but if not, you may loose your users due to excessive use of ads …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -170,8 +178,8 @@ Yes, Flex now can be translated into your language.
You can read about <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p> You can read about <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p>
<p>The biggest challege was to create a way to translate without breaking old versions. <p>The biggest challege was to create a way to translate without breaking old versions.
If …</p> If …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -194,8 +202,8 @@ If …</p>
<li><a href="https://github.com/alexandrevicenzi/Flex/pull/34">Added browser color configuration</a></li> <li><a href="https://github.com/alexandrevicenzi/Flex/pull/34">Added browser color configuration</a></li>
<li><a href="https://github.com/alexandrevicenzi/Flex/pull/27">Related posts</a></li> <li><a href="https://github.com/alexandrevicenzi/Flex/pull/27">Related posts</a></li>
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/38">More Pygments Styles …</a></li></ul> <li><a href="https://github.com/alexandrevicenzi/Flex/issues/38">More Pygments Styles …</a></li></ul>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -218,9 +226,6 @@ If …</p>
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/14">Posts preview on main page</a></li> <li><a href="https://github.com/alexandrevicenzi/Flex/issues/14">Posts preview on main page</a></li>
</ul> </ul>
<p>Hope you enjoy this theme.</p> <p>Hope you enjoy this theme.</p>
<br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1-1.html#flex-pelican-theme-update-1-1-1"> Continue reading
</a>
</div> </div>
<hr /> <hr />
</article> </article>
@ -237,8 +242,8 @@ If …</p>
<div> <div>
<p>I've made the <a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> a time ago. For my surprise, many people are using it. I feel thankful for this.</p> <p>I've made the <a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> a time ago. For my surprise, many people are using it. I feel thankful for this.</p>
<p>So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release …</p> <p>So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -256,8 +261,8 @@ If …</p>
<div> <div>
<p>I just start a new fresh blog using <a href="http://getpelican.com">Pelican</a>. Sometimes choosing a theme for a new site is something difficult that takes time.</p> <p>I just start a new fresh blog using <a href="http://getpelican.com">Pelican</a>. Sometimes choosing a theme for a new site is something difficult that takes time.</p>
<p>In the Pelican <a href="http://www.pelicanthemes.com/">theme gallery</a>, I couldn't find anything that I really liked to feet all my needs. So in the first time of the history, I …</p> <p>In the Pelican <a href="http://www.pelicanthemes.com/">theme gallery</a>, I couldn't find anything that I really liked to feet all my needs. So in the first time of the history, I …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme"> Continue reading
</a> </a>
</div> </div>
</article> </article>
@ -277,9 +282,9 @@ If …</p>
<footer> <footer>
<p> <p>
&copy; 2018 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a> &copy; 2019 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>
</p> </p>
<p> Powered by <a href="http://getpelican.com" target="_blank">Pelican</a> - <a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a> theme by <a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a> <p> Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
</p><p> </p><p>
<a rel="license" <a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/" href="http://creativecommons.org/licenses/by-sa/4.0/"

View file

@ -13,7 +13,9 @@
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet">
@ -73,15 +75,24 @@
<p>The minimalist Pelican theme</p> <p>The minimalist Pelican theme</p>
<nav> <nav>
<ul class="list"> <ul class="list">
<li><a href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a target="_blank" href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a target="_blank" href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li>
</ul> </ul>
</nav> </nav>
<ul class="social"> <ul class="social">
<li><a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank"><i class="fa fa-github"></i></a></li> <li>
<li><a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank"><i class="fa fa-rss"></i></a></li> <a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank">
<i class="fab fa-github">
</i>
</a></li>
<li>
<a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank">
<i class="fas fa-rss">
</i>
</a></li>
</ul> </ul>
</div> </div>
@ -126,9 +137,6 @@
<p>There are new Pygments templates and also a few code highlight fixes. There's also new social icons.</p> <p>There are new Pygments templates and also a few code highlight fixes. There's also new social icons.</p>
<p>Version 2.2.0 also comes with new translations. You can see available translations <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p> <p>Version 2.2.0 also comes with new translations. You can see available translations <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p>
<p>Hope you enjoy this version.</p> <p>Hope you enjoy this version.</p>
<br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-2.html#flex-pelican-theme-update-2-2"> Continue reading
</a>
</div> </div>
<hr /> <hr />
</article> </article>
@ -146,8 +154,8 @@
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.1.0 comes with features that I was delaying for so long.</p> <p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.1.0 comes with features that I was delaying for so long.</p>
<p>Flex 2.1.0 adds support for Google AdSense.</p> <p>Flex 2.1.0 adds support for Google AdSense.</p>
<p>If you choose wisely, ads are a way to win some money, but if not, you may loose your users due to excessive use of ads …</p> <p>If you choose wisely, ads are a way to win some money, but if not, you may loose your users due to excessive use of ads …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -170,8 +178,8 @@ Yes, Flex now can be translated into your language.
You can read about <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p> You can read about <a href="https://github.com/alexandrevicenzi/Flex/wiki/Translations">here</a>.</p>
<p>The biggest challege was to create a way to translate without breaking old versions. <p>The biggest challege was to create a way to translate without breaking old versions.
If …</p> If …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -194,8 +202,8 @@ If …</p>
<li><a href="https://github.com/alexandrevicenzi/Flex/pull/34">Added browser color configuration</a></li> <li><a href="https://github.com/alexandrevicenzi/Flex/pull/34">Added browser color configuration</a></li>
<li><a href="https://github.com/alexandrevicenzi/Flex/pull/27">Related posts</a></li> <li><a href="https://github.com/alexandrevicenzi/Flex/pull/27">Related posts</a></li>
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/38">More Pygments Styles …</a></li></ul> <li><a href="https://github.com/alexandrevicenzi/Flex/issues/38">More Pygments Styles …</a></li></ul>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -218,9 +226,6 @@ If …</p>
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/14">Posts preview on main page</a></li> <li><a href="https://github.com/alexandrevicenzi/Flex/issues/14">Posts preview on main page</a></li>
</ul> </ul>
<p>Hope you enjoy this theme.</p> <p>Hope you enjoy this theme.</p>
<br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1-1.html#flex-pelican-theme-update-1-1-1"> Continue reading
</a>
</div> </div>
<hr /> <hr />
</article> </article>
@ -237,8 +242,8 @@ If …</p>
<div> <div>
<p>I've made the <a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> a time ago. For my surprise, many people are using it. I feel thankful for this.</p> <p>I've made the <a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> a time ago. For my surprise, many people are using it. I feel thankful for this.</p>
<p>So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release …</p> <p>So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
@ -256,8 +261,8 @@ If …</p>
<div> <div>
<p>I just start a new fresh blog using <a href="http://getpelican.com">Pelican</a>. Sometimes choosing a theme for a new site is something difficult that takes time.</p> <p>I just start a new fresh blog using <a href="http://getpelican.com">Pelican</a>. Sometimes choosing a theme for a new site is something difficult that takes time.</p>
<p>In the Pelican <a href="http://www.pelicanthemes.com/">theme gallery</a>, I couldn't find anything that I really liked to feet all my needs. So in the first time of the history, I …</p> <p>In the Pelican <a href="http://www.pelicanthemes.com/">theme gallery</a>, I couldn't find anything that I really liked to feet all my needs. So in the first time of the history, I …</p>
<br> <br>
<a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme"> Continue reading <a class="btn" href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme"> Continue reading
</a> </a>
</div> </div>
</article> </article>
@ -277,9 +282,9 @@ If …</p>
<footer> <footer>
<p> <p>
&copy; 2018 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a> &copy; 2019 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>
</p> </p>
<p> Powered by <a href="http://getpelican.com" target="_blank">Pelican</a> - <a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a> theme by <a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a> <p> Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
</p><p> </p><p>
<a rel="license" <a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/" href="http://creativecommons.org/licenses/by-sa/4.0/"

View file

@ -13,7 +13,9 @@
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet">
@ -73,15 +75,24 @@
<p>The minimalist Pelican theme</p> <p>The minimalist Pelican theme</p>
<nav> <nav>
<ul class="list"> <ul class="list">
<li><a href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a target="_blank" href="http://flex.alxd.me/blog/pages/about.html#about">About</a></li>
<li><a target="_blank" href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li>
</ul> </ul>
</nav> </nav>
<ul class="social"> <ul class="social">
<li><a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank"><i class="fa fa-github"></i></a></li> <li>
<li><a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank"><i class="fa fa-rss"></i></a></li> <a class="sc-github" href="https://github.com/alexandrevicenzi/Flex" target="_blank">
<i class="fab fa-github">
</i>
</a></li>
<li>
<a class="sc-rss" href="/blog/feeds/all.atom.xml" target="_blank">
<i class="fas fa-rss">
</i>
</a></li>
</ul> </ul>
</div> </div>
@ -111,7 +122,7 @@
<article class="single"> <article class="single">
<header> <header>
<h1> Tags <h1 id="tags"> Tags
</h1> </h1>
</header> </header>
<div> <div>
@ -124,9 +135,9 @@
<footer> <footer>
<p> <p>
&copy; 2018 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a> &copy; 2019 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>
</p> </p>
<p> Powered by <a href="http://getpelican.com" target="_blank">Pelican</a> - <a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a> theme by <a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a> <p> Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
</p><p> </p><p>
<a rel="license" <a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/" href="http://creativecommons.org/licenses/by-sa/4.0/"

View file

@ -0,0 +1,5 @@
/*!
* Font Awesome Free 5.1.0 by @fontawesome - https://fontawesome.com
* License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
*/
@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,5 @@
/*!
* Font Awesome Free 5.1.0 by @fontawesome - https://fontawesome.com
* License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
*/
@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Free";font-weight:900}

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 608 KiB

Binary file not shown.

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 579 KiB

Binary file not shown.

View file

@ -0,0 +1,60 @@
.highlight .hll { background-color: #ffffcc }
.highlight { background: #ffffff; }
.highlight .c { color: #008800; font-style: italic } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .g { color: #2c2cff } /* Generic */
.highlight .k { color: #2c2cff } /* Keyword */
.highlight .x { background-color: #ffffe0 } /* Other */
.highlight .ch { color: #008800; font-style: italic } /* Comment.Hashbang */
.highlight .cm { color: #008800; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #008800; font-style: italic } /* Comment.Preproc */
.highlight .cpf { color: #008800; font-style: italic } /* Comment.PreprocFile */
.highlight .c1 { color: #008800; font-style: italic } /* Comment.Single */
.highlight .cs { color: #008800; font-style: italic } /* Comment.Special */
.highlight .gd { color: #2c2cff } /* Generic.Deleted */
.highlight .ge { color: #008800 } /* Generic.Emph */
.highlight .gr { color: #d30202 } /* Generic.Error */
.highlight .gh { color: #2c2cff } /* Generic.Heading */
.highlight .gi { color: #2c2cff } /* Generic.Inserted */
.highlight .go { color: #2c2cff } /* Generic.Output */
.highlight .gp { color: #2c2cff } /* Generic.Prompt */
.highlight .gs { color: #2c2cff } /* Generic.Strong */
.highlight .gu { color: #2c2cff } /* Generic.Subheading */
.highlight .gt { color: #2c2cff } /* Generic.Traceback */
.highlight .kc { color: #2c2cff; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #2c2cff } /* Keyword.Declaration */
.highlight .kn { color: #2c2cff } /* Keyword.Namespace */
.highlight .kp { color: #2c2cff } /* Keyword.Pseudo */
.highlight .kr { color: #353580; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #2c2cff } /* Keyword.Type */
.highlight .m { color: #2e8b57; font-weight: bold } /* Literal.Number */
.highlight .s { color: #800080 } /* Literal.String */
.highlight .nb { color: #2c2cff } /* Name.Builtin */
.highlight .nf { font-weight: bold; font-style: italic } /* Name.Function */
.highlight .nv { color: #2c2cff; font-weight: bold } /* Name.Variable */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #2e8b57; font-weight: bold } /* Literal.Number.Bin */
.highlight .mf { color: #2e8b57; font-weight: bold } /* Literal.Number.Float */
.highlight .mh { color: #2e8b57; font-weight: bold } /* Literal.Number.Hex */
.highlight .mi { color: #2e8b57; font-weight: bold } /* Literal.Number.Integer */
.highlight .mo { color: #2e8b57; font-weight: bold } /* Literal.Number.Oct */
.highlight .sa { color: #800080 } /* Literal.String.Affix */
.highlight .sb { color: #800080 } /* Literal.String.Backtick */
.highlight .sc { color: #800080 } /* Literal.String.Char */
.highlight .dl { color: #800080 } /* Literal.String.Delimiter */
.highlight .sd { color: #800080 } /* Literal.String.Doc */
.highlight .s2 { color: #800080 } /* Literal.String.Double */
.highlight .se { color: #800080 } /* Literal.String.Escape */
.highlight .sh { color: #800080 } /* Literal.String.Heredoc */
.highlight .si { color: #800080 } /* Literal.String.Interpol */
.highlight .sx { color: #800080 } /* Literal.String.Other */
.highlight .sr { color: #800080 } /* Literal.String.Regex */
.highlight .s1 { color: #800080 } /* Literal.String.Single */
.highlight .ss { color: #800080 } /* Literal.String.Symbol */
.highlight .bp { color: #2c2cff } /* Name.Builtin.Pseudo */
.highlight .fm { font-weight: bold; font-style: italic } /* Name.Function.Magic */
.highlight .vc { color: #2c2cff; font-weight: bold } /* Name.Variable.Class */
.highlight .vg { color: #2c2cff; font-weight: bold } /* Name.Variable.Global */
.highlight .vi { color: #2c2cff; font-weight: bold } /* Name.Variable.Instance */
.highlight .vm { color: #2c2cff; font-weight: bold } /* Name.Variable.Magic */
.highlight .il { color: #2e8b57; font-weight: bold } /* Literal.Number.Integer.Long */

1
docs/blog/theme/pygments/sas.min.css vendored Normal file
View file

@ -0,0 +1 @@
.highlight .hll{background-color:#ffc}.highlight{background:#fff}.highlight .c{color:#080;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .g,.highlight .k{color:#2c2cff}.highlight .x{background-color:#ffffe0}.highlight .c1,.highlight .ch,.highlight .cm,.highlight .cp,.highlight .cpf,.highlight .cs{color:#080;font-style:italic}.highlight .gd{color:#2c2cff}.highlight .ge{color:#080}.highlight .gr{color:#d30202}.highlight .gh,.highlight .gi,.highlight .go,.highlight .gp,.highlight .gs,.highlight .gt,.highlight .gu{color:#2c2cff}.highlight .kc{color:#2c2cff;font-weight:700}.highlight .kd,.highlight .kn,.highlight .kp{color:#2c2cff}.highlight .kr{color:#353580;font-weight:700}.highlight .kt{color:#2c2cff}.highlight .m{color:#2e8b57;font-weight:700}.highlight .s{color:purple}.highlight .nb{color:#2c2cff}.highlight .nf{font-weight:700;font-style:italic}.highlight .nv{color:#2c2cff;font-weight:700}.highlight .w{color:#bbb}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#2e8b57;font-weight:700}.highlight .dl,.highlight .s1,.highlight .s2,.highlight .sa,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si,.highlight .sr,.highlight .ss,.highlight .sx{color:purple}.highlight .bp{color:#2c2cff}.highlight .fm{font-weight:700;font-style:italic}.highlight .vc,.highlight .vg,.highlight .vi,.highlight .vm{color:#2c2cff;font-weight:700}.highlight .il{color:#2e8b57;font-weight:700}

View file

@ -1,87 +1,78 @@
/* Solarized Dark .highlight .hll { background-color: #073642 }
.highlight { background: #002b36; color: #839496 }
For use with Jekyll and Pygments .highlight .c { color: #586e75; font-style: italic } /* Comment */
.highlight .err { color: #839496; background-color: #dc322f } /* Error */
http://ethanschoonover.com/solarized .highlight .esc { color: #839496 } /* Escape */
.highlight .g { color: #839496 } /* Generic */
SOLARIZED HEX ROLE
--------- -------- ------------------------------------------
base03 #002b36 background
base01 #586e75 comments / secondary content
base1 #93a1a1 body text / default code / primary content
orange #cb4b16 constants
red #dc322f regex, special keywords
blue #268bd2 reserved keywords
cyan #2aa198 strings, numbers
green #859900 operators, other keywords
*/
.highlight {background-color: #002b36; color: #93a1a1;}
.highlight .c { color: #586e75 } /* Comment */
.highlight .err { color: #93a1a1 } /* Error */
.highlight .g { color: #93a1a1 } /* Generic */
.highlight .k { color: #859900 } /* Keyword */ .highlight .k { color: #859900 } /* Keyword */
.highlight .l { color: #93a1a1 } /* Literal */ .highlight .l { color: #839496 } /* Literal */
.highlight .n { color: #93a1a1 } /* Name */ .highlight .n { color: #839496 } /* Name */
.highlight .o { color: #859900 } /* Operator */ .highlight .o { color: #586e75 } /* Operator */
.highlight .x { color: #cb4b16 } /* Other */ .highlight .x { color: #839496 } /* Other */
.highlight .p { color: #93a1a1 } /* Punctuation */ .highlight .p { color: #839496 } /* Punctuation */
.highlight .cm { color: #586e75 } /* Comment.Multiline */ .highlight .ch { color: #586e75; font-style: italic } /* Comment.Hashbang */
.highlight .cp { color: #859900 } /* Comment.Preproc */ .highlight .cm { color: #586e75; font-style: italic } /* Comment.Multiline */
.highlight .c1 { color: #586e75 } /* Comment.Single */ .highlight .cp { color: #d33682 } /* Comment.Preproc */
.highlight .cs { color: #859900 } /* Comment.Special */ .highlight .cpf { color: #586e75 } /* Comment.PreprocFile */
.highlight .gd { color: #2aa198 } /* Generic.Deleted */ .highlight .c1 { color: #586e75; font-style: italic } /* Comment.Single */
.highlight .ge { color: #93a1a1; font-style: italic } /* Generic.Emph */ .highlight .cs { color: #586e75; font-style: italic } /* Comment.Special */
.highlight .gd { color: #dc322f } /* Generic.Deleted */
.highlight .ge { color: #839496; font-style: italic } /* Generic.Emph */
.highlight .gr { color: #dc322f } /* Generic.Error */ .highlight .gr { color: #dc322f } /* Generic.Error */
.highlight .gh { color: #cb4b16 } /* Generic.Heading */ .highlight .gh { color: #839496; font-weight: bold } /* Generic.Heading */
.highlight .gi { color: #859900 } /* Generic.Inserted */ .highlight .gi { color: #859900 } /* Generic.Inserted */
.highlight .go { color: #93a1a1 } /* Generic.Output */ .highlight .go { color: #839496 } /* Generic.Output */
.highlight .gp { color: #93a1a1 } /* Generic.Prompt */ .highlight .gp { color: #839496 } /* Generic.Prompt */
.highlight .gs { color: #93a1a1; font-weight: bold } /* Generic.Strong */ .highlight .gs { color: #839496; font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #cb4b16 } /* Generic.Subheading */ .highlight .gu { color: #839496; text-decoration: underline } /* Generic.Subheading */
.highlight .gt { color: #93a1a1 } /* Generic.Traceback */ .highlight .gt { color: #268bd2 } /* Generic.Traceback */
.highlight .kc { color: #cb4b16 } /* Keyword.Constant */ .highlight .kc { color: #2aa198 } /* Keyword.Constant */
.highlight .kd { color: #268bd2 } /* Keyword.Declaration */ .highlight .kd { color: #2aa198 } /* Keyword.Declaration */
.highlight .kn { color: #859900 } /* Keyword.Namespace */ .highlight .kn { color: #cb4b16 } /* Keyword.Namespace */
.highlight .kp { color: #859900 } /* Keyword.Pseudo */ .highlight .kp { color: #859900 } /* Keyword.Pseudo */
.highlight .kr { color: #268bd2 } /* Keyword.Reserved */ .highlight .kr { color: #859900 } /* Keyword.Reserved */
.highlight .kt { color: #dc322f } /* Keyword.Type */ .highlight .kt { color: #b58900 } /* Keyword.Type */
.highlight .ld { color: #93a1a1 } /* Literal.Date */ .highlight .ld { color: #839496 } /* Literal.Date */
.highlight .m { color: #2aa198 } /* Literal.Number */ .highlight .m { color: #2aa198 } /* Literal.Number */
.highlight .s { color: #2aa198 } /* Literal.String */ .highlight .s { color: #2aa198 } /* Literal.String */
.highlight .na { color: #93a1a1 } /* Name.Attribute */ .highlight .na { color: #839496 } /* Name.Attribute */
.highlight .nb { color: #B58900 } /* Name.Builtin */ .highlight .nb { color: #268bd2 } /* Name.Builtin */
.highlight .nc { color: #268bd2 } /* Name.Class */ .highlight .nc { color: #268bd2 } /* Name.Class */
.highlight .no { color: #cb4b16 } /* Name.Constant */ .highlight .no { color: #268bd2 } /* Name.Constant */
.highlight .nd { color: #268bd2 } /* Name.Decorator */ .highlight .nd { color: #268bd2 } /* Name.Decorator */
.highlight .ni { color: #cb4b16 } /* Name.Entity */ .highlight .ni { color: #268bd2 } /* Name.Entity */
.highlight .ne { color: #cb4b16 } /* Name.Exception */ .highlight .ne { color: #268bd2 } /* Name.Exception */
.highlight .nf { color: #268bd2 } /* Name.Function */ .highlight .nf { color: #268bd2 } /* Name.Function */
.highlight .nl { color: #93a1a1 } /* Name.Label */ .highlight .nl { color: #268bd2 } /* Name.Label */
.highlight .nn { color: #93a1a1 } /* Name.Namespace */ .highlight .nn { color: #268bd2 } /* Name.Namespace */
.highlight .nx { color: #93a1a1 } /* Name.Other */ .highlight .nx { color: #839496 } /* Name.Other */
.highlight .py { color: #93a1a1 } /* Name.Property */ .highlight .py { color: #839496 } /* Name.Property */
.highlight .nt { color: #268bd2 } /* Name.Tag */ .highlight .nt { color: #268bd2 } /* Name.Tag */
.highlight .nv { color: #268bd2 } /* Name.Variable */ .highlight .nv { color: #268bd2 } /* Name.Variable */
.highlight .ow { color: #859900 } /* Operator.Word */ .highlight .ow { color: #859900 } /* Operator.Word */
.highlight .w { color: #93a1a1 } /* Text.Whitespace */ .highlight .w { color: #839496 } /* Text.Whitespace */
.highlight .mb { color: #2aa198 } /* Literal.Number.Bin */
.highlight .mf { color: #2aa198 } /* Literal.Number.Float */ .highlight .mf { color: #2aa198 } /* Literal.Number.Float */
.highlight .mh { color: #2aa198 } /* Literal.Number.Hex */ .highlight .mh { color: #2aa198 } /* Literal.Number.Hex */
.highlight .mi { color: #2aa198 } /* Literal.Number.Integer */ .highlight .mi { color: #2aa198 } /* Literal.Number.Integer */
.highlight .mo { color: #2aa198 } /* Literal.Number.Oct */ .highlight .mo { color: #2aa198 } /* Literal.Number.Oct */
.highlight .sb { color: #586e75 } /* Literal.String.Backtick */ .highlight .sa { color: #2aa198 } /* Literal.String.Affix */
.highlight .sb { color: #2aa198 } /* Literal.String.Backtick */
.highlight .sc { color: #2aa198 } /* Literal.String.Char */ .highlight .sc { color: #2aa198 } /* Literal.String.Char */
.highlight .sd { color: #93a1a1 } /* Literal.String.Doc */ .highlight .dl { color: #2aa198 } /* Literal.String.Delimiter */
.highlight .sd { color: #586e75 } /* Literal.String.Doc */
.highlight .s2 { color: #2aa198 } /* Literal.String.Double */ .highlight .s2 { color: #2aa198 } /* Literal.String.Double */
.highlight .se { color: #cb4b16 } /* Literal.String.Escape */ .highlight .se { color: #2aa198 } /* Literal.String.Escape */
.highlight .sh { color: #93a1a1 } /* Literal.String.Heredoc */ .highlight .sh { color: #2aa198 } /* Literal.String.Heredoc */
.highlight .si { color: #2aa198 } /* Literal.String.Interpol */ .highlight .si { color: #2aa198 } /* Literal.String.Interpol */
.highlight .sx { color: #2aa198 } /* Literal.String.Other */ .highlight .sx { color: #2aa198 } /* Literal.String.Other */
.highlight .sr { color: #dc322f } /* Literal.String.Regex */ .highlight .sr { color: #cb4b16 } /* Literal.String.Regex */
.highlight .s1 { color: #2aa198 } /* Literal.String.Single */ .highlight .s1 { color: #2aa198 } /* Literal.String.Single */
.highlight .ss { color: #2aa198 } /* Literal.String.Symbol */ .highlight .ss { color: #2aa198 } /* Literal.String.Symbol */
.highlight .bp { color: #268bd2 } /* Name.Builtin.Pseudo */ .highlight .bp { color: #268bd2 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #268bd2 } /* Name.Function.Magic */
.highlight .vc { color: #268bd2 } /* Name.Variable.Class */ .highlight .vc { color: #268bd2 } /* Name.Variable.Class */
.highlight .vg { color: #268bd2 } /* Name.Variable.Global */ .highlight .vg { color: #268bd2 } /* Name.Variable.Global */
.highlight .vi { color: #268bd2 } /* Name.Variable.Instance */ .highlight .vi { color: #268bd2 } /* Name.Variable.Instance */
.highlight .vm { color: #268bd2 } /* Name.Variable.Magic */
.highlight .il { color: #2aa198 } /* Literal.Number.Integer.Long */ .highlight .il { color: #2aa198 } /* Literal.Number.Integer.Long */

View file

@ -1 +1 @@
.highlight{background-color:#002b36;color:#93a1a1}.highlight .c{color:#586e75}.highlight .err,.highlight .g{color:#93a1a1}.highlight .k{color:#859900}.highlight .l,.highlight .n{color:#93a1a1}.highlight .o{color:#859900}.highlight .x{color:#cb4b16}.highlight .p{color:#93a1a1}.highlight .cm{color:#586e75}.highlight .cp{color:#859900}.highlight .c1{color:#586e75}.highlight .cs{color:#859900}.highlight .gd{color:#2aa198}.highlight .ge{color:#93a1a1;font-style:italic}.highlight .gr{color:#dc322f}.highlight .gh{color:#cb4b16}.highlight .gi{color:#859900}.highlight .go,.highlight .gp{color:#93a1a1}.highlight .gs{color:#93a1a1;font-weight:700}.highlight .gu{color:#cb4b16}.highlight .gt{color:#93a1a1}.highlight .kc{color:#cb4b16}.highlight .kd{color:#268bd2}.highlight .kn,.highlight .kp{color:#859900}.highlight .kr{color:#268bd2}.highlight .kt{color:#dc322f}.highlight .ld{color:#93a1a1}.highlight .m,.highlight .s{color:#2aa198}.highlight .na{color:#93a1a1}.highlight .nb{color:#b58900}.highlight .nc{color:#268bd2}.highlight .no{color:#cb4b16}.highlight .nd{color:#268bd2}.highlight .ne,.highlight .ni{color:#cb4b16}.highlight .nf{color:#268bd2}.highlight .nl,.highlight .nn,.highlight .nx,.highlight .py{color:#93a1a1}.highlight .nt,.highlight .nv{color:#268bd2}.highlight .ow{color:#859900}.highlight .w{color:#93a1a1}.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#2aa198}.highlight .sb{color:#586e75}.highlight .sc{color:#2aa198}.highlight .sd{color:#93a1a1}.highlight .s2{color:#2aa198}.highlight .se{color:#cb4b16}.highlight .sh{color:#93a1a1}.highlight .si,.highlight .sx{color:#2aa198}.highlight .sr{color:#dc322f}.highlight .s1,.highlight .ss{color:#2aa198}.highlight .bp,.highlight .vc,.highlight .vg,.highlight .vi{color:#268bd2}.highlight .il{color:#2aa198} .highlight .hll{background-color:#073642}.highlight{background:#002b36;color:#839496}.highlight .c{color:#586e75;font-style:italic}.highlight .err{color:#839496;background-color:#dc322f}.highlight .esc,.highlight .g{color:#839496}.highlight .k{color:#859900}.highlight .l,.highlight .n{color:#839496}.highlight .o{color:#586e75}.highlight .p,.highlight .x{color:#839496}.highlight .ch,.highlight .cm{color:#586e75;font-style:italic}.highlight .cp{color:#d33682}.highlight .cpf{color:#586e75}.highlight .c1,.highlight .cs{color:#586e75;font-style:italic}.highlight .gd{color:#dc322f}.highlight .ge{color:#839496;font-style:italic}.highlight .gr{color:#dc322f}.highlight .gh{color:#839496;font-weight:700}.highlight .gi{color:#859900}.highlight .go,.highlight .gp{color:#839496}.highlight .gs{color:#839496;font-weight:700}.highlight .gu{color:#839496;text-decoration:underline}.highlight .gt{color:#268bd2}.highlight .kc,.highlight .kd{color:#2aa198}.highlight .kn{color:#cb4b16}.highlight .kp,.highlight .kr{color:#859900}.highlight .kt{color:#b58900}.highlight .ld{color:#839496}.highlight .m,.highlight .s{color:#2aa198}.highlight .na{color:#839496}.highlight .nb,.highlight .nc,.highlight .nd,.highlight .ne,.highlight .nf,.highlight .ni,.highlight .nl,.highlight .nn,.highlight .no{color:#268bd2}.highlight .nx,.highlight .py{color:#839496}.highlight .nt,.highlight .nv{color:#268bd2}.highlight .ow{color:#859900}.highlight .w{color:#839496}.highlight .dl,.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo,.highlight .sa,.highlight .sb,.highlight .sc{color:#2aa198}.highlight .sd{color:#586e75}.highlight .s2,.highlight .se,.highlight .sh,.highlight .si,.highlight .sx{color:#2aa198}.highlight .sr{color:#cb4b16}.highlight .s1,.highlight .ss{color:#2aa198}.highlight .bp,.highlight .fm,.highlight .vc,.highlight .vg,.highlight .vi,.highlight .vm{color:#268bd2}.highlight .il{color:#2aa198}

View file

@ -0,0 +1,78 @@
.highlight .hll { background-color: #eee8d5 }
.highlight { background: #fdf6e3; color: #657b83 }
.highlight .c { color: #93a1a1; font-style: italic } /* Comment */
.highlight .err { color: #657b83; background-color: #dc322f } /* Error */
.highlight .esc { color: #657b83 } /* Escape */
.highlight .g { color: #657b83 } /* Generic */
.highlight .k { color: #859900 } /* Keyword */
.highlight .l { color: #657b83 } /* Literal */
.highlight .n { color: #657b83 } /* Name */
.highlight .o { color: #93a1a1 } /* Operator */
.highlight .x { color: #657b83 } /* Other */
.highlight .p { color: #657b83 } /* Punctuation */
.highlight .ch { color: #93a1a1; font-style: italic } /* Comment.Hashbang */
.highlight .cm { color: #93a1a1; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #d33682 } /* Comment.Preproc */
.highlight .cpf { color: #93a1a1 } /* Comment.PreprocFile */
.highlight .c1 { color: #93a1a1; font-style: italic } /* Comment.Single */
.highlight .cs { color: #93a1a1; font-style: italic } /* Comment.Special */
.highlight .gd { color: #dc322f } /* Generic.Deleted */
.highlight .ge { color: #657b83; font-style: italic } /* Generic.Emph */
.highlight .gr { color: #dc322f } /* Generic.Error */
.highlight .gh { color: #657b83; font-weight: bold } /* Generic.Heading */
.highlight .gi { color: #859900 } /* Generic.Inserted */
.highlight .go { color: #657b83 } /* Generic.Output */
.highlight .gp { color: #657b83 } /* Generic.Prompt */
.highlight .gs { color: #657b83; font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #657b83; text-decoration: underline } /* Generic.Subheading */
.highlight .gt { color: #268bd2 } /* Generic.Traceback */
.highlight .kc { color: #2aa198 } /* Keyword.Constant */
.highlight .kd { color: #2aa198 } /* Keyword.Declaration */
.highlight .kn { color: #cb4b16 } /* Keyword.Namespace */
.highlight .kp { color: #859900 } /* Keyword.Pseudo */
.highlight .kr { color: #859900 } /* Keyword.Reserved */
.highlight .kt { color: #b58900 } /* Keyword.Type */
.highlight .ld { color: #657b83 } /* Literal.Date */
.highlight .m { color: #2aa198 } /* Literal.Number */
.highlight .s { color: #2aa198 } /* Literal.String */
.highlight .na { color: #657b83 } /* Name.Attribute */
.highlight .nb { color: #268bd2 } /* Name.Builtin */
.highlight .nc { color: #268bd2 } /* Name.Class */
.highlight .no { color: #268bd2 } /* Name.Constant */
.highlight .nd { color: #268bd2 } /* Name.Decorator */
.highlight .ni { color: #268bd2 } /* Name.Entity */
.highlight .ne { color: #268bd2 } /* Name.Exception */
.highlight .nf { color: #268bd2 } /* Name.Function */
.highlight .nl { color: #268bd2 } /* Name.Label */
.highlight .nn { color: #268bd2 } /* Name.Namespace */
.highlight .nx { color: #657b83 } /* Name.Other */
.highlight .py { color: #657b83 } /* Name.Property */
.highlight .nt { color: #268bd2 } /* Name.Tag */
.highlight .nv { color: #268bd2 } /* Name.Variable */
.highlight .ow { color: #859900 } /* Operator.Word */
.highlight .w { color: #657b83 } /* Text.Whitespace */
.highlight .mb { color: #2aa198 } /* Literal.Number.Bin */
.highlight .mf { color: #2aa198 } /* Literal.Number.Float */
.highlight .mh { color: #2aa198 } /* Literal.Number.Hex */
.highlight .mi { color: #2aa198 } /* Literal.Number.Integer */
.highlight .mo { color: #2aa198 } /* Literal.Number.Oct */
.highlight .sa { color: #2aa198 } /* Literal.String.Affix */
.highlight .sb { color: #2aa198 } /* Literal.String.Backtick */
.highlight .sc { color: #2aa198 } /* Literal.String.Char */
.highlight .dl { color: #2aa198 } /* Literal.String.Delimiter */
.highlight .sd { color: #93a1a1 } /* Literal.String.Doc */
.highlight .s2 { color: #2aa198 } /* Literal.String.Double */
.highlight .se { color: #2aa198 } /* Literal.String.Escape */
.highlight .sh { color: #2aa198 } /* Literal.String.Heredoc */
.highlight .si { color: #2aa198 } /* Literal.String.Interpol */
.highlight .sx { color: #2aa198 } /* Literal.String.Other */
.highlight .sr { color: #cb4b16 } /* Literal.String.Regex */
.highlight .s1 { color: #2aa198 } /* Literal.String.Single */
.highlight .ss { color: #2aa198 } /* Literal.String.Symbol */
.highlight .bp { color: #268bd2 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #268bd2 } /* Name.Function.Magic */
.highlight .vc { color: #268bd2 } /* Name.Variable.Class */
.highlight .vg { color: #268bd2 } /* Name.Variable.Global */
.highlight .vi { color: #268bd2 } /* Name.Variable.Instance */
.highlight .vm { color: #268bd2 } /* Name.Variable.Magic */
.highlight .il { color: #2aa198 } /* Literal.Number.Integer.Long */

View file

@ -0,0 +1 @@
.highlight .hll{background-color:#eee8d5}.highlight{background:#fdf6e3;color:#657b83}.highlight .c{color:#93a1a1;font-style:italic}.highlight .err{color:#657b83;background-color:#dc322f}.highlight .esc,.highlight .g{color:#657b83}.highlight .k{color:#859900}.highlight .l,.highlight .n{color:#657b83}.highlight .o{color:#93a1a1}.highlight .p,.highlight .x{color:#657b83}.highlight .ch,.highlight .cm{color:#93a1a1;font-style:italic}.highlight .cp{color:#d33682}.highlight .cpf{color:#93a1a1}.highlight .c1,.highlight .cs{color:#93a1a1;font-style:italic}.highlight .gd{color:#dc322f}.highlight .ge{color:#657b83;font-style:italic}.highlight .gr{color:#dc322f}.highlight .gh{color:#657b83;font-weight:700}.highlight .gi{color:#859900}.highlight .go,.highlight .gp{color:#657b83}.highlight .gs{color:#657b83;font-weight:700}.highlight .gu{color:#657b83;text-decoration:underline}.highlight .gt{color:#268bd2}.highlight .kc,.highlight .kd{color:#2aa198}.highlight .kn{color:#cb4b16}.highlight .kp,.highlight .kr{color:#859900}.highlight .kt{color:#b58900}.highlight .ld{color:#657b83}.highlight .m,.highlight .s{color:#2aa198}.highlight .na{color:#657b83}.highlight .nb,.highlight .nc,.highlight .nd,.highlight .ne,.highlight .nf,.highlight .ni,.highlight .nl,.highlight .nn,.highlight .no{color:#268bd2}.highlight .nx,.highlight .py{color:#657b83}.highlight .nt,.highlight .nv{color:#268bd2}.highlight .ow{color:#859900}.highlight .w{color:#657b83}.highlight .dl,.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo,.highlight .sa,.highlight .sb,.highlight .sc{color:#2aa198}.highlight .sd{color:#93a1a1}.highlight .s2,.highlight .se,.highlight .sh,.highlight .si,.highlight .sx{color:#2aa198}.highlight .sr{color:#cb4b16}.highlight .s1,.highlight .ss{color:#2aa198}.highlight .bp,.highlight .fm,.highlight .vc,.highlight .vg,.highlight .vi,.highlight .vm{color:#268bd2}.highlight .il{color:#2aa198}

View file

@ -0,0 +1,48 @@
.highlight .hll { background-color: #49483e }
.highlight { background: #232629; color: #cccccc }
.highlight .c { color: #777777; font-style: italic } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #7686bb; font-weight: bold } /* Keyword */
.highlight .ch { color: #777777; font-style: italic } /* Comment.Hashbang */
.highlight .cm { color: #777777; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #777777; font-style: italic } /* Comment.Preproc */
.highlight .cpf { color: #777777; font-style: italic } /* Comment.PreprocFile */
.highlight .c1 { color: #777777; font-style: italic } /* Comment.Single */
.highlight .cs { color: #777777; font-style: italic } /* Comment.Special */
.highlight .gp { color: #ffffff } /* Generic.Prompt */
.highlight .kc { color: #7686bb; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #7686bb; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #7686bb; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #7686bb; font-weight: bold } /* Keyword.Pseudo */
.highlight .kr { color: #7686bb; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #7686bb; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #4FB8CC } /* Literal.Number */
.highlight .s { color: #51cc99 } /* Literal.String */
.highlight .nf { color: #6a6aff } /* Name.Function */
.highlight .nx { color: #e2828e } /* Name.Other */
.highlight .nv { color: #7AB4DB; font-weight: bold } /* Name.Variable */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #4FB8CC } /* Literal.Number.Bin */
.highlight .mf { color: #4FB8CC } /* Literal.Number.Float */
.highlight .mh { color: #4FB8CC } /* Literal.Number.Hex */
.highlight .mi { color: #4FB8CC } /* Literal.Number.Integer */
.highlight .mo { color: #4FB8CC } /* Literal.Number.Oct */
.highlight .sa { color: #51cc99 } /* Literal.String.Affix */
.highlight .sb { color: #51cc99 } /* Literal.String.Backtick */
.highlight .sc { color: #51cc99 } /* Literal.String.Char */
.highlight .dl { color: #51cc99 } /* Literal.String.Delimiter */
.highlight .sd { color: #51cc99 } /* Literal.String.Doc */
.highlight .s2 { color: #51cc99 } /* Literal.String.Double */
.highlight .se { color: #51cc99 } /* Literal.String.Escape */
.highlight .sh { color: #51cc99 } /* Literal.String.Heredoc */
.highlight .si { color: #51cc99 } /* Literal.String.Interpol */
.highlight .sx { color: #51cc99 } /* Literal.String.Other */
.highlight .sr { color: #51cc99 } /* Literal.String.Regex */
.highlight .s1 { color: #51cc99 } /* Literal.String.Single */
.highlight .ss { color: #51cc99 } /* Literal.String.Symbol */
.highlight .fm { color: #6a6aff } /* Name.Function.Magic */
.highlight .vc { color: #7AB4DB; font-weight: bold } /* Name.Variable.Class */
.highlight .vg { color: #BE646C; font-weight: bold } /* Name.Variable.Global */
.highlight .vi { color: #7AB4DB; font-weight: bold } /* Name.Variable.Instance */
.highlight .vm { color: #7AB4DB; font-weight: bold } /* Name.Variable.Magic */
.highlight .il { color: #4FB8CC } /* Literal.Number.Integer.Long */

View file

@ -0,0 +1 @@
.highlight .hll{background-color:#49483e}.highlight{background:#232629;color:#ccc}.highlight .c{color:#777;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .k{color:#7686bb;font-weight:700}.highlight .c1,.highlight .ch,.highlight .cm,.highlight .cp,.highlight .cpf,.highlight .cs{color:#777;font-style:italic}.highlight .gp{color:#fff}.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr,.highlight .kt{color:#7686bb;font-weight:700}.highlight .m{color:#4fb8cc}.highlight .s{color:#51cc99}.highlight .nf{color:#6a6aff}.highlight .nx{color:#e2828e}.highlight .nv{color:#7ab4db;font-weight:700}.highlight .w{color:#bbb}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#4fb8cc}.highlight .dl,.highlight .s1,.highlight .s2,.highlight .sa,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si,.highlight .sr,.highlight .ss,.highlight .sx{color:#51cc99}.highlight .fm{color:#6a6aff}.highlight .vc{color:#7ab4db;font-weight:700}.highlight .vg{color:#be646c;font-weight:700}.highlight .vi,.highlight .vm{color:#7ab4db;font-weight:700}.highlight .il{color:#4fb8cc}

View file

@ -0,0 +1,47 @@
.highlight .hll { background-color: #ffffcc }
.highlight { background: #ffffff; color: #111111 }
.highlight .c { color: #008800; font-style: italic } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #353580; font-weight: bold } /* Keyword */
.highlight .ch { color: #008800; font-style: italic } /* Comment.Hashbang */
.highlight .cm { color: #008800; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #008800; font-style: italic } /* Comment.Preproc */
.highlight .cpf { color: #008800; font-style: italic } /* Comment.PreprocFile */
.highlight .c1 { color: #008800; font-style: italic } /* Comment.Single */
.highlight .cs { color: #008800; font-style: italic } /* Comment.Special */
.highlight .kc { color: #353580; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #353580; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #353580; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #353580; font-weight: bold } /* Keyword.Pseudo */
.highlight .kr { color: #353580; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #353580; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #2c2cff } /* Literal.Number */
.highlight .s { color: #7a2424 } /* Literal.String */
.highlight .nf { color: #2c2cff } /* Name.Function */
.highlight .nx { color: #be646c } /* Name.Other */
.highlight .nv { color: #35baba; font-weight: bold } /* Name.Variable */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #2c2cff } /* Literal.Number.Bin */
.highlight .mf { color: #2c2cff } /* Literal.Number.Float */
.highlight .mh { color: #2c2cff } /* Literal.Number.Hex */
.highlight .mi { color: #2c2cff } /* Literal.Number.Integer */
.highlight .mo { color: #2c2cff } /* Literal.Number.Oct */
.highlight .sa { color: #7a2424 } /* Literal.String.Affix */
.highlight .sb { color: #7a2424 } /* Literal.String.Backtick */
.highlight .sc { color: #7a2424 } /* Literal.String.Char */
.highlight .dl { color: #7a2424 } /* Literal.String.Delimiter */
.highlight .sd { color: #7a2424 } /* Literal.String.Doc */
.highlight .s2 { color: #7a2424 } /* Literal.String.Double */
.highlight .se { color: #7a2424 } /* Literal.String.Escape */
.highlight .sh { color: #7a2424 } /* Literal.String.Heredoc */
.highlight .si { color: #7a2424 } /* Literal.String.Interpol */
.highlight .sx { color: #7a2424 } /* Literal.String.Other */
.highlight .sr { color: #7a2424 } /* Literal.String.Regex */
.highlight .s1 { color: #7a2424 } /* Literal.String.Single */
.highlight .ss { color: #7a2424 } /* Literal.String.Symbol */
.highlight .fm { color: #2c2cff } /* Name.Function.Magic */
.highlight .vc { color: #35baba; font-weight: bold } /* Name.Variable.Class */
.highlight .vg { color: #b5565e; font-weight: bold } /* Name.Variable.Global */
.highlight .vi { color: #35baba; font-weight: bold } /* Name.Variable.Instance */
.highlight .vm { color: #35baba; font-weight: bold } /* Name.Variable.Magic */
.highlight .il { color: #2c2cff } /* Literal.Number.Integer.Long */

View file

@ -0,0 +1 @@
.highlight .hll{background-color:#ffc}.highlight{background:#fff;color:#111}.highlight .c{color:#080;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .k{color:#353580;font-weight:700}.highlight .c1,.highlight .ch,.highlight .cm,.highlight .cp,.highlight .cpf,.highlight .cs{color:#080;font-style:italic}.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr,.highlight .kt{color:#353580;font-weight:700}.highlight .m{color:#2c2cff}.highlight .s{color:#7a2424}.highlight .nf{color:#2c2cff}.highlight .nx{color:#be646c}.highlight .nv{color:#35baba;font-weight:700}.highlight .w{color:#bbb}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#2c2cff}.highlight .dl,.highlight .s1,.highlight .s2,.highlight .sa,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si,.highlight .sr,.highlight .ss,.highlight .sx{color:#7a2424}.highlight .fm{color:#2c2cff}.highlight .vc{color:#35baba;font-weight:700}.highlight .vg{color:#b5565e;font-weight:700}.highlight .vi,.highlight .vm{color:#35baba;font-weight:700}.highlight .il{color:#2c2cff}

View file

@ -0,0 +1,47 @@
.highlight .hll { background-color: #ffffcc }
.highlight { background: #ffffff; color: #111111 }
.highlight .c { color: #008800; font-style: italic } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #353580; font-weight: bold } /* Keyword */
.highlight .ch { color: #008800; font-style: italic } /* Comment.Hashbang */
.highlight .cm { color: #008800; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #008800; font-style: italic } /* Comment.Preproc */
.highlight .cpf { color: #008800; font-style: italic } /* Comment.PreprocFile */
.highlight .c1 { color: #008800; font-style: italic } /* Comment.Single */
.highlight .cs { color: #008800; font-style: italic } /* Comment.Special */
.highlight .kc { color: #353580; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #353580; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #353580; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #353580; font-weight: bold } /* Keyword.Pseudo */
.highlight .kr { color: #353580; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #353580; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #2c2cff } /* Literal.Number */
.highlight .s { color: #7a2424 } /* Literal.String */
.highlight .nf { color: #2c2cff } /* Name.Function */
.highlight .nx { color: #be646c } /* Name.Other */
.highlight .nv { color: #35baba; font-weight: bold } /* Name.Variable */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #2c2cff } /* Literal.Number.Bin */
.highlight .mf { color: #2c2cff } /* Literal.Number.Float */
.highlight .mh { color: #2c2cff } /* Literal.Number.Hex */
.highlight .mi { color: #2c2cff } /* Literal.Number.Integer */
.highlight .mo { color: #2c2cff } /* Literal.Number.Oct */
.highlight .sa { color: #7a2424 } /* Literal.String.Affix */
.highlight .sb { color: #7a2424 } /* Literal.String.Backtick */
.highlight .sc { color: #7a2424 } /* Literal.String.Char */
.highlight .dl { color: #7a2424 } /* Literal.String.Delimiter */
.highlight .sd { color: #7a2424 } /* Literal.String.Doc */
.highlight .s2 { color: #7a2424 } /* Literal.String.Double */
.highlight .se { color: #7a2424 } /* Literal.String.Escape */
.highlight .sh { color: #7a2424 } /* Literal.String.Heredoc */
.highlight .si { color: #7a2424 } /* Literal.String.Interpol */
.highlight .sx { color: #7a2424 } /* Literal.String.Other */
.highlight .sr { color: #7a2424 } /* Literal.String.Regex */
.highlight .s1 { color: #7a2424 } /* Literal.String.Single */
.highlight .ss { color: #7a2424 } /* Literal.String.Symbol */
.highlight .fm { color: #2c2cff } /* Name.Function.Magic */
.highlight .vc { color: #35baba; font-weight: bold } /* Name.Variable.Class */
.highlight .vg { color: #b5565e; font-weight: bold } /* Name.Variable.Global */
.highlight .vi { color: #35baba; font-weight: bold } /* Name.Variable.Instance */
.highlight .vm { color: #35baba; font-weight: bold } /* Name.Variable.Magic */
.highlight .il { color: #2c2cff } /* Literal.Number.Integer.Long */

View file

@ -0,0 +1 @@
.highlight .hll{background-color:#ffc}.highlight{background:#fff;color:#111}.highlight .c{color:#080;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .k{color:#353580;font-weight:700}.highlight .c1,.highlight .ch,.highlight .cm,.highlight .cp,.highlight .cpf,.highlight .cs{color:#080;font-style:italic}.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr,.highlight .kt{color:#353580;font-weight:700}.highlight .m{color:#2c2cff}.highlight .s{color:#7a2424}.highlight .nf{color:#2c2cff}.highlight .nx{color:#be646c}.highlight .nv{color:#35baba;font-weight:700}.highlight .w{color:#bbb}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#2c2cff}.highlight .dl,.highlight .s1,.highlight .s2,.highlight .sa,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si,.highlight .sr,.highlight .ss,.highlight .sx{color:#7a2424}.highlight .fm{color:#2c2cff}.highlight .vc{color:#35baba;font-weight:700}.highlight .vg{color:#b5565e;font-weight:700}.highlight .vi,.highlight .vm{color:#35baba;font-weight:700}.highlight .il{color:#2c2cff}

View file

@ -250,6 +250,26 @@ main {
border-top: 1px solid #ddd; border-top: 1px solid #ddd;
} }
} }
table.highlighttable {
width: 100%;
table-layout: fixed;
td {
border-style: none;
padding: 0px;
}
td.linenos {
width: 2.5em;
pre {
padding-right: .8em;
background-color: inherit;
text-align: right;
}
}
}
} }
footer { footer {
@ -368,8 +388,8 @@ ul.social {
a:hover { a:hover {
z-index: 2; z-index: 2;
-webkit-transform: translateY(-5px); -webkit-transform: translateY(-2px);
transform: translateY(-5px); transform: translateY(-2px);
} }
a { a {
@ -394,6 +414,10 @@ ul.social {
background-color: @instagram-bg-color; background-color: @instagram-bg-color;
} }
a.sc-keybase {
background-color: @keybase-bg-color;
}
a.sc-pinterest { a.sc-pinterest {
background-color: @pinterest-bg-color; background-color: @pinterest-bg-color;
} }
@ -454,6 +478,13 @@ ul.social {
background-color: @bitbucket-bg-color; background-color: @bitbucket-bg-color;
} }
a.sc-mastodon {
background-color: @mastodon-bg-color;
}
a.sc-flickr {
background-color: @flickr-bg-color;
}
} }
.ads-aside { .ads-aside {
@ -476,8 +507,8 @@ ul.social {
@media screen and (min-width: 768px) { @media screen and (min-width: 768px) {
aside { aside {
width: 25%; width: 25vw;
height: 100%; height: 100vh;
position: fixed; position: fixed;
top: 0; top: 0;
left: 0; left: 0;
@ -502,16 +533,17 @@ ul.social {
} }
main { main {
width: 75%; width: 75vw;
height: 100%; height: 100vh;
position: absolute; position: absolute;
top: 0; top: 0;
left: 25%; left: 25vw;
overflow-x: hidden;
article { article {
&.single { &.single {
min-height: 80%; min-height: 80vh;
} }
ul.list { ul.list {

File diff suppressed because one or more lines are too long

View file

@ -55,6 +55,7 @@
@github-bg-color: #111010; @github-bg-color: #111010;
@google-bg-color: #d93e2d; @google-bg-color: #d93e2d;
@instagram-bg-color: #125688; @instagram-bg-color: #125688;
@keybase-bg-color: #4c8dff;
@linkedin-bg-color: #3371b7; @linkedin-bg-color: #3371b7;
@medium-bg-color: #00ab6b; @medium-bg-color: #00ab6b;
@pinterest-bg-color: #c92619; @pinterest-bg-color: #c92619;
@ -68,3 +69,5 @@
@gitlab-bg-color: #fca326; @gitlab-bg-color: #fca326;
@xing-bg-color: #007575; @xing-bg-color: #007575;
@bitbucket-bg-color: #0747A6; @bitbucket-bg-color: #0747A6;
@mastodon-bg-color: #3088d4;
@flickr-bg-color: #ff0084;

View file

@ -1,103 +0,0 @@
#!/usr/bin/env bash
##
# This section should match your Makefile
##
PY=${PY:-python}
PELICAN=${PELICAN:-pelican}
PELICANOPTS=
BASEDIR=$(pwd)
INPUTDIR=$BASEDIR/content
OUTPUTDIR=$BASEDIR/blog
CONFFILE=$BASEDIR/pelicanconf.py
###
# Don't change stuff below here unless you are sure
###
SRV_PID=$BASEDIR/srv.pid
PELICAN_PID=$BASEDIR/pelican.pid
function usage(){
echo "usage: $0 (stop) (start) (restart) [port]"
echo "This starts Pelican in debug and reload mode and then launches"
echo "an HTTP server to help site development. It doesn't read"
echo "your Pelican settings, so if you edit any paths in your Makefile"
echo "you will need to edit your settings as well."
exit 3
}
function alive() {
kill -0 $1 >/dev/null 2>&1
}
function shut_down(){
PID=$(cat $SRV_PID)
if [[ $? -eq 0 ]]; then
if alive $PID; then
echo "Stopping HTTP server"
kill $PID
else
echo "Stale PID, deleting"
fi
rm $SRV_PID
else
echo "HTTP server PIDFile not found"
fi
PID=$(cat $PELICAN_PID)
if [[ $? -eq 0 ]]; then
if alive $PID; then
echo "Killing Pelican"
kill $PID
else
echo "Stale PID, deleting"
fi
rm $PELICAN_PID
else
echo "Pelican PIDFile not found"
fi
}
function start_up(){
local port=$1
echo "Starting up Pelican and HTTP server"
shift
$PELICAN --debug --autoreload -r $INPUTDIR -o $OUTPUTDIR -s $CONFFILE $PELICANOPTS &
pelican_pid=$!
echo $pelican_pid > $PELICAN_PID
cd $OUTPUTDIR
$PY -m pelican.server $port &
srv_pid=$!
echo $srv_pid > $SRV_PID
cd $BASEDIR
sleep 1
if ! alive $pelican_pid ; then
echo "Pelican didn't start. Is the Pelican package installed?"
return 1
elif ! alive $srv_pid ; then
echo "The HTTP server didn't start. Is there another service using port" $port "?"
return 1
fi
echo 'Pelican and HTTP server processes now running in background.'
}
###
# MAIN
###
[[ ($# -eq 0) || ($# -gt 2) ]] && usage
port=''
[[ $# -eq 2 ]] && port=$2
if [[ $1 == "stop" ]]; then
shut_down
elif [[ $1 == "restart" ]]; then
shut_down
start_up $port
elif [[ $1 == "start" ]]; then
if ! start_up $port; then
shut_down
fi
else
usage
fi

View file

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*- #
from datetime import datetime from datetime import datetime
AUTHOR = 'Alexandre Vicenzi' AUTHOR = 'Alexandre Vicenzi'

View file

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*- #
import os import os
import sys import sys

112
docs/tasks.py Normal file
View file

@ -0,0 +1,112 @@
# -*- coding: utf-8 -*-
import os
import shutil
import sys
import datetime
from invoke import task
from invoke.util import cd
from pelican.server import ComplexHTTPRequestHandler, RootedHTTPServer
from pelican.settings import DEFAULT_CONFIG, get_settings_from_file
SETTINGS_FILE_BASE = 'pelicanconf.py'
SETTINGS = {}
SETTINGS.update(DEFAULT_CONFIG)
LOCAL_SETTINGS = get_settings_from_file(SETTINGS_FILE_BASE)
SETTINGS.update(LOCAL_SETTINGS)
CONFIG = {
'settings_base': SETTINGS_FILE_BASE,
'settings_publish': 'publishconf.py',
# Output path. Can be absolute or relative to tasks.py. Default: 'output'
'deploy_path': SETTINGS['OUTPUT_PATH'],
# Github Pages configuration
'github_pages_branch': 'gh-pages',
'commit_message': "'Publish site on {}'".format(datetime.date.today().isoformat()),
# Port for `serve`
'port': 8000,
}
@task
def clean(c):
"""Remove generated files"""
if os.path.isdir(CONFIG['deploy_path']):
shutil.rmtree(CONFIG['deploy_path'])
os.makedirs(CONFIG['deploy_path'])
@task
def build(c):
"""Build local version of site"""
c.run('pelican -s {settings_base}'.format(**CONFIG))
@task
def rebuild(c):
"""`build` with the delete switch"""
c.run('pelican -d -s {settings_base}'.format(**CONFIG))
@task
def regenerate(c):
"""Automatically regenerate site upon file modification"""
c.run('pelican -r -s {settings_base}'.format(**CONFIG))
@task
def serve(c):
"""Serve site at http://localhost:$PORT/ (default port is 8000)"""
class AddressReuseTCPServer(RootedHTTPServer):
allow_reuse_address = True
server = AddressReuseTCPServer(
CONFIG['deploy_path'],
('', CONFIG['port']),
ComplexHTTPRequestHandler)
sys.stderr.write('Serving on port {port} ...\n'.format(**CONFIG))
server.serve_forever()
@task
def reserve(c):
"""`build`, then `serve`"""
build(c)
serve(c)
@task
def preview(c):
"""Build production version of site"""
c.run('pelican -s {settings_publish}'.format(**CONFIG))
@task
def livereload(c):
"""Automatically reload browser tab upon file modification."""
from livereload import Server
build(c)
server = Server()
# Watch the base settings file
server.watch(CONFIG['settings_base'], lambda: build(c))
# Watch content source files
content_file_extensions = ['.md', '.rst']
for extension in content_file_extensions:
content_blob = '{0}/**/*{1}'.format(SETTINGS['PATH'], extension)
server.watch(content_blob, lambda: build(c))
# Watch the theme's templates and static assets
theme_path = SETTINGS['THEME']
server.watch('{}/templates/*.html'.format(theme_path), lambda: build(c))
static_file_extensions = ['.css', '.js']
for extension in static_file_extensions:
static_file = '{0}/static/**/*{1}'.format(theme_path, extension)
server.watch(static_file, lambda: build(c))
# Serve output path on configured port
server.serve(port=CONFIG['port'], root=CONFIG['deploy_path'])
@task
def publish(c):
"""Publish to production via rsync"""
c.run('pelican -s {settings_publish}'.format(**CONFIG))
c.run(
'rsync --delete --exclude ".DS_Store" -pthrvz -c '
'-e "ssh -p {ssh_port}" '
'{} {ssh_user}@{ssh_host}:{ssh_path}'.format(
CONFIG['deploy_path'].rstrip('/') + '/',
**CONFIG))

View file

@ -1,2 +1,2 @@
Pygments==2.2.0 Pygments
pygments-style-github==0.4 pygments-style-github

60
static/pygments/sas.css Normal file
View file

@ -0,0 +1,60 @@
.highlight .hll { background-color: #ffffcc }
.highlight { background: #ffffff; }
.highlight .c { color: #008800; font-style: italic } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .g { color: #2c2cff } /* Generic */
.highlight .k { color: #2c2cff } /* Keyword */
.highlight .x { background-color: #ffffe0 } /* Other */
.highlight .ch { color: #008800; font-style: italic } /* Comment.Hashbang */
.highlight .cm { color: #008800; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #008800; font-style: italic } /* Comment.Preproc */
.highlight .cpf { color: #008800; font-style: italic } /* Comment.PreprocFile */
.highlight .c1 { color: #008800; font-style: italic } /* Comment.Single */
.highlight .cs { color: #008800; font-style: italic } /* Comment.Special */
.highlight .gd { color: #2c2cff } /* Generic.Deleted */
.highlight .ge { color: #008800 } /* Generic.Emph */
.highlight .gr { color: #d30202 } /* Generic.Error */
.highlight .gh { color: #2c2cff } /* Generic.Heading */
.highlight .gi { color: #2c2cff } /* Generic.Inserted */
.highlight .go { color: #2c2cff } /* Generic.Output */
.highlight .gp { color: #2c2cff } /* Generic.Prompt */
.highlight .gs { color: #2c2cff } /* Generic.Strong */
.highlight .gu { color: #2c2cff } /* Generic.Subheading */
.highlight .gt { color: #2c2cff } /* Generic.Traceback */
.highlight .kc { color: #2c2cff; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #2c2cff } /* Keyword.Declaration */
.highlight .kn { color: #2c2cff } /* Keyword.Namespace */
.highlight .kp { color: #2c2cff } /* Keyword.Pseudo */
.highlight .kr { color: #353580; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #2c2cff } /* Keyword.Type */
.highlight .m { color: #2e8b57; font-weight: bold } /* Literal.Number */
.highlight .s { color: #800080 } /* Literal.String */
.highlight .nb { color: #2c2cff } /* Name.Builtin */
.highlight .nf { font-weight: bold; font-style: italic } /* Name.Function */
.highlight .nv { color: #2c2cff; font-weight: bold } /* Name.Variable */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #2e8b57; font-weight: bold } /* Literal.Number.Bin */
.highlight .mf { color: #2e8b57; font-weight: bold } /* Literal.Number.Float */
.highlight .mh { color: #2e8b57; font-weight: bold } /* Literal.Number.Hex */
.highlight .mi { color: #2e8b57; font-weight: bold } /* Literal.Number.Integer */
.highlight .mo { color: #2e8b57; font-weight: bold } /* Literal.Number.Oct */
.highlight .sa { color: #800080 } /* Literal.String.Affix */
.highlight .sb { color: #800080 } /* Literal.String.Backtick */
.highlight .sc { color: #800080 } /* Literal.String.Char */
.highlight .dl { color: #800080 } /* Literal.String.Delimiter */
.highlight .sd { color: #800080 } /* Literal.String.Doc */
.highlight .s2 { color: #800080 } /* Literal.String.Double */
.highlight .se { color: #800080 } /* Literal.String.Escape */
.highlight .sh { color: #800080 } /* Literal.String.Heredoc */
.highlight .si { color: #800080 } /* Literal.String.Interpol */
.highlight .sx { color: #800080 } /* Literal.String.Other */
.highlight .sr { color: #800080 } /* Literal.String.Regex */
.highlight .s1 { color: #800080 } /* Literal.String.Single */
.highlight .ss { color: #800080 } /* Literal.String.Symbol */
.highlight .bp { color: #2c2cff } /* Name.Builtin.Pseudo */
.highlight .fm { font-weight: bold; font-style: italic } /* Name.Function.Magic */
.highlight .vc { color: #2c2cff; font-weight: bold } /* Name.Variable.Class */
.highlight .vg { color: #2c2cff; font-weight: bold } /* Name.Variable.Global */
.highlight .vi { color: #2c2cff; font-weight: bold } /* Name.Variable.Instance */
.highlight .vm { color: #2c2cff; font-weight: bold } /* Name.Variable.Magic */
.highlight .il { color: #2e8b57; font-weight: bold } /* Literal.Number.Integer.Long */

1
static/pygments/sas.min.css vendored Normal file
View file

@ -0,0 +1 @@
.highlight .hll{background-color:#ffc}.highlight{background:#fff}.highlight .c{color:#080;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .g,.highlight .k{color:#2c2cff}.highlight .x{background-color:#ffffe0}.highlight .c1,.highlight .ch,.highlight .cm,.highlight .cp,.highlight .cpf,.highlight .cs{color:#080;font-style:italic}.highlight .gd{color:#2c2cff}.highlight .ge{color:#080}.highlight .gr{color:#d30202}.highlight .gh,.highlight .gi,.highlight .go,.highlight .gp,.highlight .gs,.highlight .gt,.highlight .gu{color:#2c2cff}.highlight .kc{color:#2c2cff;font-weight:700}.highlight .kd,.highlight .kn,.highlight .kp{color:#2c2cff}.highlight .kr{color:#353580;font-weight:700}.highlight .kt{color:#2c2cff}.highlight .m{color:#2e8b57;font-weight:700}.highlight .s{color:purple}.highlight .nb{color:#2c2cff}.highlight .nf{font-weight:700;font-style:italic}.highlight .nv{color:#2c2cff;font-weight:700}.highlight .w{color:#bbb}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#2e8b57;font-weight:700}.highlight .dl,.highlight .s1,.highlight .s2,.highlight .sa,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si,.highlight .sr,.highlight .ss,.highlight .sx{color:purple}.highlight .bp{color:#2c2cff}.highlight .fm{font-weight:700;font-style:italic}.highlight .vc,.highlight .vg,.highlight .vi,.highlight .vm{color:#2c2cff;font-weight:700}.highlight .il{color:#2e8b57;font-weight:700}

View file

@ -1,87 +1,78 @@
/* Solarized Dark .highlight .hll { background-color: #073642 }
.highlight { background: #002b36; color: #839496 }
For use with Jekyll and Pygments .highlight .c { color: #586e75; font-style: italic } /* Comment */
.highlight .err { color: #839496; background-color: #dc322f } /* Error */
http://ethanschoonover.com/solarized .highlight .esc { color: #839496 } /* Escape */
.highlight .g { color: #839496 } /* Generic */
SOLARIZED HEX ROLE
--------- -------- ------------------------------------------
base03 #002b36 background
base01 #586e75 comments / secondary content
base1 #93a1a1 body text / default code / primary content
orange #cb4b16 constants
red #dc322f regex, special keywords
blue #268bd2 reserved keywords
cyan #2aa198 strings, numbers
green #859900 operators, other keywords
*/
.highlight {background-color: #002b36; color: #93a1a1;}
.highlight .c { color: #586e75 } /* Comment */
.highlight .err { color: #93a1a1 } /* Error */
.highlight .g { color: #93a1a1 } /* Generic */
.highlight .k { color: #859900 } /* Keyword */ .highlight .k { color: #859900 } /* Keyword */
.highlight .l { color: #93a1a1 } /* Literal */ .highlight .l { color: #839496 } /* Literal */
.highlight .n { color: #93a1a1 } /* Name */ .highlight .n { color: #839496 } /* Name */
.highlight .o { color: #859900 } /* Operator */ .highlight .o { color: #586e75 } /* Operator */
.highlight .x { color: #cb4b16 } /* Other */ .highlight .x { color: #839496 } /* Other */
.highlight .p { color: #93a1a1 } /* Punctuation */ .highlight .p { color: #839496 } /* Punctuation */
.highlight .cm { color: #586e75 } /* Comment.Multiline */ .highlight .ch { color: #586e75; font-style: italic } /* Comment.Hashbang */
.highlight .cp { color: #859900 } /* Comment.Preproc */ .highlight .cm { color: #586e75; font-style: italic } /* Comment.Multiline */
.highlight .c1 { color: #586e75 } /* Comment.Single */ .highlight .cp { color: #d33682 } /* Comment.Preproc */
.highlight .cs { color: #859900 } /* Comment.Special */ .highlight .cpf { color: #586e75 } /* Comment.PreprocFile */
.highlight .gd { color: #2aa198 } /* Generic.Deleted */ .highlight .c1 { color: #586e75; font-style: italic } /* Comment.Single */
.highlight .ge { color: #93a1a1; font-style: italic } /* Generic.Emph */ .highlight .cs { color: #586e75; font-style: italic } /* Comment.Special */
.highlight .gd { color: #dc322f } /* Generic.Deleted */
.highlight .ge { color: #839496; font-style: italic } /* Generic.Emph */
.highlight .gr { color: #dc322f } /* Generic.Error */ .highlight .gr { color: #dc322f } /* Generic.Error */
.highlight .gh { color: #cb4b16 } /* Generic.Heading */ .highlight .gh { color: #839496; font-weight: bold } /* Generic.Heading */
.highlight .gi { color: #859900 } /* Generic.Inserted */ .highlight .gi { color: #859900 } /* Generic.Inserted */
.highlight .go { color: #93a1a1 } /* Generic.Output */ .highlight .go { color: #839496 } /* Generic.Output */
.highlight .gp { color: #93a1a1 } /* Generic.Prompt */ .highlight .gp { color: #839496 } /* Generic.Prompt */
.highlight .gs { color: #93a1a1; font-weight: bold } /* Generic.Strong */ .highlight .gs { color: #839496; font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #cb4b16 } /* Generic.Subheading */ .highlight .gu { color: #839496; text-decoration: underline } /* Generic.Subheading */
.highlight .gt { color: #93a1a1 } /* Generic.Traceback */ .highlight .gt { color: #268bd2 } /* Generic.Traceback */
.highlight .kc { color: #cb4b16 } /* Keyword.Constant */ .highlight .kc { color: #2aa198 } /* Keyword.Constant */
.highlight .kd { color: #268bd2 } /* Keyword.Declaration */ .highlight .kd { color: #2aa198 } /* Keyword.Declaration */
.highlight .kn { color: #859900 } /* Keyword.Namespace */ .highlight .kn { color: #cb4b16 } /* Keyword.Namespace */
.highlight .kp { color: #859900 } /* Keyword.Pseudo */ .highlight .kp { color: #859900 } /* Keyword.Pseudo */
.highlight .kr { color: #268bd2 } /* Keyword.Reserved */ .highlight .kr { color: #859900 } /* Keyword.Reserved */
.highlight .kt { color: #dc322f } /* Keyword.Type */ .highlight .kt { color: #b58900 } /* Keyword.Type */
.highlight .ld { color: #93a1a1 } /* Literal.Date */ .highlight .ld { color: #839496 } /* Literal.Date */
.highlight .m { color: #2aa198 } /* Literal.Number */ .highlight .m { color: #2aa198 } /* Literal.Number */
.highlight .s { color: #2aa198 } /* Literal.String */ .highlight .s { color: #2aa198 } /* Literal.String */
.highlight .na { color: #93a1a1 } /* Name.Attribute */ .highlight .na { color: #839496 } /* Name.Attribute */
.highlight .nb { color: #B58900 } /* Name.Builtin */ .highlight .nb { color: #268bd2 } /* Name.Builtin */
.highlight .nc { color: #268bd2 } /* Name.Class */ .highlight .nc { color: #268bd2 } /* Name.Class */
.highlight .no { color: #cb4b16 } /* Name.Constant */ .highlight .no { color: #268bd2 } /* Name.Constant */
.highlight .nd { color: #268bd2 } /* Name.Decorator */ .highlight .nd { color: #268bd2 } /* Name.Decorator */
.highlight .ni { color: #cb4b16 } /* Name.Entity */ .highlight .ni { color: #268bd2 } /* Name.Entity */
.highlight .ne { color: #cb4b16 } /* Name.Exception */ .highlight .ne { color: #268bd2 } /* Name.Exception */
.highlight .nf { color: #268bd2 } /* Name.Function */ .highlight .nf { color: #268bd2 } /* Name.Function */
.highlight .nl { color: #93a1a1 } /* Name.Label */ .highlight .nl { color: #268bd2 } /* Name.Label */
.highlight .nn { color: #93a1a1 } /* Name.Namespace */ .highlight .nn { color: #268bd2 } /* Name.Namespace */
.highlight .nx { color: #93a1a1 } /* Name.Other */ .highlight .nx { color: #839496 } /* Name.Other */
.highlight .py { color: #93a1a1 } /* Name.Property */ .highlight .py { color: #839496 } /* Name.Property */
.highlight .nt { color: #268bd2 } /* Name.Tag */ .highlight .nt { color: #268bd2 } /* Name.Tag */
.highlight .nv { color: #268bd2 } /* Name.Variable */ .highlight .nv { color: #268bd2 } /* Name.Variable */
.highlight .ow { color: #859900 } /* Operator.Word */ .highlight .ow { color: #859900 } /* Operator.Word */
.highlight .w { color: #93a1a1 } /* Text.Whitespace */ .highlight .w { color: #839496 } /* Text.Whitespace */
.highlight .mb { color: #2aa198 } /* Literal.Number.Bin */
.highlight .mf { color: #2aa198 } /* Literal.Number.Float */ .highlight .mf { color: #2aa198 } /* Literal.Number.Float */
.highlight .mh { color: #2aa198 } /* Literal.Number.Hex */ .highlight .mh { color: #2aa198 } /* Literal.Number.Hex */
.highlight .mi { color: #2aa198 } /* Literal.Number.Integer */ .highlight .mi { color: #2aa198 } /* Literal.Number.Integer */
.highlight .mo { color: #2aa198 } /* Literal.Number.Oct */ .highlight .mo { color: #2aa198 } /* Literal.Number.Oct */
.highlight .sb { color: #586e75 } /* Literal.String.Backtick */ .highlight .sa { color: #2aa198 } /* Literal.String.Affix */
.highlight .sb { color: #2aa198 } /* Literal.String.Backtick */
.highlight .sc { color: #2aa198 } /* Literal.String.Char */ .highlight .sc { color: #2aa198 } /* Literal.String.Char */
.highlight .sd { color: #93a1a1 } /* Literal.String.Doc */ .highlight .dl { color: #2aa198 } /* Literal.String.Delimiter */
.highlight .sd { color: #586e75 } /* Literal.String.Doc */
.highlight .s2 { color: #2aa198 } /* Literal.String.Double */ .highlight .s2 { color: #2aa198 } /* Literal.String.Double */
.highlight .se { color: #cb4b16 } /* Literal.String.Escape */ .highlight .se { color: #2aa198 } /* Literal.String.Escape */
.highlight .sh { color: #93a1a1 } /* Literal.String.Heredoc */ .highlight .sh { color: #2aa198 } /* Literal.String.Heredoc */
.highlight .si { color: #2aa198 } /* Literal.String.Interpol */ .highlight .si { color: #2aa198 } /* Literal.String.Interpol */
.highlight .sx { color: #2aa198 } /* Literal.String.Other */ .highlight .sx { color: #2aa198 } /* Literal.String.Other */
.highlight .sr { color: #dc322f } /* Literal.String.Regex */ .highlight .sr { color: #cb4b16 } /* Literal.String.Regex */
.highlight .s1 { color: #2aa198 } /* Literal.String.Single */ .highlight .s1 { color: #2aa198 } /* Literal.String.Single */
.highlight .ss { color: #2aa198 } /* Literal.String.Symbol */ .highlight .ss { color: #2aa198 } /* Literal.String.Symbol */
.highlight .bp { color: #268bd2 } /* Name.Builtin.Pseudo */ .highlight .bp { color: #268bd2 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #268bd2 } /* Name.Function.Magic */
.highlight .vc { color: #268bd2 } /* Name.Variable.Class */ .highlight .vc { color: #268bd2 } /* Name.Variable.Class */
.highlight .vg { color: #268bd2 } /* Name.Variable.Global */ .highlight .vg { color: #268bd2 } /* Name.Variable.Global */
.highlight .vi { color: #268bd2 } /* Name.Variable.Instance */ .highlight .vi { color: #268bd2 } /* Name.Variable.Instance */
.highlight .vm { color: #268bd2 } /* Name.Variable.Magic */
.highlight .il { color: #2aa198 } /* Literal.Number.Integer.Long */ .highlight .il { color: #2aa198 } /* Literal.Number.Integer.Long */

View file

@ -1 +1 @@
.highlight{background-color:#002b36;color:#93a1a1}.highlight .c{color:#586e75}.highlight .err,.highlight .g{color:#93a1a1}.highlight .k{color:#859900}.highlight .l,.highlight .n{color:#93a1a1}.highlight .o{color:#859900}.highlight .x{color:#cb4b16}.highlight .p{color:#93a1a1}.highlight .cm{color:#586e75}.highlight .cp{color:#859900}.highlight .c1{color:#586e75}.highlight .cs{color:#859900}.highlight .gd{color:#2aa198}.highlight .ge{color:#93a1a1;font-style:italic}.highlight .gr{color:#dc322f}.highlight .gh{color:#cb4b16}.highlight .gi{color:#859900}.highlight .go,.highlight .gp{color:#93a1a1}.highlight .gs{color:#93a1a1;font-weight:700}.highlight .gu{color:#cb4b16}.highlight .gt{color:#93a1a1}.highlight .kc{color:#cb4b16}.highlight .kd{color:#268bd2}.highlight .kn,.highlight .kp{color:#859900}.highlight .kr{color:#268bd2}.highlight .kt{color:#dc322f}.highlight .ld{color:#93a1a1}.highlight .m,.highlight .s{color:#2aa198}.highlight .na{color:#93a1a1}.highlight .nb{color:#b58900}.highlight .nc{color:#268bd2}.highlight .no{color:#cb4b16}.highlight .nd{color:#268bd2}.highlight .ne,.highlight .ni{color:#cb4b16}.highlight .nf{color:#268bd2}.highlight .nl,.highlight .nn,.highlight .nx,.highlight .py{color:#93a1a1}.highlight .nt,.highlight .nv{color:#268bd2}.highlight .ow{color:#859900}.highlight .w{color:#93a1a1}.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#2aa198}.highlight .sb{color:#586e75}.highlight .sc{color:#2aa198}.highlight .sd{color:#93a1a1}.highlight .s2{color:#2aa198}.highlight .se{color:#cb4b16}.highlight .sh{color:#93a1a1}.highlight .si,.highlight .sx{color:#2aa198}.highlight .sr{color:#dc322f}.highlight .s1,.highlight .ss{color:#2aa198}.highlight .bp,.highlight .vc,.highlight .vg,.highlight .vi{color:#268bd2}.highlight .il{color:#2aa198} .highlight .hll{background-color:#073642}.highlight{background:#002b36;color:#839496}.highlight .c{color:#586e75;font-style:italic}.highlight .err{color:#839496;background-color:#dc322f}.highlight .esc,.highlight .g{color:#839496}.highlight .k{color:#859900}.highlight .l,.highlight .n{color:#839496}.highlight .o{color:#586e75}.highlight .p,.highlight .x{color:#839496}.highlight .ch,.highlight .cm{color:#586e75;font-style:italic}.highlight .cp{color:#d33682}.highlight .cpf{color:#586e75}.highlight .c1,.highlight .cs{color:#586e75;font-style:italic}.highlight .gd{color:#dc322f}.highlight .ge{color:#839496;font-style:italic}.highlight .gr{color:#dc322f}.highlight .gh{color:#839496;font-weight:700}.highlight .gi{color:#859900}.highlight .go,.highlight .gp{color:#839496}.highlight .gs{color:#839496;font-weight:700}.highlight .gu{color:#839496;text-decoration:underline}.highlight .gt{color:#268bd2}.highlight .kc,.highlight .kd{color:#2aa198}.highlight .kn{color:#cb4b16}.highlight .kp,.highlight .kr{color:#859900}.highlight .kt{color:#b58900}.highlight .ld{color:#839496}.highlight .m,.highlight .s{color:#2aa198}.highlight .na{color:#839496}.highlight .nb,.highlight .nc,.highlight .nd,.highlight .ne,.highlight .nf,.highlight .ni,.highlight .nl,.highlight .nn,.highlight .no{color:#268bd2}.highlight .nx,.highlight .py{color:#839496}.highlight .nt,.highlight .nv{color:#268bd2}.highlight .ow{color:#859900}.highlight .w{color:#839496}.highlight .dl,.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo,.highlight .sa,.highlight .sb,.highlight .sc{color:#2aa198}.highlight .sd{color:#586e75}.highlight .s2,.highlight .se,.highlight .sh,.highlight .si,.highlight .sx{color:#2aa198}.highlight .sr{color:#cb4b16}.highlight .s1,.highlight .ss{color:#2aa198}.highlight .bp,.highlight .fm,.highlight .vc,.highlight .vg,.highlight .vi,.highlight .vm{color:#268bd2}.highlight .il{color:#2aa198}

View file

@ -0,0 +1,78 @@
.highlight .hll { background-color: #eee8d5 }
.highlight { background: #fdf6e3; color: #657b83 }
.highlight .c { color: #93a1a1; font-style: italic } /* Comment */
.highlight .err { color: #657b83; background-color: #dc322f } /* Error */
.highlight .esc { color: #657b83 } /* Escape */
.highlight .g { color: #657b83 } /* Generic */
.highlight .k { color: #859900 } /* Keyword */
.highlight .l { color: #657b83 } /* Literal */
.highlight .n { color: #657b83 } /* Name */
.highlight .o { color: #93a1a1 } /* Operator */
.highlight .x { color: #657b83 } /* Other */
.highlight .p { color: #657b83 } /* Punctuation */
.highlight .ch { color: #93a1a1; font-style: italic } /* Comment.Hashbang */
.highlight .cm { color: #93a1a1; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #d33682 } /* Comment.Preproc */
.highlight .cpf { color: #93a1a1 } /* Comment.PreprocFile */
.highlight .c1 { color: #93a1a1; font-style: italic } /* Comment.Single */
.highlight .cs { color: #93a1a1; font-style: italic } /* Comment.Special */
.highlight .gd { color: #dc322f } /* Generic.Deleted */
.highlight .ge { color: #657b83; font-style: italic } /* Generic.Emph */
.highlight .gr { color: #dc322f } /* Generic.Error */
.highlight .gh { color: #657b83; font-weight: bold } /* Generic.Heading */
.highlight .gi { color: #859900 } /* Generic.Inserted */
.highlight .go { color: #657b83 } /* Generic.Output */
.highlight .gp { color: #657b83 } /* Generic.Prompt */
.highlight .gs { color: #657b83; font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #657b83; text-decoration: underline } /* Generic.Subheading */
.highlight .gt { color: #268bd2 } /* Generic.Traceback */
.highlight .kc { color: #2aa198 } /* Keyword.Constant */
.highlight .kd { color: #2aa198 } /* Keyword.Declaration */
.highlight .kn { color: #cb4b16 } /* Keyword.Namespace */
.highlight .kp { color: #859900 } /* Keyword.Pseudo */
.highlight .kr { color: #859900 } /* Keyword.Reserved */
.highlight .kt { color: #b58900 } /* Keyword.Type */
.highlight .ld { color: #657b83 } /* Literal.Date */
.highlight .m { color: #2aa198 } /* Literal.Number */
.highlight .s { color: #2aa198 } /* Literal.String */
.highlight .na { color: #657b83 } /* Name.Attribute */
.highlight .nb { color: #268bd2 } /* Name.Builtin */
.highlight .nc { color: #268bd2 } /* Name.Class */
.highlight .no { color: #268bd2 } /* Name.Constant */
.highlight .nd { color: #268bd2 } /* Name.Decorator */
.highlight .ni { color: #268bd2 } /* Name.Entity */
.highlight .ne { color: #268bd2 } /* Name.Exception */
.highlight .nf { color: #268bd2 } /* Name.Function */
.highlight .nl { color: #268bd2 } /* Name.Label */
.highlight .nn { color: #268bd2 } /* Name.Namespace */
.highlight .nx { color: #657b83 } /* Name.Other */
.highlight .py { color: #657b83 } /* Name.Property */
.highlight .nt { color: #268bd2 } /* Name.Tag */
.highlight .nv { color: #268bd2 } /* Name.Variable */
.highlight .ow { color: #859900 } /* Operator.Word */
.highlight .w { color: #657b83 } /* Text.Whitespace */
.highlight .mb { color: #2aa198 } /* Literal.Number.Bin */
.highlight .mf { color: #2aa198 } /* Literal.Number.Float */
.highlight .mh { color: #2aa198 } /* Literal.Number.Hex */
.highlight .mi { color: #2aa198 } /* Literal.Number.Integer */
.highlight .mo { color: #2aa198 } /* Literal.Number.Oct */
.highlight .sa { color: #2aa198 } /* Literal.String.Affix */
.highlight .sb { color: #2aa198 } /* Literal.String.Backtick */
.highlight .sc { color: #2aa198 } /* Literal.String.Char */
.highlight .dl { color: #2aa198 } /* Literal.String.Delimiter */
.highlight .sd { color: #93a1a1 } /* Literal.String.Doc */
.highlight .s2 { color: #2aa198 } /* Literal.String.Double */
.highlight .se { color: #2aa198 } /* Literal.String.Escape */
.highlight .sh { color: #2aa198 } /* Literal.String.Heredoc */
.highlight .si { color: #2aa198 } /* Literal.String.Interpol */
.highlight .sx { color: #2aa198 } /* Literal.String.Other */
.highlight .sr { color: #cb4b16 } /* Literal.String.Regex */
.highlight .s1 { color: #2aa198 } /* Literal.String.Single */
.highlight .ss { color: #2aa198 } /* Literal.String.Symbol */
.highlight .bp { color: #268bd2 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #268bd2 } /* Name.Function.Magic */
.highlight .vc { color: #268bd2 } /* Name.Variable.Class */
.highlight .vg { color: #268bd2 } /* Name.Variable.Global */
.highlight .vi { color: #268bd2 } /* Name.Variable.Instance */
.highlight .vm { color: #268bd2 } /* Name.Variable.Magic */
.highlight .il { color: #2aa198 } /* Literal.Number.Integer.Long */

View file

@ -0,0 +1 @@
.highlight .hll{background-color:#eee8d5}.highlight{background:#fdf6e3;color:#657b83}.highlight .c{color:#93a1a1;font-style:italic}.highlight .err{color:#657b83;background-color:#dc322f}.highlight .esc,.highlight .g{color:#657b83}.highlight .k{color:#859900}.highlight .l,.highlight .n{color:#657b83}.highlight .o{color:#93a1a1}.highlight .p,.highlight .x{color:#657b83}.highlight .ch,.highlight .cm{color:#93a1a1;font-style:italic}.highlight .cp{color:#d33682}.highlight .cpf{color:#93a1a1}.highlight .c1,.highlight .cs{color:#93a1a1;font-style:italic}.highlight .gd{color:#dc322f}.highlight .ge{color:#657b83;font-style:italic}.highlight .gr{color:#dc322f}.highlight .gh{color:#657b83;font-weight:700}.highlight .gi{color:#859900}.highlight .go,.highlight .gp{color:#657b83}.highlight .gs{color:#657b83;font-weight:700}.highlight .gu{color:#657b83;text-decoration:underline}.highlight .gt{color:#268bd2}.highlight .kc,.highlight .kd{color:#2aa198}.highlight .kn{color:#cb4b16}.highlight .kp,.highlight .kr{color:#859900}.highlight .kt{color:#b58900}.highlight .ld{color:#657b83}.highlight .m,.highlight .s{color:#2aa198}.highlight .na{color:#657b83}.highlight .nb,.highlight .nc,.highlight .nd,.highlight .ne,.highlight .nf,.highlight .ni,.highlight .nl,.highlight .nn,.highlight .no{color:#268bd2}.highlight .nx,.highlight .py{color:#657b83}.highlight .nt,.highlight .nv{color:#268bd2}.highlight .ow{color:#859900}.highlight .w{color:#657b83}.highlight .dl,.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo,.highlight .sa,.highlight .sb,.highlight .sc{color:#2aa198}.highlight .sd{color:#93a1a1}.highlight .s2,.highlight .se,.highlight .sh,.highlight .si,.highlight .sx{color:#2aa198}.highlight .sr{color:#cb4b16}.highlight .s1,.highlight .ss{color:#2aa198}.highlight .bp,.highlight .fm,.highlight .vc,.highlight .vg,.highlight .vi,.highlight .vm{color:#268bd2}.highlight .il{color:#2aa198}

View file

@ -0,0 +1,48 @@
.highlight .hll { background-color: #49483e }
.highlight { background: #232629; color: #cccccc }
.highlight .c { color: #777777; font-style: italic } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #7686bb; font-weight: bold } /* Keyword */
.highlight .ch { color: #777777; font-style: italic } /* Comment.Hashbang */
.highlight .cm { color: #777777; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #777777; font-style: italic } /* Comment.Preproc */
.highlight .cpf { color: #777777; font-style: italic } /* Comment.PreprocFile */
.highlight .c1 { color: #777777; font-style: italic } /* Comment.Single */
.highlight .cs { color: #777777; font-style: italic } /* Comment.Special */
.highlight .gp { color: #ffffff } /* Generic.Prompt */
.highlight .kc { color: #7686bb; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #7686bb; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #7686bb; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #7686bb; font-weight: bold } /* Keyword.Pseudo */
.highlight .kr { color: #7686bb; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #7686bb; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #4FB8CC } /* Literal.Number */
.highlight .s { color: #51cc99 } /* Literal.String */
.highlight .nf { color: #6a6aff } /* Name.Function */
.highlight .nx { color: #e2828e } /* Name.Other */
.highlight .nv { color: #7AB4DB; font-weight: bold } /* Name.Variable */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #4FB8CC } /* Literal.Number.Bin */
.highlight .mf { color: #4FB8CC } /* Literal.Number.Float */
.highlight .mh { color: #4FB8CC } /* Literal.Number.Hex */
.highlight .mi { color: #4FB8CC } /* Literal.Number.Integer */
.highlight .mo { color: #4FB8CC } /* Literal.Number.Oct */
.highlight .sa { color: #51cc99 } /* Literal.String.Affix */
.highlight .sb { color: #51cc99 } /* Literal.String.Backtick */
.highlight .sc { color: #51cc99 } /* Literal.String.Char */
.highlight .dl { color: #51cc99 } /* Literal.String.Delimiter */
.highlight .sd { color: #51cc99 } /* Literal.String.Doc */
.highlight .s2 { color: #51cc99 } /* Literal.String.Double */
.highlight .se { color: #51cc99 } /* Literal.String.Escape */
.highlight .sh { color: #51cc99 } /* Literal.String.Heredoc */
.highlight .si { color: #51cc99 } /* Literal.String.Interpol */
.highlight .sx { color: #51cc99 } /* Literal.String.Other */
.highlight .sr { color: #51cc99 } /* Literal.String.Regex */
.highlight .s1 { color: #51cc99 } /* Literal.String.Single */
.highlight .ss { color: #51cc99 } /* Literal.String.Symbol */
.highlight .fm { color: #6a6aff } /* Name.Function.Magic */
.highlight .vc { color: #7AB4DB; font-weight: bold } /* Name.Variable.Class */
.highlight .vg { color: #BE646C; font-weight: bold } /* Name.Variable.Global */
.highlight .vi { color: #7AB4DB; font-weight: bold } /* Name.Variable.Instance */
.highlight .vm { color: #7AB4DB; font-weight: bold } /* Name.Variable.Magic */
.highlight .il { color: #4FB8CC } /* Literal.Number.Integer.Long */

1
static/pygments/stata-dark.min.css vendored Normal file
View file

@ -0,0 +1 @@
.highlight .hll{background-color:#49483e}.highlight{background:#232629;color:#ccc}.highlight .c{color:#777;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .k{color:#7686bb;font-weight:700}.highlight .c1,.highlight .ch,.highlight .cm,.highlight .cp,.highlight .cpf,.highlight .cs{color:#777;font-style:italic}.highlight .gp{color:#fff}.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr,.highlight .kt{color:#7686bb;font-weight:700}.highlight .m{color:#4fb8cc}.highlight .s{color:#51cc99}.highlight .nf{color:#6a6aff}.highlight .nx{color:#e2828e}.highlight .nv{color:#7ab4db;font-weight:700}.highlight .w{color:#bbb}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#4fb8cc}.highlight .dl,.highlight .s1,.highlight .s2,.highlight .sa,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si,.highlight .sr,.highlight .ss,.highlight .sx{color:#51cc99}.highlight .fm{color:#6a6aff}.highlight .vc{color:#7ab4db;font-weight:700}.highlight .vg{color:#be646c;font-weight:700}.highlight .vi,.highlight .vm{color:#7ab4db;font-weight:700}.highlight .il{color:#4fb8cc}

View file

@ -0,0 +1,47 @@
.highlight .hll { background-color: #ffffcc }
.highlight { background: #ffffff; color: #111111 }
.highlight .c { color: #008800; font-style: italic } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #353580; font-weight: bold } /* Keyword */
.highlight .ch { color: #008800; font-style: italic } /* Comment.Hashbang */
.highlight .cm { color: #008800; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #008800; font-style: italic } /* Comment.Preproc */
.highlight .cpf { color: #008800; font-style: italic } /* Comment.PreprocFile */
.highlight .c1 { color: #008800; font-style: italic } /* Comment.Single */
.highlight .cs { color: #008800; font-style: italic } /* Comment.Special */
.highlight .kc { color: #353580; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #353580; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #353580; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #353580; font-weight: bold } /* Keyword.Pseudo */
.highlight .kr { color: #353580; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #353580; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #2c2cff } /* Literal.Number */
.highlight .s { color: #7a2424 } /* Literal.String */
.highlight .nf { color: #2c2cff } /* Name.Function */
.highlight .nx { color: #be646c } /* Name.Other */
.highlight .nv { color: #35baba; font-weight: bold } /* Name.Variable */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #2c2cff } /* Literal.Number.Bin */
.highlight .mf { color: #2c2cff } /* Literal.Number.Float */
.highlight .mh { color: #2c2cff } /* Literal.Number.Hex */
.highlight .mi { color: #2c2cff } /* Literal.Number.Integer */
.highlight .mo { color: #2c2cff } /* Literal.Number.Oct */
.highlight .sa { color: #7a2424 } /* Literal.String.Affix */
.highlight .sb { color: #7a2424 } /* Literal.String.Backtick */
.highlight .sc { color: #7a2424 } /* Literal.String.Char */
.highlight .dl { color: #7a2424 } /* Literal.String.Delimiter */
.highlight .sd { color: #7a2424 } /* Literal.String.Doc */
.highlight .s2 { color: #7a2424 } /* Literal.String.Double */
.highlight .se { color: #7a2424 } /* Literal.String.Escape */
.highlight .sh { color: #7a2424 } /* Literal.String.Heredoc */
.highlight .si { color: #7a2424 } /* Literal.String.Interpol */
.highlight .sx { color: #7a2424 } /* Literal.String.Other */
.highlight .sr { color: #7a2424 } /* Literal.String.Regex */
.highlight .s1 { color: #7a2424 } /* Literal.String.Single */
.highlight .ss { color: #7a2424 } /* Literal.String.Symbol */
.highlight .fm { color: #2c2cff } /* Name.Function.Magic */
.highlight .vc { color: #35baba; font-weight: bold } /* Name.Variable.Class */
.highlight .vg { color: #b5565e; font-weight: bold } /* Name.Variable.Global */
.highlight .vi { color: #35baba; font-weight: bold } /* Name.Variable.Instance */
.highlight .vm { color: #35baba; font-weight: bold } /* Name.Variable.Magic */
.highlight .il { color: #2c2cff } /* Literal.Number.Integer.Long */

1
static/pygments/stata-light.min.css vendored Normal file
View file

@ -0,0 +1 @@
.highlight .hll{background-color:#ffc}.highlight{background:#fff;color:#111}.highlight .c{color:#080;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .k{color:#353580;font-weight:700}.highlight .c1,.highlight .ch,.highlight .cm,.highlight .cp,.highlight .cpf,.highlight .cs{color:#080;font-style:italic}.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr,.highlight .kt{color:#353580;font-weight:700}.highlight .m{color:#2c2cff}.highlight .s{color:#7a2424}.highlight .nf{color:#2c2cff}.highlight .nx{color:#be646c}.highlight .nv{color:#35baba;font-weight:700}.highlight .w{color:#bbb}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#2c2cff}.highlight .dl,.highlight .s1,.highlight .s2,.highlight .sa,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si,.highlight .sr,.highlight .ss,.highlight .sx{color:#7a2424}.highlight .fm{color:#2c2cff}.highlight .vc{color:#35baba;font-weight:700}.highlight .vg{color:#b5565e;font-weight:700}.highlight .vi,.highlight .vm{color:#35baba;font-weight:700}.highlight .il{color:#2c2cff}

47
static/pygments/stata.css Normal file
View file

@ -0,0 +1,47 @@
.highlight .hll { background-color: #ffffcc }
.highlight { background: #ffffff; color: #111111 }
.highlight .c { color: #008800; font-style: italic } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #353580; font-weight: bold } /* Keyword */
.highlight .ch { color: #008800; font-style: italic } /* Comment.Hashbang */
.highlight .cm { color: #008800; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #008800; font-style: italic } /* Comment.Preproc */
.highlight .cpf { color: #008800; font-style: italic } /* Comment.PreprocFile */
.highlight .c1 { color: #008800; font-style: italic } /* Comment.Single */
.highlight .cs { color: #008800; font-style: italic } /* Comment.Special */
.highlight .kc { color: #353580; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #353580; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #353580; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #353580; font-weight: bold } /* Keyword.Pseudo */
.highlight .kr { color: #353580; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #353580; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #2c2cff } /* Literal.Number */
.highlight .s { color: #7a2424 } /* Literal.String */
.highlight .nf { color: #2c2cff } /* Name.Function */
.highlight .nx { color: #be646c } /* Name.Other */
.highlight .nv { color: #35baba; font-weight: bold } /* Name.Variable */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #2c2cff } /* Literal.Number.Bin */
.highlight .mf { color: #2c2cff } /* Literal.Number.Float */
.highlight .mh { color: #2c2cff } /* Literal.Number.Hex */
.highlight .mi { color: #2c2cff } /* Literal.Number.Integer */
.highlight .mo { color: #2c2cff } /* Literal.Number.Oct */
.highlight .sa { color: #7a2424 } /* Literal.String.Affix */
.highlight .sb { color: #7a2424 } /* Literal.String.Backtick */
.highlight .sc { color: #7a2424 } /* Literal.String.Char */
.highlight .dl { color: #7a2424 } /* Literal.String.Delimiter */
.highlight .sd { color: #7a2424 } /* Literal.String.Doc */
.highlight .s2 { color: #7a2424 } /* Literal.String.Double */
.highlight .se { color: #7a2424 } /* Literal.String.Escape */
.highlight .sh { color: #7a2424 } /* Literal.String.Heredoc */
.highlight .si { color: #7a2424 } /* Literal.String.Interpol */
.highlight .sx { color: #7a2424 } /* Literal.String.Other */
.highlight .sr { color: #7a2424 } /* Literal.String.Regex */
.highlight .s1 { color: #7a2424 } /* Literal.String.Single */
.highlight .ss { color: #7a2424 } /* Literal.String.Symbol */
.highlight .fm { color: #2c2cff } /* Name.Function.Magic */
.highlight .vc { color: #35baba; font-weight: bold } /* Name.Variable.Class */
.highlight .vg { color: #b5565e; font-weight: bold } /* Name.Variable.Global */
.highlight .vi { color: #35baba; font-weight: bold } /* Name.Variable.Instance */
.highlight .vm { color: #35baba; font-weight: bold } /* Name.Variable.Magic */
.highlight .il { color: #2c2cff } /* Literal.Number.Integer.Long */

1
static/pygments/stata.min.css vendored Normal file
View file

@ -0,0 +1 @@
.highlight .hll{background-color:#ffc}.highlight{background:#fff;color:#111}.highlight .c{color:#080;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .k{color:#353580;font-weight:700}.highlight .c1,.highlight .ch,.highlight .cm,.highlight .cp,.highlight .cpf,.highlight .cs{color:#080;font-style:italic}.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr,.highlight .kt{color:#353580;font-weight:700}.highlight .m{color:#2c2cff}.highlight .s{color:#7a2424}.highlight .nf{color:#2c2cff}.highlight .nx{color:#be646c}.highlight .nv{color:#35baba;font-weight:700}.highlight .w{color:#bbb}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#2c2cff}.highlight .dl,.highlight .s1,.highlight .s2,.highlight .sa,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si,.highlight .sr,.highlight .ss,.highlight .sx{color:#7a2424}.highlight .fm{color:#2c2cff}.highlight .vc{color:#35baba;font-weight:700}.highlight .vg{color:#b5565e;font-weight:700}.highlight .vi,.highlight .vm{color:#35baba;font-weight:700}.highlight .il{color:#2c2cff}

View file

@ -250,6 +250,26 @@ main {
border-top: 1px solid #ddd; border-top: 1px solid #ddd;
} }
} }
table.highlighttable {
width: 100%;
table-layout: fixed;
td {
border-style: none;
padding: 0px;
}
td.linenos {
width: 2.5em;
pre {
padding-right: .8em;
background-color: inherit;
text-align: right;
}
}
}
} }
footer { footer {
@ -462,6 +482,13 @@ ul.social {
background-color: @mastodon-bg-color; background-color: @mastodon-bg-color;
} }
a.sc-flickr {
background-color: @flickr-bg-color;
}
a.sc-lastfm {
background-color: @lastfm-bg-color;
}
} }
.ads-aside { .ads-aside {
@ -539,3 +566,135 @@ ul.social {
height: 90px; height: 90px;
} }
} }
// Admonition
div.admonition {
margin-bottom: 2.5rem;
p.admonition-title::before {
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
font-family: "Font Awesome 5 Free";
}
p.admonition-title {
border-radius: 4px 4px 0 0;
font-weight: 600;
line-height: 1.25em;
padding: .5em 1em;
margin-bottom: 1.25em;
margin-top: inherit;
}
p, div {
border-radius: 0 0 4px 4px;
padding: 1.25em 1.25em 0 1.25em;
margin-top: -1.25em;
margin-bottom: 0;
}
p.last, div.last {
padding-bottom: 1.25em;
}
}
div.admonition.attention {
p.admonition-title::before {
content: @admonition-attention-icon;
}
p, div {
color: @admonition-attention-color;
background-color: @admonition-attention-bg-color;
}
}
div.admonition.caution {
p.admonition-title::before {
content: @admonition-caution-icon;
}
p, div {
color: @admonition-caution-color;
background-color: @admonition-caution-bg-color;
}
}
div.admonition.danger {
p.admonition-title::before {
content: @admonition-danger-icon;
}
p, div {
color: @admonition-danger-color;
background-color: @admonition-danger-bg-color;
}
}
div.admonition.error {
p.admonition-title::before {
content: @admonition-error-icon;
}
p, div {
color: @admonition-error-color;
background-color: @admonition-error-bg-color;
}
}
div.admonition.hint {
p.admonition-title::before {
content: @admonition-hint-icon;
}
p, div {
color: @admonition-hint-color;
background-color: @admonition-hint-bg-color;
}
}
div.admonition.important {
p.admonition-title::before {
content: @admonition-important-icon;
}
p, div {
color: @admonition-important-color;
background-color: @admonition-important-bg-color;
}
}
div.admonition.note {
p.admonition-title::before {
content: @admonition-note-icon;
}
p, div {
color: @admonition-note-color;
background-color: @admonition-note-bg-color;
}
}
div.admonition.tip {
p.admonition-title::before {
content: @admonition-tip-icon;
}
p, div {
color: @admonition-tip-color;
background-color: @admonition-tip-bg-color;
}
}
div.admonition.warning {
p.admonition-title::before {
content: @admonition-warning-icon;
}
p, div {
color: @admonition-warning-color;
background-color: @admonition-warning-bg-color;
}
}

File diff suppressed because one or more lines are too long

View file

@ -70,3 +70,42 @@
@xing-bg-color: #007575; @xing-bg-color: #007575;
@bitbucket-bg-color: #0747A6; @bitbucket-bg-color: #0747A6;
@mastodon-bg-color: #3088d4; @mastodon-bg-color: #3088d4;
@flickr-bg-color: #ff0084;
@lastfm-bg-color: #d92323;
// Admonition colors
@admonition-attention-color: #856404;
@admonition-attention-bg-color: #fff3cd;
@admonition-attention-icon: "\f071\00a0 ";
@admonition-caution-color: @admonition-attention-color;
@admonition-caution-bg-color: @admonition-attention-bg-color;
@admonition-caution-icon: @admonition-attention-icon;
@admonition-warning-color: @admonition-attention-color;
@admonition-warning-bg-color: @admonition-attention-bg-color;
@admonition-warning-icon: @admonition-attention-icon;
@admonition-danger-color: #721c24;
@admonition-danger-bg-color: #f8d7da;
@admonition-danger-icon: "\f06a\00a0 ";
@admonition-error-color: @admonition-danger-color;
@admonition-error-bg-color: @admonition-danger-bg-color;
@admonition-error-icon: @admonition-danger-icon;
@admonition-hint-color: #004085 ;
@admonition-hint-bg-color: #cce5ff;
@admonition-hint-icon: "\f0eb\00a0 ";
@admonition-tip-color: @admonition-hint-color;
@admonition-tip-bg-color: @admonition-hint-bg-color;
@admonition-tip-icon: @admonition-hint-icon;
@admonition-important-color: #155724;
@admonition-important-bg-color: #d4edda;
@admonition-important-icon: "\f05a\00a0 ";
@admonition-note-color: @admonition-important-color;
@admonition-note-bg-color: @admonition-important-bg-color;
@admonition-note-icon: @admonition-important-icon;

4
static/tipuesearch/jquery.min.js vendored Normal file

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1 @@
@import url(https://fonts.googleapis.com/css?family=Merriweather:300,400|Open+Sans|Source+Code+Pro);#tipue_search_input{font-family:Source Sans Pro,Roboto,Open Sans,Liberation Sans,DejaVu Sans,Verdana,Helvetica,Arial,sans-serif;color:#333;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:#f3f3f3;border:none;padding:9px 0 10px 18px;border-radius:3px;-moz-appearance:none;-webkit-appearance:none;box-sizing:border-box;box-shadow:none;outline:0;margin:0}#tipue_search_input:-webkit-autofill,#tipue_search_input:-webkit-autofill:focus,#tipue_search_input:-webkit-autofill:hover{-webkit-box-shadow:0 0 0 1000px #f3f3f3 inset}.tipue_search_button{position:relative;float:left;width:49px;height:56px;margin-left:-3px;background-color:#f3f3f3;border:none;border-top-right-radius:3px;border-bottom-right-radius:3px;box-sizing:border-box;cursor:pointer;outline:0}.tipue_search_icon{float:left;font:24px/1 'Open Sans',sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#333;transform:rotate(-45deg);-moz-appearance:none;-webkit-appearance:none;box-sizing:border-box;box-shadow:none;outline:0;margin:-1px 0 0 16px}.tipue_search_group:after{content:"";display:table;clear:both}#tipue_search_content{max-width:100%;margin:0}.tipue_search_content_title{font-family:Source Sans Pro,Roboto,Open Sans,Liberation Sans,DejaVu Sans,Verdana,Helvetica,Arial,sans-serif;font-weight:300;line-height:1.1;font-size:2em}.tipue_search_content_title a{color:#d9411e;text-decoration:none}.tipue_search_content_title a:hover{color:#ff5a09}.tipue_search_result{margin:0 8% 2%;line-height:inherit}#tipue_search_results_count,.tipue_search_content_debug{font-family:Source Sans Pro,Roboto,Open Sans,Liberation Sans,DejaVu Sans,Verdana,Helvetica,Arial,sans-serif;text-transform:uppercase;color:#999;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#tipue_search_results_count{padding-top:9px}#tipue_search_error,#tipue_search_replace,.tipue_search_content_url,.tipue_search_note,.tipue_search_related{font-family:Source Sans Pro,Roboto,Open Sans,Liberation Sans,DejaVu Sans,Verdana,Helvetica,Arial,sans-serif;color:#666;padding-top:7px;word-wrap:break-word;hyphens:auto}#tipue_search_replace a,#tipue_search_replace a:hover,.tipue_search_content_url a,.tipue_search_note a,.tipue_search_related a{color:#339e41;text-decoration:none}.tipue_search_content_url a:hover,.tipue_search_note a:hover,.tipue_search_related a:hover{color:#666}#tipue_search_replace,.tipue_search_related{margin-top:7px}#tipue_search_error{color:#333;margin-top:17px}.tipue_search_content_text{margin:0;padding:0;background-color:#fff;color:#242121;font-family:Source Sans Pro,Roboto,Open Sans,Liberation Sans,DejaVu Sans,Verdana,Helvetica,Arial,sans-serif;font-size:1.02em;line-height:1.2em}.tipue_search_content_bold{font-weight:bold;color:#333}.tipue_search_content_debug{margin:7px 0 2px 0}.tipue_search_image{padding:17px 0 6px 0}.tipue_search_img{width:100%;max-width:330px;height:auto;transition:.5s;border-radius:2px}.tipue_search_img:hover{opacity:.9}#tipue_search_zoom_text{font:12px/1.7 'Source Code Pro',monospace;color:#ccc;text-transform:uppercase;letter-spacing:1px;padding-top:9px}#tipue_search_zoom_text a{color:#ccc;text-decoration:none;border-bottom:2px solid #f7f7f7}#tipue_search_zoom_text a:hover{border:0}.tipue_search_image_zoom{cursor:pointer}#tipue_search_image_modal{display:none;position:fixed;z-index:1000;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:rgba(0,0,0,.9)}.tipue_search_image_close{position:absolute;top:0;right:0;font:22px/1 'Source Code Pro',monospace;color:#ccc;padding:25px 30px;cursor:pointer}.tipue_search_image_block{margin:0 auto;max-width:900px;padding:73px 30px 30px 30px;box-sizing:border-box;color:#fff}#tipue_search_zoom_img{max-width:100%;height:auto}#tipue_search_zoom_text,.tipue_search_zoom_options{padding-top:9px}#tipue_search_foot{margin:51px 0 21px 0}#tipue_search_foot_boxes{font:14px 'Source Code Pro',sans-serif;text-transform:uppercase;color:#333;padding:0;margin:0;cursor:pointer}#tipue_search_foot_boxes li{display:inline;list-style:none;margin:0;padding:0}#tipue_search_foot_boxes li a{background-color:#f7f7f7;color:#666;padding:10px 17px 11px 17px;border-radius:3px;margin-right:7px;text-decoration:none;text-align:center;transition:.3s}#tipue_search_foot_boxes li.current{background:#252525;color:#ccc;padding:10px 17px 11px 17px;border-radius:3px;margin-right:7px;text-align:center}#tipue_search_foot_boxes li a:hover{background:#252525;color:#ccc}

181
static/tipuesearch/tipuesearch.min.js vendored Normal file
View file

@ -0,0 +1,181 @@
(function($){$.fn.tipuesearch=function(options){var set=$.extend({'contextBuffer':60,'contextLength':60,'contextStart':90,'debug':false,'descriptiveWords':25,'footerPages':3,'highlightTerms':true,'imageZoom':true,'minimumLength':3,'newWindow':false,'show':10,'showContext':true,'showRelated':true,'showTime':true,'showTitleCount':true,'showURL':false,'wholeWords':true},options);return this.each(function(){var tipuesearch_t_c=0;var tipue_search_w='';if(set.newWindow)
{tipue_search_w=' target="_blank"';}
function getURLP(name)
{var locSearch=location.search;var splitted=(new RegExp('[?|&]'+name+'='+'([^&;]+?)(&|#|;|$)').exec(locSearch)||[,""]);var searchString=splitted[1].replace(/\+/g,'%20');try
{searchString=decodeURIComponent(searchString);}
catch(e)
{searchString=unescape(searchString);}
return searchString||null;}
if(getURLP('q'))
{$('#tipue_search_input').val(getURLP('q'));getTipueSearch(0,true);}
$(this).keyup(function(event)
{if(event.keyCode=='13')
{getTipueSearch(0,true);}});function getTipueSearch(start,replace)
{window.scrollTo(0,0);var out='';var show_replace=false;var show_stop=false;var standard=true;var c=0;var found=[];var d_o=$('#tipue_search_input').val();d_o=d_o.replace(/\+/g,' ').replace(/\s\s+/g,' ');d_o=$.trim(d_o);var d=d_o.toLowerCase();if((d.match("^\"")&&d.match("\"$"))||(d.match("^'")&&d.match("'$")))
{standard=false;}
var d_w=d.split(' ');if(standard)
{d='';for(var i=0;i<d_w.length;i++)
{var a_w=true;for(var f=0;f<tipuesearch_stop_words.length;f++)
{if(d_w[i]==tipuesearch_stop_words[f])
{a_w=false;show_stop=true;}}
if(a_w)
{d=d+' '+d_w[i];}}
d=$.trim(d);d_w=d.split(' ');}
else
{d=d.substring(1,d.length-1);}
if(d.length>=set.minimumLength)
{if(standard)
{if(replace)
{var d_r=d;for(var i=0;i<d_w.length;i++)
{for(var f=0;f<tipuesearch_replace.words.length;f++)
{if(d_w[i]==tipuesearch_replace.words[f].word)
{d=d.replace(d_w[i],tipuesearch_replace.words[f].replace_with);show_replace=true;}}}
d_w=d.split(' ');}
var d_t=d;for(var i=0;i<d_w.length;i++)
{for(var f=0;f<tipuesearch_stem.words.length;f++)
{if(d_w[i]==tipuesearch_stem.words[f].word)
{d_t=d_t+' '+tipuesearch_stem.words[f].stem;}}}
d_w=d_t.split(' ');for(var i=0;i<tipuesearch.pages.length;i++)
{var score=0;var s_t=tipuesearch.pages[i].text;for(var f=0;f<d_w.length;f++)
{if(set.wholeWords)
{var pat=new RegExp('\\b'+d_w[f]+'\\b','gi');}
else
{var pat=new RegExp(d_w[f],'gi');}
if(tipuesearch.pages[i].title.search(pat)!=-1)
{var m_c=tipuesearch.pages[i].title.match(pat).length;score+=(20*m_c);}
if(tipuesearch.pages[i].text.search(pat)!=-1)
{var m_c=tipuesearch.pages[i].text.match(pat).length;score+=(20*m_c);}
if(tipuesearch.pages[i].tags)
{if(tipuesearch.pages[i].tags.search(pat)!=-1)
{var m_c=tipuesearch.pages[i].tags.match(pat).length;score+=(10*m_c);}}
if(tipuesearch.pages[i].url.search(pat)!=-1)
{score+=20;}
if(score!=0)
{for(var e=0;e<tipuesearch_weight.weight.length;e++)
{if(tipuesearch.pages[i].url==tipuesearch_weight.weight[e].url)
{score+=tipuesearch_weight.weight[e].score;}}}
if(d_w[f].match('^-'))
{pat=new RegExp(d_w[f].substring(1),'i');if(tipuesearch.pages[i].title.search(pat)!=-1||tipuesearch.pages[i].text.search(pat)!=-1||tipuesearch.pages[i].tags.search(pat)!=-1)
{score=0;}}}
if(score!=0)
{found.push({"score":score,"title":tipuesearch.pages[i].title,"desc":s_t,"img":tipuesearch.pages[i].img,"url":tipuesearch.pages[i].url,"note":tipuesearch.pages[i].note});c++;}}}
else
{for(var i=0;i<tipuesearch.pages.length;i++)
{var score=0;var s_t=tipuesearch.pages[i].text;var pat=new RegExp(d,'gi');if(tipuesearch.pages[i].title.search(pat)!=-1)
{var m_c=tipuesearch.pages[i].title.match(pat).length;score+=(20*m_c);}
if(tipuesearch.pages[i].text.search(pat)!=-1)
{var m_c=tipuesearch.pages[i].text.match(pat).length;score+=(20*m_c);}
if(tipuesearch.pages[i].tags)
{if(tipuesearch.pages[i].tags.search(pat)!=-1)
{var m_c=tipuesearch.pages[i].tags.match(pat).length;score+=(10*m_c);}}
if(tipuesearch.pages[i].url.search(pat)!=-1)
{score+=20;}
if(score!=0)
{for(var e=0;e<tipuesearch_weight.weight.length;e++)
{if(tipuesearch.pages[i].url==tipuesearch_weight.weight[e].url)
{score+=tipuesearch_weight.weight[e].score;}}}
if(score!=0)
{found.push({"score":score,"title":tipuesearch.pages[i].title,"desc":s_t,"img":tipuesearch.pages[i].img,"url":tipuesearch.pages[i].url,"note":tipuesearch.pages[i].note});c++;}}}
if(c!=0)
{if(set.showTitleCount&&tipuesearch_t_c==0)
{var title=document.title;document.title='('+c+') '+title;tipuesearch_t_c++;}
if(c==1)
{out+='<div id="tipue_search_results_count">'+tipuesearch_string_4;}
else
{var c_c=c.toString().replace(/\B(?=(\d{3})+(?!\d))/g,",");out+='<div id="tipue_search_results_count">'+c_c+' '+tipuesearch_string_5;}
if(set.showTime)
{var endTimer=new Date().getTime();var time=(endTimer-startTimer)/ 1000;out+=' ('+time.toFixed(2)+' '+tipuesearch_string_14+')';set.showTime=false;}
out+='</div>';if(set.showRelated&&standard)
{var ront='';f=0;for(var i=0;i<tipuesearch_related.Related.length;i++)
{if(d==tipuesearch_related.Related[i].search)
{if(!f)
{out+='<div class="tipue_search_related">'+tipuesearch_string_10+': ';}
if(show_replace)
{d_o=d;}
if(tipuesearch_related.Related[i].include)
{var r_d=d_o+' '+tipuesearch_related.Related[i].related;}
else
{var r_d=tipuesearch_related.Related[i].related;}
ront+='<a class="tipue_search_related_btn" id="'+r_d+'">'+tipuesearch_related.Related[i].related+'</a>, ';f++;}}
if(f)
{ront=ront.slice(0,-2);ront+='.</div>';out+=ront;}}
if(show_replace)
{out+='<div id="tipue_search_replace">'+tipuesearch_string_2+' '+d+'. '+tipuesearch_string_3+' <a id="tipue_search_replaced">'+d_r+'</a></div>';}
found.sort(function(a,b){return b.score-a.score});var l_o=0;if(set.imageZoom)
{out+='<div id="tipue_search_image_modal"><div class="tipue_search_image_close">&#10005;</div><div class="tipue_search_image_block"><a id="tipue_search_zoom_url"><img id="tipue_search_zoom_img"></a><div id="tipue_search_zoom_text"></div></div></div>';}
for(var i=0;i<found.length;i++)
{if(l_o>=start&&l_o<set.show+start)
{out+='<div class="tipue_search_result">';out+='<h2><a href="'+found[i].url+'"'+tipue_search_w+'>'+found[i].title+'</a></h2>';if(set.debug)
{out+='<div class="tipue_search_content_debug">Score: '+found[i].score+'</div>';}
if(set.showURL)
{var s_u=found[i].url.toLowerCase();if(s_u.indexOf('http://')==0)
{s_u=s_u.slice(7);}
out+='<div class="tipue_search_content_url"><a href="'+found[i].url+'"'+tipue_search_w+'>'+s_u+'</a></div>';}
if(found[i].img)
{if(set.imageZoom)
{out+='<div class="tipue_search_image"><img class="tipue_search_img tipue_search_image_zoom" src="'+found[i].img+'" alt="'+found[i].title+'" data-url="'+found[i].url+'"></div>';}
else
{out+='<div class="tipue_search_image"><a href="'+found[i].url+'"'+tipue_search_w+'><img class="tipue_search_img" src="'+found[i].img+'" alt="'+found[i].title+'"></a></div>';}}
if(found[i].desc)
{var t=found[i].desc;if(set.showContext)
{d_w=d.split(' ');var s_1=found[i].desc.toLowerCase().indexOf(d_w[0]);if(s_1>set.contextStart)
{var t_1=t.substr(s_1-set.contextBuffer);var s_2=t_1.indexOf(' ');t_1=t.substr(s_1-set.contextBuffer+s_2);t_1=$.trim(t_1);if(t_1.length>set.contextLength)
{t='... '+t_1;}}}
if(standard)
{d_w=d.split(' ');for(var f=0;f<d_w.length;f++)
{if(set.highlightTerms)
{var patr=new RegExp('('+d_w[f]+')','gi');t=t.replace(patr,"<h0011>$1<h0012>");}}}
else if(set.highlightTerms)
{var patr=new RegExp('('+d+')','gi');t=t.replace(patr,"<span class=\"tipue_search_content_bold\">$1</span>");}
var t_d='';var t_w=t.split(' ');if(t_w.length<set.descriptiveWords)
{t_d=t;}
else
{for(var f=0;f<set.descriptiveWords;f++)
{t_d+=t_w[f]+' ';}}
t_d=$.trim(t_d);if(t_d.charAt(t_d.length-1)!='.')
{t_d+=' ...';}
t_d=t_d.replace(/h0011/g,'span class=\"tipue_search_content_bold\"');t_d=t_d.replace(/h0012/g,'/span');out+='<p>'+t_d+'</p>';}
if(found[i].note)
{out+='<div class="tipue_search_note">'+found[i].note+'</div>';}
out+='</div>';}
l_o++;}
if(c>set.show)
{var pages=Math.ceil(c / set.show);var page=(start / set.show);if(set.footerPages<3)
{set.footerPages=3;}
out+='<div id="tipue_search_foot"><ul id="tipue_search_foot_boxes">';if(start>0)
{out+='<li role="navigation"><a class="tipue_search_foot_box" accesskey="b" id="'+(start-set.show)+'_'+replace+'">'+tipuesearch_string_6+'</a></li>';}
if(page<=2)
{var p_b=pages;if(pages>set.footerPages)
{p_b=set.footerPages;}
for(var f=0;f<p_b;f++)
{if(f==page)
{out+='<li class="current" role="navigation">'+(f+1)+'</li>';}
else
{out+='<li role="navigation"><a class="tipue_search_foot_box" id="'+(f*set.show)+'_'+replace+'">'+(f+1)+'</a></li>';}}}
else
{var p_b=page+set.footerPages-1;if(p_b>pages)
{p_b=pages;}
for(var f=page-1;f<p_b;f++)
{if(f==page)
{out+='<li class="current" role="navigation">'+(f+1)+'</li>';}
else
{out+='<li role="navigation"><a class="tipue_search_foot_box" id="'+(f*set.show)+'_'+replace+'">'+(f+1)+'</a></li>';}}}
if(page+1!=pages)
{out+='<li role="navigation"><a class="tipue_search_foot_box" accesskey="m" id="'+(start+set.show)+'_'+replace+'">'+tipuesearch_string_7+'</a></li>';}
out+='</ul></div>';}}
else
{out+='<div id="tipue_search_error">'+tipuesearch_string_8+'</div>';}}
else
{if(show_stop)
{out+='<div id="tipue_search_error">'+tipuesearch_string_8+' '+tipuesearch_string_9+'</div>';}
else
{if(set.minimumLength==1)
{out+='<div id="tipue_search_error">'+tipuesearch_string_11+'</div>';}
else
{out+='<div id="tipue_search_error">'+tipuesearch_string_12+' '+set.minimumLength+' '+tipuesearch_string_13+'</div>';}}}
$('#tipue_search_content').hide().html(out).slideDown(200);$('#tipue_search_replaced').click(function()
{getTipueSearch(0,false);});$('.tipue_search_related_btn').click(function()
{$('#tipue_search_input').val($(this).attr('id'));getTipueSearch(0,true);});$('.tipue_search_image_zoom').click(function()
{$('#tipue_search_image_modal').fadeIn(300);$('#tipue_search_zoom_img').attr('src',this.src);var z_u=$(this).attr('data-url');$('#tipue_search_zoom_url').attr('href',z_u);var z_o=this.alt+'<div class="tipue_search_zoom_options"><a href="'+this.src+'" target="_blank">'+tipuesearch_string_15+'</a>&nbsp; <a href="'+z_u+'">'+tipuesearch_string_16+'</a></div>';$('#tipue_search_zoom_text').html(z_o);});$('.tipue_search_image_close').click(function()
{$('#tipue_search_image_modal').fadeOut(300);});$('.tipue_search_foot_box').click(function()
{var id_v=$(this).attr('id');var id_a=id_v.split('_');getTipueSearch(parseInt(id_a[0]),id_a[1]);});}});};})(jQuery);

View file

@ -0,0 +1 @@
var tipuesearch_stop_words=["a","above","after","again","against","all","am","an","and","any","are","aren't","as","at","be","because","been","before","being","below","between","both","but","by","can't","cannot","could","couldn't","did","didn't","do","does","doesn't","doing","don't","down","during","each","few","for","from","further","had","hadn't","has","hasn't","have","haven't","having","he","he'd","he'll","he's","her","here","here's","hers","herself","him","himself","his","how","how's","i","i'd","i'll","i'm","i've","if","in","into","is","isn't","it","it's","its","itself","let's","me","more","most","mustn't","my","myself","no","nor","not","of","off","on","once","only","or","other","ought","our","ours","ourselves","out","over","own","same","shan't","she","she'd","she'll","she's","should","shouldn't","so","some","such","than","that","that's","the","their","theirs","them","themselves","then","there","there's","these","they","they'd","they'll","they're","they've","this","those","through","to","too","under","until","up","very","was","wasn't","we","we'd","we'll","we're","we've","were","weren't","what","what's","when","when's","where","where's","which","while","who","who's","whom","why","why's","with","won't","would","wouldn't","you","you'd","you'll","you're","you've","your","yours","yourself","yourselves"],tipuesearch_replace={words:[{word:"tip",replace_with:"tipue"},{word:"javscript",replace_with:"javascript"},{word:"jqeury",replace_with:"jquery"}]},tipuesearch_weight={weight:[{url:"http://www.tipue.com",score:60},{url:"http://www.tipue.com/search",score:60},{url:"http://www.tipue.com/tipr",score:30},{url:"http://www.tipue.com/support",score:20}]},tipuesearch_stem={words:[{word:"e-mail",stem:"email"},{word:"javascript",stem:"jquery"},{word:"javascript",stem:"js"}]},tipuesearch_related={Related:[{search:"tipue",related:"Search",include:1},{search:"tipue",related:"jQuery"},{search:"tipue",related:"Blog"},{search:"tipue",related:"Support"},{search:"tipue search",related:"Demo",include:1},{search:"tipue search",related:"Support"}]},tipuesearch_string_1="No title",tipuesearch_string_2="Showing results for",tipuesearch_string_3="Search instead for",tipuesearch_string_4="1 result",tipuesearch_string_5="results",tipuesearch_string_6="<",tipuesearch_string_7=">",tipuesearch_string_8="Nothing found.",tipuesearch_string_9="Common words are largely ignored.",tipuesearch_string_10="Related",tipuesearch_string_11="Search should be one character or more.",tipuesearch_string_12="Search should be",tipuesearch_string_13="characters or more.",tipuesearch_string_14="seconds",tipuesearch_string_15="Open Image",tipuesearch_string_16="Goto Page",startTimer=(new Date).getTime();

View file

@ -4,7 +4,7 @@
{% block content %} {% block content %}
<article class="single"> <article class="single">
<header> <header>
<h1>{{ _('Archives') }}</h1> <h1 id="archives">{{ _('Archives') }}</h1>
</header> </header>
<div> <div>
<dl> <dl>

View file

@ -5,6 +5,13 @@
<meta name="description" content="{{ article.summary|striptags|escape }}" /> <meta name="description" content="{{ article.summary|striptags|escape }}" />
<meta name="keywords" content="{{ article.tags|join(', ')|escape }}"> <meta name="keywords" content="{{ article.tags|join(', ')|escape }}">
{% if article.translations -%}
<link rel="alternate" href="{{ SITEURL }}/{{ article.url }}" hreflang="{{ article.lang }}" />
{% for a in article.translations %}
<link rel="alternate" href="{{ SITEURL }}/{{ a.url }}" hreflang="{{ a.lang }}" />
{% endfor %}
{% endif %}
{% include "partial/og_article.html" %} {% include "partial/og_article.html" %}
{% endblock %} {% endblock %}

View file

@ -5,7 +5,7 @@
{% block content %} {% block content %}
<article class="single"> <article class="single">
<header> <header>
<h1>{{ _('Authors') }}</h1> <h1 id="authors">{{ _('Authors') }}</h1>
</header> </header>
<div> <div>
<ul class="list"> <ul class="list">

View file

@ -28,6 +28,14 @@
<link rel="stylesheet" type="text/css" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/stylesheet/style.min.css"> <link rel="stylesheet" type="text/css" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/stylesheet/style.min.css">
{% endif %} {% endif %}
{% if USE_TIPUE_SEARCH %}
<script src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/tipuesearch/jquery.min.js"></script>
<script src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/tipuesearch/tipuesearch.min.js"></script>
<script src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/tipuesearch/tipuesearch.min.js"></script>
<script src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/tipuesearch/tipuesearch_set.min.js"></script>
<link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/tipuesearch/tipuesearch.min.css" />
{% endif %}
<link rel="stylesheet" type="text/css" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/pygments/{{ PYGMENTS_STYLE|default('github') }}.min.css"> <link rel="stylesheet" type="text/css" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/pygments/{{ PYGMENTS_STYLE|default('github') }}.min.css">
<link rel="stylesheet" type="text/css" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/font-awesome/css/fontawesome.css"> <link rel="stylesheet" type="text/css" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/font-awesome/css/brands.css"> <link rel="stylesheet" type="text/css" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/font-awesome/css/brands.css">
@ -103,21 +111,38 @@
<h1><a href="{{ SITEURL }}">{{ SITETITLE }}</a></h1> <h1><a href="{{ SITEURL }}">{{ SITETITLE }}</a></h1>
{% if SITESUBTITLE %}<p>{{ SITESUBTITLE }}</p>{% endif %} {% if SITESUBTITLE %}<p>{{ SITESUBTITLE }}</p>{% endif %}
{% if USE_TIPUE_SEARCH %}
<form class="navbar-search" action="/search.html" role="search">
<input type="text" name="q" id="tipue_search_input" placeholder="Search..">
</form>
{% endif %}
{% if pages or LINKS %} {% if pages or LINKS %}
<nav> <nav>
<ul class="list"> <ul class="list">
{# Open links in new window depending on the LINKS_IN_NEW_TAB setting #}
{% macro get_target(link) -%}
{%- if LINKS_IN_NEW_TAB is not defined -%}
_blank
{%- elif LINKS_IN_NEW_TAB in ('all', none, true) -%}
_blank
{%- elif LINKS_IN_NEW_TAB == "external" and not link.startswith("/") and not link.startswith(SITEURL) -%}
_blank
{%- else -%}
_self
{%- endif -%}
{%- endmacro %}
{% if PAGES_SORT_ATTRIBUTE -%} {% if PAGES_SORT_ATTRIBUTE -%}
{% set pages = pages|sort(attribute=PAGES_SORT_ATTRIBUTE) %} {% set pages = pages|sort(attribute=PAGES_SORT_ATTRIBUTE) %}
{%- endif %} {%- endif %}
{% if DISPLAY_PAGES_ON_MENU %} {% if DISPLAY_PAGES_ON_MENU %}
{% for page in pages %} {% for page in pages %}
<li><a href="{{ SITEURL }}/{{ page.url }}{% if not DISABLE_URL_HASH %}#{{ page.slug }}{% endif %}">{{ page.title }}</a></li> <li><a target="{{ get_target(SITEURL) }}" href="{{ SITEURL }}/{{ page.url }}{% if not DISABLE_URL_HASH %}#{{ page.slug }}{% endif %}">{{ page.title }}</a></li>
{% endfor %} {% endfor %}
{% endif %} {% endif %}
{% for name, link in LINKS %} {% for name, link in LINKS %}
<li><a href="{{ link }}" target="_blank">{{ name }}</a></li> <li><a target="{{ get_target(link) }}" href="{{ link }}" >{{ name }}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>
</nav> </nav>
@ -205,5 +230,13 @@
{% if GITHUB_CORNER_URL %} {% if GITHUB_CORNER_URL %}
{% include 'partial/github.html' %} {% include 'partial/github.html' %}
{% endif %} {% endif %}
{% if USE_TIPUE_SEARCH %}
<script>
$(document).ready(function() {
$('#tipue_search_input').tipuesearch();
});
</script>
{% endif %}
</body> </body>
</html> </html>

View file

@ -5,7 +5,7 @@
{% block content %} {% block content %}
<article class="single"> <article class="single">
<header> <header>
<h1>{{ _('Categories') }}</h1> <h1 id="categories">{{ _('Categories') }}</h1>
</header> </header>
<div> <div>
<ul class="list"> <ul class="list">

View file

@ -1,5 +1,16 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block meta %}
{{ super() }}
{% if page.translations -%}
<link rel="alternate" href="{{ SITEURL }}/{{ page.url }}" hreflang="{{ page.lang }}" />
{% for p in page.translations %}
<link rel="alternate" href="{{ SITEURL }}/{{ p.url }}" hreflang="{{ p.lang }}" />
{% endfor %}
{% endif %}
{% endblock %}
{% block title %} &ndash; {{ page.title }}{% endblock %} {% block title %} &ndash; {{ page.title }}{% endblock %}
{% block content %} {% block content %}

View file

@ -1,4 +1,3 @@
<p>{{ _('Powered by %(pelican_url)s - %(flex_url)s theme by %(alexandrevicenzi_url)s', <p>{{ _('Built with %(pelican_url)s using %(flex_url)s theme',
pelican_url='<a href="http://getpelican.com" target="_blank">Pelican</a>', pelican_url='<a href="http://getpelican.com" target="_blank">Pelican</a>',
flex_url='<a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a>'|safe, flex_url='<a href="http://bit.ly/flex-pelican" target="_blank">Flex</a>'|safe) }}</p>
alexandrevicenzi_url='<a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a>'|safe) }}</p>

View file

@ -4,7 +4,7 @@
{% block content %} {% block content %}
<article class="single"> <article class="single">
<header> <header>
<h1>{{ _('Archives') }}</h1> <h1 id="archives">{{ _('Archives') }}</h1>
</header> </header>
<div> <div>
<dl> <dl>

19
templates/search.html Normal file
View file

@ -0,0 +1,19 @@
{% if USE_TIPUE_SEARCH %} {% extends 'base.html' %} {% block title %} {{ _('Search') }} - {{ SITENAME|striptags }} {% endblock title %} {% block content %}
<script>
$(document).ready(function() {
$('#tipue_search_input').tipuesearch({
'show': 10,
'mode': 'json',
'contentLocation': '{{ SITEURL }}/tipuesearch_content.js'
});
});
</script>
<article class="single">
<header>
<h1 id="categories">{{ _('Search Results') }}</h1>
</header>
<div id="tipue_search_content"></div>
</article>
{% endblock content %} {% endif %}

View file

@ -5,7 +5,7 @@
{% block content %} {% block content %}
<article class="single"> <article class="single">
<header> <header>
<h1>{{ _('Tags') }}</h1> <h1 id="tags">{{ _('Tags') }}</h1>
</header> </header>
<div> <div>
<ul class="list"> <ul class="list">

View file

@ -1,8 +0,0 @@
Title: Some Article 10
Date: 2016-01-01 12:00
Modified: 2016-01-01 12:00
Tags: article, pelican, python
Slug: some-article-10
Summary: I'm a summary
This is an article with category dev.

View file

@ -1,15 +0,0 @@
Title: Some Article 2
Date: 2016-01-01 12:00
Modified: 2016-01-01 12:00
Tags: article, pelican, python
Slug: some-article-2
This is an article with category dev.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc hendrerit porttitor ultricies. Ut convallis, dui sed ultricies luctus, ligula urna varius magna, ut interdum odio ex commodo risus. Etiam pretium ipsum ac felis elementum, nec egestas lorem finibus. Nulla sed accumsan risus, a consequat libero. Duis libero nisi, convallis pretium aliquet tincidunt, congue id massa. Mauris ornare efficitur arcu vel accumsan. Interdum et malesuada fames ac ante ipsum primis in faucibus. Fusce volutpat enim sed erat pretium laoreet. Donec tellus diam, eleifend a metus sed, scelerisque finibus erat. Aliquam quis volutpat ex. Etiam eu malesuada nisl. Donec rutrum finibus justo, eu lobortis dui molestie aliquam. Quisque accumsan vitae tortor eu fermentum. Pellentesque consequat quam ac odio euismod, eget imperdiet mi condimentum. Nulla ullamcorper facilisis enim ac sagittis. Nulla placerat nibh orci.
Suspendisse tincidunt ullamcorper est vel scelerisque. Mauris vulputate velit eros, non blandit enim euismod ac. Donec urna dui, fringilla id accumsan vitae, egestas id dolor. Nunc suscipit sit amet turpis eget viverra. Quisque non elementum arcu, non viverra nisl. Nullam accumsan tempus suscipit. Nullam eget aliquet arcu, ac maximus massa. Suspendisse dictum neque a dignissim mollis. Fusce laoreet maximus tempor. Etiam a luctus leo. Donec dictum massa et volutpat convallis. Nullam in mauris vel augue aliquam malesuada. In nec est libero. Sed velit lectus, gravida sed ligula id, condimentum ultrices ex.
Pellentesque malesuada nibh eu turpis imperdiet, a placerat libero efficitur. Donec sit amet nisl dictum, semper dolor vitae, cursus neque. Aenean aliquet felis ipsum, et ultrices urna pretium ut. Etiam posuere, quam in interdum bibendum, nisl enim semper lectus, quis sodales quam nunc vel quam. Praesent lacinia facilisis nunc ut dictum. Vestibulum lacus dui, ullamcorper sed lectus sit amet, hendrerit ultrices libero. Integer facilisis blandit suscipit. Duis interdum vel velit vestibulum molestie. Proin iaculis erat in tincidunt tempor. Nulla imperdiet hendrerit eros, ut congue nunc mattis id. Duis sit amet arcu vel nibh fermentum efficitur. Nunc posuere felis in magna convallis malesuada. Nullam tincidunt sed leo et facilisis. Vivamus vel metus vitae massa feugiat luctus in eget diam. Pellentesque euismod cursus ex.
Curabitur rutrum iaculis ante, quis rutrum lacus feugiat id. Sed pellentesque, leo sit amet maximus porttitor, mauris nisl tincidunt mi, ut vestibulum diam urna a libero. Aliquam fermentum orci ac lacus laoreet fringilla eu eu dui. Phasellus sagittis ullamcorper sodales. Nunc dui tortor, consectetur in mauris et, vulputate finibus mi. Aenean nec justo non ipsum lobortis tristique vel eget sapien. Nunc porta quam dolor, sed ultricies est vulputate porttitor. In varius, eros aliquam pulvinar tincidunt, turpis justo pretium ligula, quis vulputate justo enim ac nulla. Vestibulum dapibus dapibus urna eu ultricies. Nulla sed elit et est dapibus consectetur sit amet sit amet ex. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Etiam ultrices bibendum nisi at mollis. Vivamus rutrum, nisl vel efficitur hendrerit, lorem urna pulvinar augue, ac feugiat ligula nunc in sapien. Aliquam interdum tempor congue.

View file

@ -1,7 +0,0 @@
Title: Some Article 3
Date: 2016-01-01 12:00
Modified: 2016-01-01 12:00
Tags: article, pelican, python
Slug: some-article-3
This is an article with category dev.

View file

@ -1,7 +0,0 @@
Title: Some Article 4
Date: 2016-01-01 12:00
Modified: 2016-01-01 12:00
Tags: article, pelican, python
Slug: some-article-4
This is an article with category dev.

View file

@ -1,7 +0,0 @@
Title: Some Article 5
Date: 2016-03-01 12:00
Modified: 2016-03-01 12:00
Tags: article, pelican, python
Slug: some-article-5
This is an article with category dev.

View file

@ -1,7 +0,0 @@
Title: Some Article 6
Date: 2016-03-01 12:00
Modified: 2016-03-01 12:00
Tags: article, pelican, python
Slug: some-article-6
This is an article with category dev.

View file

@ -1,7 +0,0 @@
Title: Some Article 7
Date: 2016-04-01 12:00
Modified: 2016-04-01 12:00
Tags: article, pelican
Slug: some-article-7
This is an article with category dev.

View file

@ -1,7 +0,0 @@
Title: Some Article 8
Date: 2016-01-01 12:00
Modified: 2016-01-01 12:00
Tags: article, pelican, python
Slug: some-article-8
This is an article with category dev.

View file

@ -1,7 +0,0 @@
Title: Some Article 9
Date: 2016-01-01 08:00
Modified: 2016-01-01 08:00
Tags: article, pelican, python
Slug: some-article-9
This is an article with category dev.

View file

@ -1,17 +0,0 @@
Title: Some Article
Date: 2016-01-01 12:00
Modified: 2016-01-01 12:00
Tags: article, pelican, python
Slug: some-article
This is an article with category dev.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer auctor condimentum libero ac eleifend. Aenean porta luctus turpis quis cursus. Quisque suscipit tempus dignissim. Donec quis massa sed sapien porttitor rutrum et et est. Suspendisse potenti. Nam faucibus lacus lacinia, tincidunt risus fermentum, pellentesque lectus. Mauris et dui elit.
Curabitur id lacus et turpis finibus sagittis. Donec auctor mauris et diam mattis dictum. Vestibulum massa nulla, interdum at pretium id, vestibulum vitae lacus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Donec pharetra in lorem eu aliquam. Proin id viverra ante. Phasellus maximus magna mollis, pulvinar arcu posuere, lobortis tortor. Cras ac massa quis nibh maximus auctor. In nec justo porta, rutrum diam vitae, vulputate diam. Suspendisse facilisis mauris et odio congue rhoncus. Quisque vitae quam eros. Donec id auctor odio. Sed auctor quam sed magna pellentesque, id dapibus metus maximus. Suspendisse potenti.
Phasellus commodo diam ut felis rhoncus ultrices. Morbi vel lectus vel mauris rutrum fermentum at in eros. Vivamus eleifend tincidunt massa sit amet elementum. In in tempor est. Praesent mattis sapien in lacinia euismod. Nulla et convallis quam. Donec pellentesque rutrum neque at efficitur. In fringilla nunc nec commodo sollicitudin. Fusce vel tortor nec justo dignissim posuere. Praesent et leo ac leo pulvinar fringilla vulputate porta nibh.
Morbi justo risus, lobortis id volutpat nec, lobortis ac elit. Vestibulum volutpat condimentum metus, at feugiat risus egestas id. Nunc facilisis at augue at ultricies. Sed et turpis in turpis rutrum posuere ac vel massa. Maecenas tortor ante, tristique sed velit non, porta fringilla nunc. Aliquam sit amet est vitae tortor feugiat sollicitudin. In vestibulum vitae risus eget placerat. Praesent a enim viverra, efficitur dui in, feugiat lectus.
Phasellus eu eleifend lacus, ut ultrices diam. Aliquam sed eros aliquet, viverra dolor sed, congue sapien. Aliquam malesuada at purus et dictum. Etiam tincidunt egestas leo, id rhoncus ex maximus non. Quisque interdum diam vitae turpis dapibus vulputate. Sed at tristique lacus, non pellentesque nibh. Vestibulum tempus ultrices tristique. Sed fermentum ac enim quis gravida. Mauris pulvinar arcu orci. Pellentesque feugiat leo nibh, eu tempus eros hendrerit egestas. Nulla nunc tellus, commodo eu tincidunt accumsan, consequat porta mi. Mauris vitae varius metus, eu pretium eros. Praesent lobortis nisi a nunc elementum semper.

View file

@ -1,5 +0,0 @@
Title: About
Date: 2016-01-01 12:00
Modified: 2016-01-01 12:00
This is an about page.

Some files were not shown because too many files have changed in this diff Show more