Update demo.

This commit is contained in:
Alexandre Vicenzi 2019-10-19 22:47:25 +02:00
parent 7a35b60aff
commit fd30f0f057
43 changed files with 4347 additions and 925 deletions

74
docs/Makefile Normal file
View file

@ -0,0 +1,74 @@
PY?=python3
PELICAN?=pelican
PELICANOPTS=
BASEDIR=$(CURDIR)
INPUTDIR=$(BASEDIR)/content
OUTPUTDIR=$(BASEDIR)/output
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

@ -10,28 +10,21 @@
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet/less" type="text/css" href="http://localhost:8000/theme/stylesheet/style.less">
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.1/less.min.js" type="text/javascript"></script>
<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://localhost:8000/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://localhost:8000/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://localhost:8000/static/custom.css" rel="stylesheet">
<link href="http://flex.alxd.me/blog/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom"> <link href="http://localhost:8000/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom">
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55543164-6', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<!-- Chrome, Firefox OS and Opera --> <!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#333333"> <meta name="theme-color" content="#333333">
<!-- Windows Phone --> <!-- Windows Phone -->
@ -49,7 +42,7 @@
<meta property="og:title" content="Flex"/> <meta property="og:title" content="Flex"/>
<meta property="og:description" content="Flex - The minimalist Pelican theme."/> <meta property="og:description" content="Flex - The minimalist Pelican theme."/>
<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://localhost:8000"/>
<title>Flex &ndash; Archives <title>Flex &ndash; Archives
</title> </title>
@ -65,23 +58,31 @@
<body> <body>
<aside> <aside>
<div> <div>
<a href="http://flex.alxd.me/blog"> <a href="http://localhost:8000">
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex"> <img src="http://localhost:8000/theme/img/profile.png" alt="Flex" title="Flex">
</a> </a>
<h1><a href="http://flex.alxd.me/blog">Flex</a></h1> <h1><a href="http://localhost:8000">Flex</a></h1>
<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://localhost:8000/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a href="http://localhost:8000/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>
@ -97,14 +98,14 @@
<main> <main>
<nav> <nav>
<a href="http://flex.alxd.me/blog"> Home <a href="http://localhost:8000"> Home
</a> </a>
<a href="/archives.html">Archives</a> <a href="/archives.html">Archives</a>
<a href="/categories.html">Categories</a> <a href="/categories.html">Categories</a>
<a href="/tags.html">Tags</a> <a href="/tags.html">Tags</a>
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml"> Atom <a href="http://localhost:8000/feeds/all.atom.xml"> Atom
</a> </a>
</nav> </nav>
@ -117,28 +118,28 @@
<div> <div>
<dl> <dl>
<dt>June 24, 2018</dt> <dt>June 24, 2018</dt>
<dd><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-2.html">Flex 2.2.0</a></dd> <dd><a href="http://localhost:8000/flex-pelican-theme-update-2-2.html">Flex 2.2.0</a></dd>
<dt>November 16, 2016</dt> <dt>November 16, 2016</dt>
<dd><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html">Flex 2.1.0</a></dd> <dd><a href="http://localhost:8000/flex-pelican-theme-update-2-1.html">Flex 2.1.0</a></dd>
<dt>September 13, 2016</dt> <dt>September 13, 2016</dt>
<dd><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html">Flex 2.0</a></dd> <dd><a href="http://localhost:8000/flex-pelican-theme-update-2-0.html">Flex 2.0</a></dd>
<dt>June 10, 2016</dt> <dt>June 10, 2016</dt>
<dd><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html">Flex 1.2.0</a></dd> <dd><a href="http://localhost:8000/flex-pelican-theme-update-1-2-0.html">Flex 1.2.0</a></dd>
<dt>February 27, 2016</dt> <dt>February 27, 2016</dt>
<dd><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1-1.html">Flex 1.1.1</a></dd> <dd><a href="http://localhost:8000/flex-pelican-theme-update-1-1-1.html">Flex 1.1.1</a></dd>
<dt>October 07, 2015</dt> <dt>October 07, 2015</dt>
<dd><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html">Flex 1.1.0</a></dd> <dd><a href="http://localhost:8000/flex-pelican-theme-update-1-1.html">Flex 1.1.0</a></dd>
<dt>July 22, 2015</dt> <dt>July 22, 2015</dt>
<dd><a href="http://flex.alxd.me/blog/flex-pelican-theme.html">Flex: Responsive Pelican theme</a></dd> <dd><a href="http://localhost:8000/flex-pelican-theme.html">Flex: Responsive Pelican theme</a></dd>
</dl> </dl>
</div> </div>
</article> </article>
<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/"
@ -162,7 +163,7 @@
"@context" : "http://schema.org", "@context" : "http://schema.org",
"@type" : "Blog", "@type" : "Blog",
"name": " Flex ", "name": " Flex ",
"url" : "http://flex.alxd.me/blog", "url" : "http://localhost:8000",
"image": "", "image": "",
"description": "Flex - The minimalist Pelican theme." "description": "Flex - The minimalist Pelican theme."
} }

View file

@ -10,28 +10,21 @@
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet/less" type="text/css" href="http://localhost:8000/theme/stylesheet/style.less">
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.1/less.min.js" type="text/javascript"></script>
<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://localhost:8000/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://localhost:8000/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://localhost:8000/static/custom.css" rel="stylesheet">
<link href="http://flex.alxd.me/blog/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom"> <link href="http://localhost:8000/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom">
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55543164-6', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<!-- Chrome, Firefox OS and Opera --> <!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#333333"> <meta name="theme-color" content="#333333">
<!-- Windows Phone --> <!-- Windows Phone -->
@ -49,7 +42,7 @@
<meta property="og:title" content="Flex"/> <meta property="og:title" content="Flex"/>
<meta property="og:description" content="Flex - The minimalist Pelican theme."/> <meta property="og:description" content="Flex - The minimalist Pelican theme."/>
<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://localhost:8000"/>
<title>Flex &ndash; Posts by Alexandre Vicenzi <title>Flex &ndash; Posts by Alexandre Vicenzi
:</title> :</title>
@ -65,23 +58,31 @@
<body> <body>
<aside> <aside>
<div> <div>
<a href="http://flex.alxd.me/blog"> <a href="http://localhost:8000">
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex"> <img src="http://localhost:8000/theme/img/profile.png" alt="Flex" title="Flex">
</a> </a>
<h1><a href="http://flex.alxd.me/blog">Flex</a></h1> <h1><a href="http://localhost:8000">Flex</a></h1>
<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://localhost:8000/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a href="http://localhost:8000/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>
@ -97,14 +98,14 @@
<main> <main>
<nav> <nav>
<a href="http://flex.alxd.me/blog"> Home <a href="http://localhost:8000"> Home
</a> </a>
<a href="/archives.html">Archives</a> <a href="/archives.html">Archives</a>
<a href="/categories.html">Categories</a> <a href="/categories.html">Categories</a>
<a href="/tags.html">Tags</a> <a href="/tags.html">Tags</a>
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml"> Atom <a href="http://localhost:8000/feeds/all.atom.xml"> Atom
</a> </a>
</nav> </nav>
@ -113,9 +114,9 @@
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-2.html#flex-pelican-theme-update-2-2">Flex 2.2.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-2-2.html#flex-pelican-theme-update-2-2">Flex 2.2.0</a></h2>
<p> <p>
Posted on June 24, 2018 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on June 24, 2018 in <a href="http://localhost:8000/category/news.html">News</a>
@ -126,17 +127,14 @@
<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>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1">Flex 2.1.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1">Flex 2.1.0</a></h2>
<p> <p>
Posted on November 16, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on November 16, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -146,17 +144,17 @@
<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://localhost:8000/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0">Flex 2.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0">Flex 2.0</a></h2>
<p> <p>
Posted on September 13, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on September 13, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -170,17 +168,17 @@ 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://localhost:8000/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0">Flex 1.2.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0">Flex 1.2.0</a></h2>
<p> <p>
Posted on June 10, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on June 10, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -194,17 +192,17 @@ 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://localhost:8000/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1-1.html#flex-pelican-theme-update-1-1-1">Flex 1.1.1</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-1-1-1.html#flex-pelican-theme-update-1-1-1">Flex 1.1.1</a></h2>
<p> <p>
Posted on February 27, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on February 27, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -218,17 +216,14 @@ 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>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1">Flex 1.1.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1">Flex 1.1.0</a></h2>
<p> <p>
Posted on October 07, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on October 07, 2015 in <a href="http://localhost:8000/category/news.html">News</a>
@ -237,17 +232,17 @@ 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://localhost:8000/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme">Flex: Responsive Pelican theme</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme.html#flex-pelican-theme">Flex: Responsive Pelican theme</a></h2>
<p> <p>
Posted on July 22, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on July 22, 2015 in <a href="http://localhost:8000/category/news.html">News</a>
@ -256,8 +251,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://localhost:8000/flex-pelican-theme.html#flex-pelican-theme"> Continue reading
</a> </a>
</div> </div>
</article> </article>
@ -277,9 +272,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/"
@ -303,7 +298,7 @@ If …</p>
"@context" : "http://schema.org", "@context" : "http://schema.org",
"@type" : "Blog", "@type" : "Blog",
"name": " Flex ", "name": " Flex ",
"url" : "http://flex.alxd.me/blog", "url" : "http://localhost:8000",
"image": "", "image": "",
"description": "Flex - The minimalist Pelican theme." "description": "Flex - The minimalist Pelican theme."
} }

View file

@ -10,28 +10,21 @@
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet/less" type="text/css" href="http://localhost:8000/theme/stylesheet/style.less">
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.1/less.min.js" type="text/javascript"></script>
<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://localhost:8000/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://localhost:8000/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://localhost:8000/static/custom.css" rel="stylesheet">
<link href="http://flex.alxd.me/blog/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom"> <link href="http://localhost:8000/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom">
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55543164-6', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<!-- Chrome, Firefox OS and Opera --> <!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#333333"> <meta name="theme-color" content="#333333">
<!-- Windows Phone --> <!-- Windows Phone -->
@ -49,7 +42,7 @@
<meta property="og:title" content="Flex"/> <meta property="og:title" content="Flex"/>
<meta property="og:description" content="Flex - The minimalist Pelican theme."/> <meta property="og:description" content="Flex - The minimalist Pelican theme."/>
<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://localhost:8000"/>
<title>Flex &ndash; Authors <title>Flex &ndash; Authors
</title> </title>
@ -65,23 +58,31 @@
<body> <body>
<aside> <aside>
<div> <div>
<a href="http://flex.alxd.me/blog"> <a href="http://localhost:8000">
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex"> <img src="http://localhost:8000/theme/img/profile.png" alt="Flex" title="Flex">
</a> </a>
<h1><a href="http://flex.alxd.me/blog">Flex</a></h1> <h1><a href="http://localhost:8000">Flex</a></h1>
<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://localhost:8000/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a href="http://localhost:8000/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>
@ -97,14 +98,14 @@
<main> <main>
<nav> <nav>
<a href="http://flex.alxd.me/blog"> Home <a href="http://localhost:8000"> Home
</a> </a>
<a href="/archives.html">Archives</a> <a href="/archives.html">Archives</a>
<a href="/categories.html">Categories</a> <a href="/categories.html">Categories</a>
<a href="/tags.html">Tags</a> <a href="/tags.html">Tags</a>
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml"> Atom <a href="http://localhost:8000/feeds/all.atom.xml"> Atom
</a> </a>
</nav> </nav>
@ -116,16 +117,16 @@
</header> </header>
<div> <div>
<ul class="list"> <ul class="list">
<li><a href="http://flex.alxd.me/blog/author/alexandre-vicenzi.html">Alexandre Vicenzi</a> (7)</li> <li><a href="http://localhost:8000/author/alexandre-vicenzi.html">Alexandre Vicenzi</a> (7)</li>
</ul> </ul>
</div> </div>
</article> </article>
<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/"
@ -149,7 +150,7 @@
"@context" : "http://schema.org", "@context" : "http://schema.org",
"@type" : "Blog", "@type" : "Blog",
"name": " Flex ", "name": " Flex ",
"url" : "http://flex.alxd.me/blog", "url" : "http://localhost:8000",
"image": "", "image": "",
"description": "Flex - The minimalist Pelican theme." "description": "Flex - The minimalist Pelican theme."
} }

View file

@ -10,28 +10,21 @@
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet/less" type="text/css" href="http://localhost:8000/theme/stylesheet/style.less">
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.1/less.min.js" type="text/javascript"></script>
<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://localhost:8000/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://localhost:8000/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://localhost:8000/static/custom.css" rel="stylesheet">
<link href="http://flex.alxd.me/blog/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom"> <link href="http://localhost:8000/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom">
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55543164-6', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<!-- Chrome, Firefox OS and Opera --> <!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#333333"> <meta name="theme-color" content="#333333">
<!-- Windows Phone --> <!-- Windows Phone -->
@ -49,7 +42,7 @@
<meta property="og:title" content="Flex"/> <meta property="og:title" content="Flex"/>
<meta property="og:description" content="Flex - The minimalist Pelican theme."/> <meta property="og:description" content="Flex - The minimalist Pelican theme."/>
<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://localhost:8000"/>
<title>Flex &ndash; Categories <title>Flex &ndash; Categories
</title> </title>
@ -65,23 +58,31 @@
<body> <body>
<aside> <aside>
<div> <div>
<a href="http://flex.alxd.me/blog"> <a href="http://localhost:8000">
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex"> <img src="http://localhost:8000/theme/img/profile.png" alt="Flex" title="Flex">
</a> </a>
<h1><a href="http://flex.alxd.me/blog">Flex</a></h1> <h1><a href="http://localhost:8000">Flex</a></h1>
<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://localhost:8000/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a href="http://localhost:8000/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>
@ -97,35 +98,35 @@
<main> <main>
<nav> <nav>
<a href="http://flex.alxd.me/blog"> Home <a href="http://localhost:8000"> Home
</a> </a>
<a href="/archives.html">Archives</a> <a href="/archives.html">Archives</a>
<a href="/categories.html">Categories</a> <a href="/categories.html">Categories</a>
<a href="/tags.html">Tags</a> <a href="/tags.html">Tags</a>
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml"> Atom <a href="http://localhost:8000/feeds/all.atom.xml"> Atom
</a> </a>
</nav> </nav>
<article class="single"> <article class="single">
<header> <header>
<h1> Categories <h1 id="categories"> Categories
</h1> </h1>
</header> </header>
<div> <div>
<ul class="list"> <ul class="list">
<li><a href="http://flex.alxd.me/blog/category/news.html">News</a> (7)</li> <li><a href="http://localhost:8000/category/news.html">News</a> (7)</li>
</ul> </ul>
</div> </div>
</article> </article>
<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/"
@ -149,7 +150,7 @@
"@context" : "http://schema.org", "@context" : "http://schema.org",
"@type" : "Blog", "@type" : "Blog",
"name": " Flex ", "name": " Flex ",
"url" : "http://flex.alxd.me/blog", "url" : "http://localhost:8000",
"image": "", "image": "",
"description": "Flex - The minimalist Pelican theme." "description": "Flex - The minimalist Pelican theme."
} }

View file

@ -10,28 +10,21 @@
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet/less" type="text/css" href="http://localhost:8000/theme/stylesheet/style.less">
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.1/less.min.js" type="text/javascript"></script>
<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://localhost:8000/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://localhost:8000/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://localhost:8000/static/custom.css" rel="stylesheet">
<link href="http://flex.alxd.me/blog/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom"> <link href="http://localhost:8000/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom">
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55543164-6', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<!-- Chrome, Firefox OS and Opera --> <!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#333333"> <meta name="theme-color" content="#333333">
<!-- Windows Phone --> <!-- Windows Phone -->
@ -49,7 +42,7 @@
<meta property="og:title" content="Flex"/> <meta property="og:title" content="Flex"/>
<meta property="og:description" content="Flex - The minimalist Pelican theme."/> <meta property="og:description" content="Flex - The minimalist Pelican theme."/>
<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://localhost:8000"/>
<title>Flex &ndash; Category News <title>Flex &ndash; Category News
</title> </title>
@ -65,23 +58,31 @@
<body> <body>
<aside> <aside>
<div> <div>
<a href="http://flex.alxd.me/blog"> <a href="http://localhost:8000">
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex"> <img src="http://localhost:8000/theme/img/profile.png" alt="Flex" title="Flex">
</a> </a>
<h1><a href="http://flex.alxd.me/blog">Flex</a></h1> <h1><a href="http://localhost:8000">Flex</a></h1>
<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://localhost:8000/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a href="http://localhost:8000/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>
@ -97,14 +98,14 @@
<main> <main>
<nav> <nav>
<a href="http://flex.alxd.me/blog"> Home <a href="http://localhost:8000"> Home
</a> </a>
<a href="/archives.html">Archives</a> <a href="/archives.html">Archives</a>
<a href="/categories.html">Categories</a> <a href="/categories.html">Categories</a>
<a href="/tags.html">Tags</a> <a href="/tags.html">Tags</a>
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml"> Atom <a href="http://localhost:8000/feeds/all.atom.xml"> Atom
</a> </a>
</nav> </nav>
@ -113,9 +114,9 @@
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-2.html#flex-pelican-theme-update-2-2">Flex 2.2.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-2-2.html#flex-pelican-theme-update-2-2">Flex 2.2.0</a></h2>
<p> <p>
Posted on June 24, 2018 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on June 24, 2018 in <a href="http://localhost:8000/category/news.html">News</a>
@ -126,17 +127,14 @@
<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>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1">Flex 2.1.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1">Flex 2.1.0</a></h2>
<p> <p>
Posted on November 16, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on November 16, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -146,17 +144,17 @@
<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://localhost:8000/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0">Flex 2.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0">Flex 2.0</a></h2>
<p> <p>
Posted on September 13, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on September 13, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -170,17 +168,17 @@ 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://localhost:8000/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0">Flex 1.2.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0">Flex 1.2.0</a></h2>
<p> <p>
Posted on June 10, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on June 10, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -194,17 +192,17 @@ 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://localhost:8000/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1-1.html#flex-pelican-theme-update-1-1-1">Flex 1.1.1</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-1-1-1.html#flex-pelican-theme-update-1-1-1">Flex 1.1.1</a></h2>
<p> <p>
Posted on February 27, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on February 27, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -218,17 +216,14 @@ 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>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1">Flex 1.1.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1">Flex 1.1.0</a></h2>
<p> <p>
Posted on October 07, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on October 07, 2015 in <a href="http://localhost:8000/category/news.html">News</a>
@ -237,17 +232,17 @@ 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://localhost:8000/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme">Flex: Responsive Pelican theme</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme.html#flex-pelican-theme">Flex: Responsive Pelican theme</a></h2>
<p> <p>
Posted on July 22, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on July 22, 2015 in <a href="http://localhost:8000/category/news.html">News</a>
@ -256,8 +251,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://localhost:8000/flex-pelican-theme.html#flex-pelican-theme"> Continue reading
</a> </a>
</div> </div>
</article> </article>
@ -277,9 +272,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/"
@ -303,7 +298,7 @@ If …</p>
"@context" : "http://schema.org", "@context" : "http://schema.org",
"@type" : "Blog", "@type" : "Blog",
"name": " Flex ", "name": " Flex ",
"url" : "http://flex.alxd.me/blog", "url" : "http://localhost:8000",
"image": "", "image": "",
"description": "Flex - The minimalist Pelican theme." "description": "Flex - The minimalist Pelican theme."
} }

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://localhost:8000/" rel="alternate"></link><link href="http://localhost:8000/feeds/all.atom.xml" rel="self"></link><id>http://localhost:8000/</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://localhost:8000/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:localhost,2018-06-24:/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://localhost:8000/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:localhost,2016-11-16:/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://localhost:8000/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:localhost,2016-09-13:/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://localhost:8000/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:localhost,2016-06-10:/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://localhost:8000/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:localhost,2016-02-27:/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://localhost:8000/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:localhost,2015-10-07:/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://localhost:8000/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:localhost,2015-07-22:/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://localhost:8000/" rel="alternate"></link><link href="http://localhost:8000/feeds/news.atom.xml" rel="self"></link><id>http://localhost:8000/</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://localhost:8000/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:localhost,2018-06-24:/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://localhost:8000/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:localhost,2016-11-16:/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://localhost:8000/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:localhost,2016-09-13:/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://localhost:8000/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:localhost,2016-06-10:/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://localhost:8000/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:localhost,2016-02-27:/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://localhost:8000/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:localhost,2015-10-07:/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://localhost:8000/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:localhost,2015-07-22:/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

@ -10,28 +10,21 @@
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet/less" type="text/css" href="http://localhost:8000/theme/stylesheet/style.less">
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.1/less.min.js" type="text/javascript"></script>
<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://localhost:8000/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://localhost:8000/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://localhost:8000/static/custom.css" rel="stylesheet">
<link href="http://flex.alxd.me/blog/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom"> <link href="http://localhost:8000/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom">
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55543164-6', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<!-- Chrome, Firefox OS and Opera --> <!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#333333"> <meta name="theme-color" content="#333333">
<!-- Windows Phone --> <!-- Windows Phone -->
@ -50,16 +43,16 @@
<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."/>
<meta property="og:locale" content="en_US"/> <meta property="og:locale" content="en_US"/>
<meta property="og:url" content="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1-1.html"/> <meta property="og:url" content="http://localhost:8000/flex-pelican-theme-update-1-1-1.html"/>
<meta property="og:type" content="article"/> <meta property="og:type" content="article"/>
<meta property="article:published_time" content="2016-02-27 08:00:00-05:00"/> <meta property="article:published_time" content="2016-02-27 08:00:00-05:00"/>
<meta property="article:modified_time" content="2016-02-27 08:00:00-05:00"/> <meta property="article:modified_time" content="2016-02-27 08:00:00-05:00"/>
<meta property="article:author" content="http://flex.alxd.me/blog/author/alexandre-vicenzi.html"> <meta property="article:author" content="http://localhost:8000/author/alexandre-vicenzi.html">
<meta property="article:section" content="News"/> <meta property="article:section" content="News"/>
<meta property="article:tag" content="pelican"/> <meta property="article:tag" content="pelican"/>
<meta property="article:tag" content="python"/> <meta property="article:tag" content="python"/>
<meta property="article:tag" content="theme"/> <meta property="article:tag" content="theme"/>
<meta property="og:image" content="http://flex.alxd.me/blog/images/flex-screenshot.png"> <meta property="og:image" content="http://localhost:8000/images/flex-screenshot.png">
<title>Flex &ndash; Flex 1.1.1</title> <title>Flex &ndash; Flex 1.1.1</title>
@ -74,23 +67,31 @@
<body> <body>
<aside> <aside>
<div> <div>
<a href="http://flex.alxd.me/blog"> <a href="http://localhost:8000">
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex"> <img src="http://localhost:8000/theme/img/profile.png" alt="Flex" title="Flex">
</a> </a>
<h1><a href="http://flex.alxd.me/blog">Flex</a></h1> <h1><a href="http://localhost:8000">Flex</a></h1>
<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://localhost:8000/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a href="http://localhost:8000/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>
@ -106,14 +107,14 @@
<main> <main>
<nav> <nav>
<a href="http://flex.alxd.me/blog"> Home <a href="http://localhost:8000"> Home
</a> </a>
<a href="/archives.html">Archives</a> <a href="/archives.html">Archives</a>
<a href="/categories.html">Categories</a> <a href="/categories.html">Categories</a>
<a href="/tags.html">Tags</a> <a href="/tags.html">Tags</a>
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml"> Atom <a href="http://localhost:8000/feeds/all.atom.xml"> Atom
</a> </a>
</nav> </nav>
@ -123,7 +124,7 @@
<h1 id="flex-pelican-theme-update-1-1-1">Flex 1.1.1</h1> <h1 id="flex-pelican-theme-update-1-1-1">Flex 1.1.1</h1>
<p> <p>
Posted on February 27, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on February 27, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
</p> </p>
@ -141,9 +142,9 @@
</div> </div>
<div class="tag-cloud"> <div class="tag-cloud">
<p> <p>
<a href="http://flex.alxd.me/blog/tag/pelican.html">pelican</a> <a href="http://localhost:8000/tag/pelican.html">pelican</a>
<a href="http://flex.alxd.me/blog/tag/python.html">python</a> <a href="http://localhost:8000/tag/python.html">python</a>
<a href="http://flex.alxd.me/blog/tag/theme.html">theme</a> <a href="http://localhost:8000/tag/theme.html">theme</a>
</p> </p>
</div> </div>
@ -185,9 +186,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/"
@ -211,7 +212,7 @@
"@context" : "http://schema.org", "@context" : "http://schema.org",
"@type" : "Blog", "@type" : "Blog",
"name": " Flex ", "name": " Flex ",
"url" : "http://flex.alxd.me/blog", "url" : "http://localhost:8000",
"image": "", "image": "",
"description": "Flex - The minimalist Pelican theme." "description": "Flex - The minimalist Pelican theme."
} }

View file

@ -10,28 +10,21 @@
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet/less" type="text/css" href="http://localhost:8000/theme/stylesheet/style.less">
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.1/less.min.js" type="text/javascript"></script>
<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://localhost:8000/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://localhost:8000/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://localhost:8000/static/custom.css" rel="stylesheet">
<link href="http://flex.alxd.me/blog/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom"> <link href="http://localhost:8000/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom">
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55543164-6', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<!-- Chrome, Firefox OS and Opera --> <!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#333333"> <meta name="theme-color" content="#333333">
<!-- Windows Phone --> <!-- Windows Phone -->
@ -50,16 +43,16 @@
<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 …"/>
<meta property="og:locale" content="en_US"/> <meta property="og:locale" content="en_US"/>
<meta property="og:url" content="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html"/> <meta property="og:url" content="http://localhost:8000/flex-pelican-theme-update-1-1.html"/>
<meta property="og:type" content="article"/> <meta property="og:type" content="article"/>
<meta property="article:published_time" content="2015-10-07 08:00:00-04:00"/> <meta property="article:published_time" content="2015-10-07 08:00:00-04:00"/>
<meta property="article:modified_time" content="2015-10-07 08:00:00-04:00"/> <meta property="article:modified_time" content="2015-10-07 08:00:00-04:00"/>
<meta property="article:author" content="http://flex.alxd.me/blog/author/alexandre-vicenzi.html"> <meta property="article:author" content="http://localhost:8000/author/alexandre-vicenzi.html">
<meta property="article:section" content="News"/> <meta property="article:section" content="News"/>
<meta property="article:tag" content="pelican"/> <meta property="article:tag" content="pelican"/>
<meta property="article:tag" content="python"/> <meta property="article:tag" content="python"/>
<meta property="article:tag" content="theme"/> <meta property="article:tag" content="theme"/>
<meta property="og:image" content="http://flex.alxd.me/blog/images/flex-screenshot.png"> <meta property="og:image" content="http://localhost:8000/images/flex-screenshot.png">
<title>Flex &ndash; Flex 1.1.0</title> <title>Flex &ndash; Flex 1.1.0</title>
@ -74,23 +67,31 @@
<body> <body>
<aside> <aside>
<div> <div>
<a href="http://flex.alxd.me/blog"> <a href="http://localhost:8000">
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex"> <img src="http://localhost:8000/theme/img/profile.png" alt="Flex" title="Flex">
</a> </a>
<h1><a href="http://flex.alxd.me/blog">Flex</a></h1> <h1><a href="http://localhost:8000">Flex</a></h1>
<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://localhost:8000/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a href="http://localhost:8000/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>
@ -106,14 +107,14 @@
<main> <main>
<nav> <nav>
<a href="http://flex.alxd.me/blog"> Home <a href="http://localhost:8000"> Home
</a> </a>
<a href="/archives.html">Archives</a> <a href="/archives.html">Archives</a>
<a href="/categories.html">Categories</a> <a href="/categories.html">Categories</a>
<a href="/tags.html">Tags</a> <a href="/tags.html">Tags</a>
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml"> Atom <a href="http://localhost:8000/feeds/all.atom.xml"> Atom
</a> </a>
</nav> </nav>
@ -123,7 +124,7 @@
<h1 id="flex-pelican-theme-update-1-1">Flex 1.1.0</h1> <h1 id="flex-pelican-theme-update-1-1">Flex 1.1.0</h1>
<p> <p>
Posted on October 07, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on October 07, 2015 in <a href="http://localhost:8000/category/news.html">News</a>
</p> </p>
@ -146,9 +147,9 @@
</div> </div>
<div class="tag-cloud"> <div class="tag-cloud">
<p> <p>
<a href="http://flex.alxd.me/blog/tag/pelican.html">pelican</a> <a href="http://localhost:8000/tag/pelican.html">pelican</a>
<a href="http://flex.alxd.me/blog/tag/python.html">python</a> <a href="http://localhost:8000/tag/python.html">python</a>
<a href="http://flex.alxd.me/blog/tag/theme.html">theme</a> <a href="http://localhost:8000/tag/theme.html">theme</a>
</p> </p>
</div> </div>
@ -190,9 +191,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/"
@ -216,7 +217,7 @@
"@context" : "http://schema.org", "@context" : "http://schema.org",
"@type" : "Blog", "@type" : "Blog",
"name": " Flex ", "name": " Flex ",
"url" : "http://flex.alxd.me/blog", "url" : "http://localhost:8000",
"image": "", "image": "",
"description": "Flex - The minimalist Pelican theme." "description": "Flex - The minimalist Pelican theme."
} }

View file

@ -10,28 +10,21 @@
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet/less" type="text/css" href="http://localhost:8000/theme/stylesheet/style.less">
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.1/less.min.js" type="text/javascript"></script>
<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://localhost:8000/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://localhost:8000/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://localhost:8000/static/custom.css" rel="stylesheet">
<link href="http://flex.alxd.me/blog/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom"> <link href="http://localhost:8000/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom">
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55543164-6', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<!-- Chrome, Firefox OS and Opera --> <!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#333333"> <meta name="theme-color" content="#333333">
<!-- Windows Phone --> <!-- Windows Phone -->
@ -50,16 +43,16 @@
<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 …"/>
<meta property="og:locale" content="en_US"/> <meta property="og:locale" content="en_US"/>
<meta property="og:url" content="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html"/> <meta property="og:url" content="http://localhost:8000/flex-pelican-theme-update-1-2-0.html"/>
<meta property="og:type" content="article"/> <meta property="og:type" content="article"/>
<meta property="article:published_time" content="2016-06-10 08:00:00-04:00"/> <meta property="article:published_time" content="2016-06-10 08:00:00-04:00"/>
<meta property="article:modified_time" content="2016-06-10 08:00:00-04:00"/> <meta property="article:modified_time" content="2016-06-10 08:00:00-04:00"/>
<meta property="article:author" content="http://flex.alxd.me/blog/author/alexandre-vicenzi.html"> <meta property="article:author" content="http://localhost:8000/author/alexandre-vicenzi.html">
<meta property="article:section" content="News"/> <meta property="article:section" content="News"/>
<meta property="article:tag" content="pelican"/> <meta property="article:tag" content="pelican"/>
<meta property="article:tag" content="python"/> <meta property="article:tag" content="python"/>
<meta property="article:tag" content="theme"/> <meta property="article:tag" content="theme"/>
<meta property="og:image" content="http://flex.alxd.me/blog/images/flex-screenshot.png"> <meta property="og:image" content="http://localhost:8000/images/flex-screenshot.png">
<title>Flex &ndash; Flex 1.2.0</title> <title>Flex &ndash; Flex 1.2.0</title>
@ -74,23 +67,31 @@
<body> <body>
<aside> <aside>
<div> <div>
<a href="http://flex.alxd.me/blog"> <a href="http://localhost:8000">
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex"> <img src="http://localhost:8000/theme/img/profile.png" alt="Flex" title="Flex">
</a> </a>
<h1><a href="http://flex.alxd.me/blog">Flex</a></h1> <h1><a href="http://localhost:8000">Flex</a></h1>
<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://localhost:8000/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a href="http://localhost:8000/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>
@ -106,14 +107,14 @@
<main> <main>
<nav> <nav>
<a href="http://flex.alxd.me/blog"> Home <a href="http://localhost:8000"> Home
</a> </a>
<a href="/archives.html">Archives</a> <a href="/archives.html">Archives</a>
<a href="/categories.html">Categories</a> <a href="/categories.html">Categories</a>
<a href="/tags.html">Tags</a> <a href="/tags.html">Tags</a>
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml"> Atom <a href="http://localhost:8000/feeds/all.atom.xml"> Atom
</a> </a>
</nav> </nav>
@ -123,7 +124,7 @@
<h1 id="flex-pelican-theme-update-1-2-0">Flex 1.2.0</h1> <h1 id="flex-pelican-theme-update-1-2-0">Flex 1.2.0</h1>
<p> <p>
Posted on June 10, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on June 10, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
</p> </p>
@ -145,9 +146,9 @@
</div> </div>
<div class="tag-cloud"> <div class="tag-cloud">
<p> <p>
<a href="http://flex.alxd.me/blog/tag/pelican.html">pelican</a> <a href="http://localhost:8000/tag/pelican.html">pelican</a>
<a href="http://flex.alxd.me/blog/tag/python.html">python</a> <a href="http://localhost:8000/tag/python.html">python</a>
<a href="http://flex.alxd.me/blog/tag/theme.html">theme</a> <a href="http://localhost:8000/tag/theme.html">theme</a>
</p> </p>
</div> </div>
@ -189,9 +190,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/"
@ -215,7 +216,7 @@
"@context" : "http://schema.org", "@context" : "http://schema.org",
"@type" : "Blog", "@type" : "Blog",
"name": " Flex ", "name": " Flex ",
"url" : "http://flex.alxd.me/blog", "url" : "http://localhost:8000",
"image": "", "image": "",
"description": "Flex - The minimalist Pelican theme." "description": "Flex - The minimalist Pelican theme."
} }

View file

@ -10,28 +10,21 @@
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet/less" type="text/css" href="http://localhost:8000/theme/stylesheet/style.less">
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.1/less.min.js" type="text/javascript"></script>
<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://localhost:8000/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://localhost:8000/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://localhost:8000/static/custom.css" rel="stylesheet">
<link href="http://flex.alxd.me/blog/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom"> <link href="http://localhost:8000/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom">
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55543164-6', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<!-- Chrome, Firefox OS and Opera --> <!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#333333"> <meta name="theme-color" content="#333333">
<!-- Windows Phone --> <!-- Windows Phone -->
@ -50,16 +43,16 @@
<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 …"/>
<meta property="og:locale" content="en_US"/> <meta property="og:locale" content="en_US"/>
<meta property="og:url" content="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html"/> <meta property="og:url" content="http://localhost:8000/flex-pelican-theme-update-2-0.html"/>
<meta property="og:type" content="article"/> <meta property="og:type" content="article"/>
<meta property="article:published_time" content="2016-09-13 08:00:00-04:00"/> <meta property="article:published_time" content="2016-09-13 08:00:00-04:00"/>
<meta property="article:modified_time" content="2016-09-13 08:00:00-04:00"/> <meta property="article:modified_time" content="2016-09-13 08:00:00-04:00"/>
<meta property="article:author" content="http://flex.alxd.me/blog/author/alexandre-vicenzi.html"> <meta property="article:author" content="http://localhost:8000/author/alexandre-vicenzi.html">
<meta property="article:section" content="News"/> <meta property="article:section" content="News"/>
<meta property="article:tag" content="pelican"/> <meta property="article:tag" content="pelican"/>
<meta property="article:tag" content="python"/> <meta property="article:tag" content="python"/>
<meta property="article:tag" content="theme"/> <meta property="article:tag" content="theme"/>
<meta property="og:image" content="http://flex.alxd.me/blog/images/flex-screenshot.png"> <meta property="og:image" content="http://localhost:8000/images/flex-screenshot.png">
<title>Flex &ndash; Flex 2.0</title> <title>Flex &ndash; Flex 2.0</title>
@ -74,23 +67,31 @@
<body> <body>
<aside> <aside>
<div> <div>
<a href="http://flex.alxd.me/blog"> <a href="http://localhost:8000">
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex"> <img src="http://localhost:8000/theme/img/profile.png" alt="Flex" title="Flex">
</a> </a>
<h1><a href="http://flex.alxd.me/blog">Flex</a></h1> <h1><a href="http://localhost:8000">Flex</a></h1>
<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://localhost:8000/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a href="http://localhost:8000/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>
@ -106,14 +107,14 @@
<main> <main>
<nav> <nav>
<a href="http://flex.alxd.me/blog"> Home <a href="http://localhost:8000"> Home
</a> </a>
<a href="/archives.html">Archives</a> <a href="/archives.html">Archives</a>
<a href="/categories.html">Categories</a> <a href="/categories.html">Categories</a>
<a href="/tags.html">Tags</a> <a href="/tags.html">Tags</a>
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml"> Atom <a href="http://localhost:8000/feeds/all.atom.xml"> Atom
</a> </a>
</nav> </nav>
@ -123,7 +124,7 @@
<h1 id="flex-pelican-theme-update-2-0">Flex 2.0</h1> <h1 id="flex-pelican-theme-update-2-0">Flex 2.0</h1>
<p> <p>
Posted on September 13, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on September 13, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
</p> </p>
@ -158,9 +159,9 @@ But if you want to use translation you need to add new lines to your pelican con
</div> </div>
<div class="tag-cloud"> <div class="tag-cloud">
<p> <p>
<a href="http://flex.alxd.me/blog/tag/pelican.html">pelican</a> <a href="http://localhost:8000/tag/pelican.html">pelican</a>
<a href="http://flex.alxd.me/blog/tag/python.html">python</a> <a href="http://localhost:8000/tag/python.html">python</a>
<a href="http://flex.alxd.me/blog/tag/theme.html">theme</a> <a href="http://localhost:8000/tag/theme.html">theme</a>
</p> </p>
</div> </div>
@ -202,9 +203,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/"
@ -228,7 +229,7 @@ But if you want to use translation you need to add new lines to your pelican con
"@context" : "http://schema.org", "@context" : "http://schema.org",
"@type" : "Blog", "@type" : "Blog",
"name": " Flex ", "name": " Flex ",
"url" : "http://flex.alxd.me/blog", "url" : "http://localhost:8000",
"image": "", "image": "",
"description": "Flex - The minimalist Pelican theme." "description": "Flex - The minimalist Pelican theme."
} }

View file

@ -10,28 +10,21 @@
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet/less" type="text/css" href="http://localhost:8000/theme/stylesheet/style.less">
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.1/less.min.js" type="text/javascript"></script>
<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://localhost:8000/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://localhost:8000/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://localhost:8000/static/custom.css" rel="stylesheet">
<link href="http://flex.alxd.me/blog/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom"> <link href="http://localhost:8000/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom">
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55543164-6', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<!-- Chrome, Firefox OS and Opera --> <!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#333333"> <meta name="theme-color" content="#333333">
<!-- Windows Phone --> <!-- Windows Phone -->
@ -50,16 +43,16 @@
<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 …"/>
<meta property="og:locale" content="en_US"/> <meta property="og:locale" content="en_US"/>
<meta property="og:url" content="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html"/> <meta property="og:url" content="http://localhost:8000/flex-pelican-theme-update-2-1.html"/>
<meta property="og:type" content="article"/> <meta property="og:type" content="article"/>
<meta property="article:published_time" content="2016-11-16 08:00:00-05:00"/> <meta property="article:published_time" content="2016-11-16 08:00:00-05:00"/>
<meta property="article:modified_time" content="2016-11-16 08:00:00-05:00"/> <meta property="article:modified_time" content="2016-11-16 08:00:00-05:00"/>
<meta property="article:author" content="http://flex.alxd.me/blog/author/alexandre-vicenzi.html"> <meta property="article:author" content="http://localhost:8000/author/alexandre-vicenzi.html">
<meta property="article:section" content="News"/> <meta property="article:section" content="News"/>
<meta property="article:tag" content="pelican"/> <meta property="article:tag" content="pelican"/>
<meta property="article:tag" content="python"/> <meta property="article:tag" content="python"/>
<meta property="article:tag" content="theme"/> <meta property="article:tag" content="theme"/>
<meta property="og:image" content="http://flex.alxd.me/blog/images/flex-screenshot.png"> <meta property="og:image" content="http://localhost:8000/images/flex-screenshot.png">
<title>Flex &ndash; Flex 2.1.0</title> <title>Flex &ndash; Flex 2.1.0</title>
@ -74,23 +67,31 @@
<body> <body>
<aside> <aside>
<div> <div>
<a href="http://flex.alxd.me/blog"> <a href="http://localhost:8000">
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex"> <img src="http://localhost:8000/theme/img/profile.png" alt="Flex" title="Flex">
</a> </a>
<h1><a href="http://flex.alxd.me/blog">Flex</a></h1> <h1><a href="http://localhost:8000">Flex</a></h1>
<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://localhost:8000/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a href="http://localhost:8000/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>
@ -106,14 +107,14 @@
<main> <main>
<nav> <nav>
<a href="http://flex.alxd.me/blog"> Home <a href="http://localhost:8000"> Home
</a> </a>
<a href="/archives.html">Archives</a> <a href="/archives.html">Archives</a>
<a href="/categories.html">Categories</a> <a href="/categories.html">Categories</a>
<a href="/tags.html">Tags</a> <a href="/tags.html">Tags</a>
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml"> Atom <a href="http://localhost:8000/feeds/all.atom.xml"> Atom
</a> </a>
</nav> </nav>
@ -123,7 +124,7 @@
<h1 id="flex-pelican-theme-update-2-1">Flex 2.1.0</h1> <h1 id="flex-pelican-theme-update-2-1">Flex 2.1.0</h1>
<p> <p>
Posted on November 16, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on November 16, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
</p> </p>
@ -156,9 +157,9 @@ Below you can see how to enable ads in your pelican configuration file.</p>
</div> </div>
<div class="tag-cloud"> <div class="tag-cloud">
<p> <p>
<a href="http://flex.alxd.me/blog/tag/pelican.html">pelican</a> <a href="http://localhost:8000/tag/pelican.html">pelican</a>
<a href="http://flex.alxd.me/blog/tag/python.html">python</a> <a href="http://localhost:8000/tag/python.html">python</a>
<a href="http://flex.alxd.me/blog/tag/theme.html">theme</a> <a href="http://localhost:8000/tag/theme.html">theme</a>
</p> </p>
</div> </div>
@ -200,9 +201,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/"
@ -226,7 +227,7 @@ Below you can see how to enable ads in your pelican configuration file.</p>
"@context" : "http://schema.org", "@context" : "http://schema.org",
"@type" : "Blog", "@type" : "Blog",
"name": " Flex ", "name": " Flex ",
"url" : "http://flex.alxd.me/blog", "url" : "http://localhost:8000",
"image": "", "image": "",
"description": "Flex - The minimalist Pelican theme." "description": "Flex - The minimalist Pelican theme."
} }

View file

@ -10,28 +10,21 @@
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet/less" type="text/css" href="http://localhost:8000/theme/stylesheet/style.less">
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.1/less.min.js" type="text/javascript"></script>
<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://localhost:8000/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://localhost:8000/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://localhost:8000/static/custom.css" rel="stylesheet">
<link href="http://flex.alxd.me/blog/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom"> <link href="http://localhost:8000/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom">
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55543164-6', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<!-- Chrome, Firefox OS and Opera --> <!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#333333"> <meta name="theme-color" content="#333333">
<!-- Windows Phone --> <!-- Windows Phone -->
@ -50,16 +43,16 @@
<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."/>
<meta property="og:locale" content="en_US"/> <meta property="og:locale" content="en_US"/>
<meta property="og:url" content="http://flex.alxd.me/blog/flex-pelican-theme-update-2-2.html"/> <meta property="og:url" content="http://localhost:8000/flex-pelican-theme-update-2-2.html"/>
<meta property="og:type" content="article"/> <meta property="og:type" content="article"/>
<meta property="article:published_time" content="2018-06-24 08:00:00-04:00"/> <meta property="article:published_time" content="2018-06-24 08:00:00-04:00"/>
<meta property="article:modified_time" content="2018-06-24 08:00:00-04:00"/> <meta property="article:modified_time" content="2018-06-24 08:00:00-04:00"/>
<meta property="article:author" content="http://flex.alxd.me/blog/author/alexandre-vicenzi.html"> <meta property="article:author" content="http://localhost:8000/author/alexandre-vicenzi.html">
<meta property="article:section" content="News"/> <meta property="article:section" content="News"/>
<meta property="article:tag" content="pelican"/> <meta property="article:tag" content="pelican"/>
<meta property="article:tag" content="python"/> <meta property="article:tag" content="python"/>
<meta property="article:tag" content="theme"/> <meta property="article:tag" content="theme"/>
<meta property="og:image" content="http://flex.alxd.me/blog/images/flex-screenshot.png"> <meta property="og:image" content="http://localhost:8000/images/flex-screenshot.png">
<title>Flex &ndash; Flex 2.2.0</title> <title>Flex &ndash; Flex 2.2.0</title>
@ -74,23 +67,31 @@
<body> <body>
<aside> <aside>
<div> <div>
<a href="http://flex.alxd.me/blog"> <a href="http://localhost:8000">
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex"> <img src="http://localhost:8000/theme/img/profile.png" alt="Flex" title="Flex">
</a> </a>
<h1><a href="http://flex.alxd.me/blog">Flex</a></h1> <h1><a href="http://localhost:8000">Flex</a></h1>
<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://localhost:8000/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a href="http://localhost:8000/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>
@ -106,14 +107,14 @@
<main> <main>
<nav> <nav>
<a href="http://flex.alxd.me/blog"> Home <a href="http://localhost:8000"> Home
</a> </a>
<a href="/archives.html">Archives</a> <a href="/archives.html">Archives</a>
<a href="/categories.html">Categories</a> <a href="/categories.html">Categories</a>
<a href="/tags.html">Tags</a> <a href="/tags.html">Tags</a>
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml"> Atom <a href="http://localhost:8000/feeds/all.atom.xml"> Atom
</a> </a>
</nav> </nav>
@ -123,7 +124,7 @@
<h1 id="flex-pelican-theme-update-2-2">Flex 2.2.0</h1> <h1 id="flex-pelican-theme-update-2-2">Flex 2.2.0</h1>
<p> <p>
Posted on June 24, 2018 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on June 24, 2018 in <a href="http://localhost:8000/category/news.html">News</a>
</p> </p>
@ -138,9 +139,9 @@
</div> </div>
<div class="tag-cloud"> <div class="tag-cloud">
<p> <p>
<a href="http://flex.alxd.me/blog/tag/pelican.html">pelican</a> <a href="http://localhost:8000/tag/pelican.html">pelican</a>
<a href="http://flex.alxd.me/blog/tag/python.html">python</a> <a href="http://localhost:8000/tag/python.html">python</a>
<a href="http://flex.alxd.me/blog/tag/theme.html">theme</a> <a href="http://localhost:8000/tag/theme.html">theme</a>
</p> </p>
</div> </div>
@ -182,9 +183,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/"
@ -208,7 +209,7 @@
"@context" : "http://schema.org", "@context" : "http://schema.org",
"@type" : "Blog", "@type" : "Blog",
"name": " Flex ", "name": " Flex ",
"url" : "http://flex.alxd.me/blog", "url" : "http://localhost:8000",
"image": "", "image": "",
"description": "Flex - The minimalist Pelican theme." "description": "Flex - The minimalist Pelican theme."
} }

View file

@ -10,28 +10,21 @@
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet/less" type="text/css" href="http://localhost:8000/theme/stylesheet/style.less">
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.1/less.min.js" type="text/javascript"></script>
<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://localhost:8000/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://localhost:8000/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://localhost:8000/static/custom.css" rel="stylesheet">
<link href="http://flex.alxd.me/blog/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom"> <link href="http://localhost:8000/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom">
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55543164-6', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<!-- Chrome, Firefox OS and Opera --> <!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#333333"> <meta name="theme-color" content="#333333">
<!-- Windows Phone --> <!-- Windows Phone -->
@ -50,16 +43,16 @@
<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 …"/>
<meta property="og:locale" content="en_US"/> <meta property="og:locale" content="en_US"/>
<meta property="og:url" content="http://flex.alxd.me/blog/flex-pelican-theme.html"/> <meta property="og:url" content="http://localhost:8000/flex-pelican-theme.html"/>
<meta property="og:type" content="article"/> <meta property="og:type" content="article"/>
<meta property="article:published_time" content="2015-07-22 08:00:00-04:00"/> <meta property="article:published_time" content="2015-07-22 08:00:00-04:00"/>
<meta property="article:modified_time" content="2015-07-22 08:00:00-04:00"/> <meta property="article:modified_time" content="2015-07-22 08:00:00-04:00"/>
<meta property="article:author" content="http://flex.alxd.me/blog/author/alexandre-vicenzi.html"> <meta property="article:author" content="http://localhost:8000/author/alexandre-vicenzi.html">
<meta property="article:section" content="News"/> <meta property="article:section" content="News"/>
<meta property="article:tag" content="pelican"/> <meta property="article:tag" content="pelican"/>
<meta property="article:tag" content="python"/> <meta property="article:tag" content="python"/>
<meta property="article:tag" content="theme"/> <meta property="article:tag" content="theme"/>
<meta property="og:image" content="http://flex.alxd.me/blog/images/flex-screenshot.png"> <meta property="og:image" content="http://localhost:8000/images/flex-screenshot.png">
<title>Flex &ndash; Flex: Responsive Pelican theme</title> <title>Flex &ndash; Flex: Responsive Pelican theme</title>
@ -74,23 +67,31 @@
<body> <body>
<aside> <aside>
<div> <div>
<a href="http://flex.alxd.me/blog"> <a href="http://localhost:8000">
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex"> <img src="http://localhost:8000/theme/img/profile.png" alt="Flex" title="Flex">
</a> </a>
<h1><a href="http://flex.alxd.me/blog">Flex</a></h1> <h1><a href="http://localhost:8000">Flex</a></h1>
<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://localhost:8000/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a href="http://localhost:8000/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>
@ -106,14 +107,14 @@
<main> <main>
<nav> <nav>
<a href="http://flex.alxd.me/blog"> Home <a href="http://localhost:8000"> Home
</a> </a>
<a href="/archives.html">Archives</a> <a href="/archives.html">Archives</a>
<a href="/categories.html">Categories</a> <a href="/categories.html">Categories</a>
<a href="/tags.html">Tags</a> <a href="/tags.html">Tags</a>
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml"> Atom <a href="http://localhost:8000/feeds/all.atom.xml"> Atom
</a> </a>
</nav> </nav>
@ -123,7 +124,7 @@
<h1 id="flex-pelican-theme">Flex: Responsive Pelican theme</h1> <h1 id="flex-pelican-theme">Flex: Responsive Pelican theme</h1>
<p> <p>
Posted on July 22, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on July 22, 2015 in <a href="http://localhost:8000/category/news.html">News</a>
</p> </p>
@ -222,9 +223,9 @@ Swap: 20480 1267 19213
</div> </div>
<div class="tag-cloud"> <div class="tag-cloud">
<p> <p>
<a href="http://flex.alxd.me/blog/tag/pelican.html">pelican</a> <a href="http://localhost:8000/tag/pelican.html">pelican</a>
<a href="http://flex.alxd.me/blog/tag/python.html">python</a> <a href="http://localhost:8000/tag/python.html">python</a>
<a href="http://flex.alxd.me/blog/tag/theme.html">theme</a> <a href="http://localhost:8000/tag/theme.html">theme</a>
</p> </p>
</div> </div>
@ -266,9 +267,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/"
@ -292,7 +293,7 @@ Swap: 20480 1267 19213
"@context" : "http://schema.org", "@context" : "http://schema.org",
"@type" : "Blog", "@type" : "Blog",
"name": " Flex ", "name": " Flex ",
"url" : "http://flex.alxd.me/blog", "url" : "http://localhost:8000",
"image": "", "image": "",
"description": "Flex - The minimalist Pelican theme." "description": "Flex - The minimalist Pelican theme."
} }

View file

@ -10,28 +10,21 @@
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet/less" type="text/css" href="http://localhost:8000/theme/stylesheet/style.less">
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.1/less.min.js" type="text/javascript"></script>
<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://localhost:8000/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://localhost:8000/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://localhost:8000/static/custom.css" rel="stylesheet">
<link href="http://flex.alxd.me/blog/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom"> <link href="http://localhost:8000/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom">
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55543164-6', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<!-- Chrome, Firefox OS and Opera --> <!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#333333"> <meta name="theme-color" content="#333333">
<!-- Windows Phone --> <!-- Windows Phone -->
@ -49,7 +42,7 @@
<meta property="og:title" content="Flex"/> <meta property="og:title" content="Flex"/>
<meta property="og:description" content="Flex - The minimalist Pelican theme."/> <meta property="og:description" content="Flex - The minimalist Pelican theme."/>
<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://localhost:8000"/>
<title>Flex</title> <title>Flex</title>
@ -64,23 +57,31 @@
<body> <body>
<aside> <aside>
<div> <div>
<a href="http://flex.alxd.me/blog"> <a href="http://localhost:8000">
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex"> <img src="http://localhost:8000/theme/img/profile.png" alt="Flex" title="Flex">
</a> </a>
<h1><a href="http://flex.alxd.me/blog">Flex</a></h1> <h1><a href="http://localhost:8000">Flex</a></h1>
<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://localhost:8000/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a href="http://localhost:8000/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>
@ -96,14 +97,14 @@
<main> <main>
<nav> <nav>
<a href="http://flex.alxd.me/blog"> Home <a href="http://localhost:8000"> Home
</a> </a>
<a href="/archives.html">Archives</a> <a href="/archives.html">Archives</a>
<a href="/categories.html">Categories</a> <a href="/categories.html">Categories</a>
<a href="/tags.html">Tags</a> <a href="/tags.html">Tags</a>
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml"> Atom <a href="http://localhost:8000/feeds/all.atom.xml"> Atom
</a> </a>
</nav> </nav>
@ -112,9 +113,9 @@
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-2.html#flex-pelican-theme-update-2-2">Flex 2.2.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-2-2.html#flex-pelican-theme-update-2-2">Flex 2.2.0</a></h2>
<p> <p>
Posted on June 24, 2018 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on June 24, 2018 in <a href="http://localhost:8000/category/news.html">News</a>
@ -125,17 +126,14 @@
<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>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1">Flex 2.1.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1">Flex 2.1.0</a></h2>
<p> <p>
Posted on November 16, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on November 16, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -145,17 +143,17 @@
<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://localhost:8000/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0">Flex 2.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0">Flex 2.0</a></h2>
<p> <p>
Posted on September 13, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on September 13, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -169,17 +167,17 @@ 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://localhost:8000/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0">Flex 1.2.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0">Flex 1.2.0</a></h2>
<p> <p>
Posted on June 10, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on June 10, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -193,17 +191,17 @@ 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://localhost:8000/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1-1.html#flex-pelican-theme-update-1-1-1">Flex 1.1.1</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-1-1-1.html#flex-pelican-theme-update-1-1-1">Flex 1.1.1</a></h2>
<p> <p>
Posted on February 27, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on February 27, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -217,17 +215,14 @@ 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>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1">Flex 1.1.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1">Flex 1.1.0</a></h2>
<p> <p>
Posted on October 07, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on October 07, 2015 in <a href="http://localhost:8000/category/news.html">News</a>
@ -236,17 +231,17 @@ 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://localhost:8000/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme">Flex: Responsive Pelican theme</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme.html#flex-pelican-theme">Flex: Responsive Pelican theme</a></h2>
<p> <p>
Posted on July 22, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on July 22, 2015 in <a href="http://localhost:8000/category/news.html">News</a>
@ -255,8 +250,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://localhost:8000/flex-pelican-theme.html#flex-pelican-theme"> Continue reading
</a> </a>
</div> </div>
</article> </article>
@ -276,9 +271,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/"
@ -302,7 +297,7 @@ If …</p>
"@context" : "http://schema.org", "@context" : "http://schema.org",
"@type" : "Blog", "@type" : "Blog",
"name": " Flex ", "name": " Flex ",
"url" : "http://flex.alxd.me/blog", "url" : "http://localhost:8000",
"image": "", "image": "",
"description": "Flex - The minimalist Pelican theme." "description": "Flex - The minimalist Pelican theme."
} }

View file

@ -10,28 +10,21 @@
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet/less" type="text/css" href="http://localhost:8000/theme/stylesheet/style.less">
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.1/less.min.js" type="text/javascript"></script>
<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://localhost:8000/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://localhost:8000/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://localhost:8000/static/custom.css" rel="stylesheet">
<link href="http://flex.alxd.me/blog/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom"> <link href="http://localhost:8000/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom">
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55543164-6', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<!-- Chrome, Firefox OS and Opera --> <!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#333333"> <meta name="theme-color" content="#333333">
<!-- Windows Phone --> <!-- Windows Phone -->
@ -49,7 +42,7 @@
<meta property="og:title" content="Flex"/> <meta property="og:title" content="Flex"/>
<meta property="og:description" content="Flex - The minimalist Pelican theme."/> <meta property="og:description" content="Flex - The minimalist Pelican theme."/>
<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://localhost:8000"/>
<title>Flex &ndash; About</title> <title>Flex &ndash; About</title>
@ -64,23 +57,31 @@
<body> <body>
<aside> <aside>
<div> <div>
<a href="http://flex.alxd.me/blog"> <a href="http://localhost:8000">
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex"> <img src="http://localhost:8000/theme/img/profile.png" alt="Flex" title="Flex">
</a> </a>
<h1><a href="http://flex.alxd.me/blog">Flex</a></h1> <h1><a href="http://localhost:8000">Flex</a></h1>
<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://localhost:8000/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a href="http://localhost:8000/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>
@ -96,14 +97,14 @@
<main> <main>
<nav> <nav>
<a href="http://flex.alxd.me/blog"> Home <a href="http://localhost:8000"> Home
</a> </a>
<a href="/archives.html">Archives</a> <a href="/archives.html">Archives</a>
<a href="/categories.html">Categories</a> <a href="/categories.html">Categories</a>
<a href="/tags.html">Tags</a> <a href="/tags.html">Tags</a>
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml"> Atom <a href="http://localhost:8000/feeds/all.atom.xml"> Atom
</a> </a>
</nav> </nav>
@ -119,9 +120,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/"
@ -145,7 +146,7 @@
"@context" : "http://schema.org", "@context" : "http://schema.org",
"@type" : "Blog", "@type" : "Blog",
"name": " Flex ", "name": " Flex ",
"url" : "http://flex.alxd.me/blog", "url" : "http://localhost:8000",
"image": "", "image": "",
"description": "Flex - The minimalist Pelican theme." "description": "Flex - The minimalist Pelican theme."
} }

View file

@ -10,28 +10,21 @@
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet/less" type="text/css" href="http://localhost:8000/theme/stylesheet/style.less">
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.1/less.min.js" type="text/javascript"></script>
<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://localhost:8000/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://localhost:8000/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://localhost:8000/static/custom.css" rel="stylesheet">
<link href="http://flex.alxd.me/blog/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom"> <link href="http://localhost:8000/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom">
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55543164-6', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<!-- Chrome, Firefox OS and Opera --> <!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#333333"> <meta name="theme-color" content="#333333">
<!-- Windows Phone --> <!-- Windows Phone -->
@ -49,7 +42,7 @@
<meta property="og:title" content="Flex"/> <meta property="og:title" content="Flex"/>
<meta property="og:description" content="Flex - The minimalist Pelican theme."/> <meta property="og:description" content="Flex - The minimalist Pelican theme."/>
<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://localhost:8000"/>
<title>Flex &ndash; Contact</title> <title>Flex &ndash; Contact</title>
@ -64,23 +57,31 @@
<body> <body>
<aside> <aside>
<div> <div>
<a href="http://flex.alxd.me/blog"> <a href="http://localhost:8000">
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex"> <img src="http://localhost:8000/theme/img/profile.png" alt="Flex" title="Flex">
</a> </a>
<h1><a href="http://flex.alxd.me/blog">Flex</a></h1> <h1><a href="http://localhost:8000">Flex</a></h1>
<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://localhost:8000/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a href="http://localhost:8000/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>
@ -96,14 +97,14 @@
<main> <main>
<nav> <nav>
<a href="http://flex.alxd.me/blog"> Home <a href="http://localhost:8000"> Home
</a> </a>
<a href="/archives.html">Archives</a> <a href="/archives.html">Archives</a>
<a href="/categories.html">Categories</a> <a href="/categories.html">Categories</a>
<a href="/tags.html">Tags</a> <a href="/tags.html">Tags</a>
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml"> Atom <a href="http://localhost:8000/feeds/all.atom.xml"> Atom
</a> </a>
</nav> </nav>
@ -119,9 +120,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/"
@ -145,7 +146,7 @@
"@context" : "http://schema.org", "@context" : "http://schema.org",
"@type" : "Blog", "@type" : "Blog",
"name": " Flex ", "name": " Flex ",
"url" : "http://flex.alxd.me/blog", "url" : "http://localhost:8000",
"image": "", "image": "",
"description": "Flex - The minimalist Pelican theme." "description": "Flex - The minimalist Pelican theme."
} }

View file

@ -10,28 +10,21 @@
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet/less" type="text/css" href="http://localhost:8000/theme/stylesheet/style.less">
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.1/less.min.js" type="text/javascript"></script>
<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://localhost:8000/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://localhost:8000/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://localhost:8000/static/custom.css" rel="stylesheet">
<link href="http://flex.alxd.me/blog/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom"> <link href="http://localhost:8000/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom">
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55543164-6', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<!-- Chrome, Firefox OS and Opera --> <!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#333333"> <meta name="theme-color" content="#333333">
<!-- Windows Phone --> <!-- Windows Phone -->
@ -49,7 +42,7 @@
<meta property="og:title" content="Flex"/> <meta property="og:title" content="Flex"/>
<meta property="og:description" content="Flex - The minimalist Pelican theme."/> <meta property="og:description" content="Flex - The minimalist Pelican theme."/>
<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://localhost:8000"/>
<title>Flex &ndash; Tag pelican <title>Flex &ndash; Tag pelican
</title> </title>
@ -65,23 +58,31 @@
<body> <body>
<aside> <aside>
<div> <div>
<a href="http://flex.alxd.me/blog"> <a href="http://localhost:8000">
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex"> <img src="http://localhost:8000/theme/img/profile.png" alt="Flex" title="Flex">
</a> </a>
<h1><a href="http://flex.alxd.me/blog">Flex</a></h1> <h1><a href="http://localhost:8000">Flex</a></h1>
<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://localhost:8000/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a href="http://localhost:8000/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>
@ -97,14 +98,14 @@
<main> <main>
<nav> <nav>
<a href="http://flex.alxd.me/blog"> Home <a href="http://localhost:8000"> Home
</a> </a>
<a href="/archives.html">Archives</a> <a href="/archives.html">Archives</a>
<a href="/categories.html">Categories</a> <a href="/categories.html">Categories</a>
<a href="/tags.html">Tags</a> <a href="/tags.html">Tags</a>
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml"> Atom <a href="http://localhost:8000/feeds/all.atom.xml"> Atom
</a> </a>
</nav> </nav>
@ -113,9 +114,9 @@
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-2.html#flex-pelican-theme-update-2-2">Flex 2.2.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-2-2.html#flex-pelican-theme-update-2-2">Flex 2.2.0</a></h2>
<p> <p>
Posted on June 24, 2018 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on June 24, 2018 in <a href="http://localhost:8000/category/news.html">News</a>
@ -126,17 +127,14 @@
<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>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1">Flex 2.1.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1">Flex 2.1.0</a></h2>
<p> <p>
Posted on November 16, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on November 16, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -146,17 +144,17 @@
<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://localhost:8000/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0">Flex 2.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0">Flex 2.0</a></h2>
<p> <p>
Posted on September 13, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on September 13, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -170,17 +168,17 @@ 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://localhost:8000/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0">Flex 1.2.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0">Flex 1.2.0</a></h2>
<p> <p>
Posted on June 10, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on June 10, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -194,17 +192,17 @@ 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://localhost:8000/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1-1.html#flex-pelican-theme-update-1-1-1">Flex 1.1.1</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-1-1-1.html#flex-pelican-theme-update-1-1-1">Flex 1.1.1</a></h2>
<p> <p>
Posted on February 27, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on February 27, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -218,17 +216,14 @@ 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>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1">Flex 1.1.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1">Flex 1.1.0</a></h2>
<p> <p>
Posted on October 07, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on October 07, 2015 in <a href="http://localhost:8000/category/news.html">News</a>
@ -237,17 +232,17 @@ 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://localhost:8000/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme">Flex: Responsive Pelican theme</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme.html#flex-pelican-theme">Flex: Responsive Pelican theme</a></h2>
<p> <p>
Posted on July 22, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on July 22, 2015 in <a href="http://localhost:8000/category/news.html">News</a>
@ -256,8 +251,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://localhost:8000/flex-pelican-theme.html#flex-pelican-theme"> Continue reading
</a> </a>
</div> </div>
</article> </article>
@ -277,9 +272,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/"
@ -303,7 +298,7 @@ If …</p>
"@context" : "http://schema.org", "@context" : "http://schema.org",
"@type" : "Blog", "@type" : "Blog",
"name": " Flex ", "name": " Flex ",
"url" : "http://flex.alxd.me/blog", "url" : "http://localhost:8000",
"image": "", "image": "",
"description": "Flex - The minimalist Pelican theme." "description": "Flex - The minimalist Pelican theme."
} }

View file

@ -10,28 +10,21 @@
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet/less" type="text/css" href="http://localhost:8000/theme/stylesheet/style.less">
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.1/less.min.js" type="text/javascript"></script>
<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://localhost:8000/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://localhost:8000/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://localhost:8000/static/custom.css" rel="stylesheet">
<link href="http://flex.alxd.me/blog/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom"> <link href="http://localhost:8000/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom">
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55543164-6', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<!-- Chrome, Firefox OS and Opera --> <!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#333333"> <meta name="theme-color" content="#333333">
<!-- Windows Phone --> <!-- Windows Phone -->
@ -49,7 +42,7 @@
<meta property="og:title" content="Flex"/> <meta property="og:title" content="Flex"/>
<meta property="og:description" content="Flex - The minimalist Pelican theme."/> <meta property="og:description" content="Flex - The minimalist Pelican theme."/>
<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://localhost:8000"/>
<title>Flex &ndash; Tag python <title>Flex &ndash; Tag python
</title> </title>
@ -65,23 +58,31 @@
<body> <body>
<aside> <aside>
<div> <div>
<a href="http://flex.alxd.me/blog"> <a href="http://localhost:8000">
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex"> <img src="http://localhost:8000/theme/img/profile.png" alt="Flex" title="Flex">
</a> </a>
<h1><a href="http://flex.alxd.me/blog">Flex</a></h1> <h1><a href="http://localhost:8000">Flex</a></h1>
<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://localhost:8000/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a href="http://localhost:8000/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>
@ -97,14 +98,14 @@
<main> <main>
<nav> <nav>
<a href="http://flex.alxd.me/blog"> Home <a href="http://localhost:8000"> Home
</a> </a>
<a href="/archives.html">Archives</a> <a href="/archives.html">Archives</a>
<a href="/categories.html">Categories</a> <a href="/categories.html">Categories</a>
<a href="/tags.html">Tags</a> <a href="/tags.html">Tags</a>
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml"> Atom <a href="http://localhost:8000/feeds/all.atom.xml"> Atom
</a> </a>
</nav> </nav>
@ -113,9 +114,9 @@
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-2.html#flex-pelican-theme-update-2-2">Flex 2.2.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-2-2.html#flex-pelican-theme-update-2-2">Flex 2.2.0</a></h2>
<p> <p>
Posted on June 24, 2018 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on June 24, 2018 in <a href="http://localhost:8000/category/news.html">News</a>
@ -126,17 +127,14 @@
<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>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1">Flex 2.1.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1">Flex 2.1.0</a></h2>
<p> <p>
Posted on November 16, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on November 16, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -146,17 +144,17 @@
<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://localhost:8000/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0">Flex 2.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0">Flex 2.0</a></h2>
<p> <p>
Posted on September 13, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on September 13, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -170,17 +168,17 @@ 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://localhost:8000/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0">Flex 1.2.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0">Flex 1.2.0</a></h2>
<p> <p>
Posted on June 10, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on June 10, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -194,17 +192,17 @@ 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://localhost:8000/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1-1.html#flex-pelican-theme-update-1-1-1">Flex 1.1.1</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-1-1-1.html#flex-pelican-theme-update-1-1-1">Flex 1.1.1</a></h2>
<p> <p>
Posted on February 27, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on February 27, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -218,17 +216,14 @@ 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>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1">Flex 1.1.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1">Flex 1.1.0</a></h2>
<p> <p>
Posted on October 07, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on October 07, 2015 in <a href="http://localhost:8000/category/news.html">News</a>
@ -237,17 +232,17 @@ 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://localhost:8000/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme">Flex: Responsive Pelican theme</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme.html#flex-pelican-theme">Flex: Responsive Pelican theme</a></h2>
<p> <p>
Posted on July 22, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on July 22, 2015 in <a href="http://localhost:8000/category/news.html">News</a>
@ -256,8 +251,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://localhost:8000/flex-pelican-theme.html#flex-pelican-theme"> Continue reading
</a> </a>
</div> </div>
</article> </article>
@ -277,9 +272,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/"
@ -303,7 +298,7 @@ If …</p>
"@context" : "http://schema.org", "@context" : "http://schema.org",
"@type" : "Blog", "@type" : "Blog",
"name": " Flex ", "name": " Flex ",
"url" : "http://flex.alxd.me/blog", "url" : "http://localhost:8000",
"image": "", "image": "",
"description": "Flex - The minimalist Pelican theme." "description": "Flex - The minimalist Pelican theme."
} }

View file

@ -10,28 +10,21 @@
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet/less" type="text/css" href="http://localhost:8000/theme/stylesheet/style.less">
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.1/less.min.js" type="text/javascript"></script>
<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://localhost:8000/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://localhost:8000/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://localhost:8000/static/custom.css" rel="stylesheet">
<link href="http://flex.alxd.me/blog/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom"> <link href="http://localhost:8000/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom">
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55543164-6', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<!-- Chrome, Firefox OS and Opera --> <!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#333333"> <meta name="theme-color" content="#333333">
<!-- Windows Phone --> <!-- Windows Phone -->
@ -49,7 +42,7 @@
<meta property="og:title" content="Flex"/> <meta property="og:title" content="Flex"/>
<meta property="og:description" content="Flex - The minimalist Pelican theme."/> <meta property="og:description" content="Flex - The minimalist Pelican theme."/>
<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://localhost:8000"/>
<title>Flex &ndash; Tag theme <title>Flex &ndash; Tag theme
</title> </title>
@ -65,23 +58,31 @@
<body> <body>
<aside> <aside>
<div> <div>
<a href="http://flex.alxd.me/blog"> <a href="http://localhost:8000">
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex"> <img src="http://localhost:8000/theme/img/profile.png" alt="Flex" title="Flex">
</a> </a>
<h1><a href="http://flex.alxd.me/blog">Flex</a></h1> <h1><a href="http://localhost:8000">Flex</a></h1>
<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://localhost:8000/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a href="http://localhost:8000/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>
@ -97,14 +98,14 @@
<main> <main>
<nav> <nav>
<a href="http://flex.alxd.me/blog"> Home <a href="http://localhost:8000"> Home
</a> </a>
<a href="/archives.html">Archives</a> <a href="/archives.html">Archives</a>
<a href="/categories.html">Categories</a> <a href="/categories.html">Categories</a>
<a href="/tags.html">Tags</a> <a href="/tags.html">Tags</a>
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml"> Atom <a href="http://localhost:8000/feeds/all.atom.xml"> Atom
</a> </a>
</nav> </nav>
@ -113,9 +114,9 @@
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-2.html#flex-pelican-theme-update-2-2">Flex 2.2.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-2-2.html#flex-pelican-theme-update-2-2">Flex 2.2.0</a></h2>
<p> <p>
Posted on June 24, 2018 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on June 24, 2018 in <a href="http://localhost:8000/category/news.html">News</a>
@ -126,17 +127,14 @@
<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>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1">Flex 2.1.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1">Flex 2.1.0</a></h2>
<p> <p>
Posted on November 16, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on November 16, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -146,17 +144,17 @@
<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://localhost:8000/flex-pelican-theme-update-2-1.html#flex-pelican-theme-update-2-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0">Flex 2.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0">Flex 2.0</a></h2>
<p> <p>
Posted on September 13, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on September 13, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -170,17 +168,17 @@ 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://localhost:8000/flex-pelican-theme-update-2-0.html#flex-pelican-theme-update-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0">Flex 1.2.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0">Flex 1.2.0</a></h2>
<p> <p>
Posted on June 10, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on June 10, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -194,17 +192,17 @@ 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://localhost:8000/flex-pelican-theme-update-1-2-0.html#flex-pelican-theme-update-1-2-0"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1-1.html#flex-pelican-theme-update-1-1-1">Flex 1.1.1</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-1-1-1.html#flex-pelican-theme-update-1-1-1">Flex 1.1.1</a></h2>
<p> <p>
Posted on February 27, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on February 27, 2016 in <a href="http://localhost:8000/category/news.html">News</a>
@ -218,17 +216,14 @@ 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>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1">Flex 1.1.0</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1">Flex 1.1.0</a></h2>
<p> <p>
Posted on October 07, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on October 07, 2015 in <a href="http://localhost:8000/category/news.html">News</a>
@ -237,17 +232,17 @@ 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://localhost:8000/flex-pelican-theme-update-1-1.html#flex-pelican-theme-update-1-1"> Continue reading
</a> </a>
</div> </div>
<hr /> <hr />
</article> </article>
<article> <article>
<header> <header>
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme">Flex: Responsive Pelican theme</a></h2> <h2><a href="http://localhost:8000/flex-pelican-theme.html#flex-pelican-theme">Flex: Responsive Pelican theme</a></h2>
<p> <p>
Posted on July 22, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a> Posted on July 22, 2015 in <a href="http://localhost:8000/category/news.html">News</a>
@ -256,8 +251,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://localhost:8000/flex-pelican-theme.html#flex-pelican-theme"> Continue reading
</a> </a>
</div> </div>
</article> </article>
@ -277,9 +272,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/"
@ -303,7 +298,7 @@ If …</p>
"@context" : "http://schema.org", "@context" : "http://schema.org",
"@type" : "Blog", "@type" : "Blog",
"name": " Flex ", "name": " Flex ",
"url" : "http://flex.alxd.me/blog", "url" : "http://localhost:8000",
"image": "", "image": "",
"description": "Flex - The minimalist Pelican theme." "description": "Flex - The minimalist Pelican theme."
} }

View file

@ -10,28 +10,21 @@
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/stylesheet/style.min.css"> <link rel="stylesheet/less" type="text/css" href="http://localhost:8000/theme/stylesheet/style.less">
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.1/less.min.js" type="text/javascript"></script>
<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://localhost:8000/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://localhost:8000/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="http://localhost:8000/theme/font-awesome/css/solid.css">
<link href="http://flex.alxd.me/blog/static/custom.css" rel="stylesheet"> <link href="http://localhost:8000/static/custom.css" rel="stylesheet">
<link href="http://flex.alxd.me/blog/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom"> <link href="http://localhost:8000/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Flex Atom">
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55543164-6', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<!-- Chrome, Firefox OS and Opera --> <!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#333333"> <meta name="theme-color" content="#333333">
<!-- Windows Phone --> <!-- Windows Phone -->
@ -49,7 +42,7 @@
<meta property="og:title" content="Flex"/> <meta property="og:title" content="Flex"/>
<meta property="og:description" content="Flex - The minimalist Pelican theme."/> <meta property="og:description" content="Flex - The minimalist Pelican theme."/>
<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://localhost:8000"/>
<title>Flex &ndash; Tags <title>Flex &ndash; Tags
</title> </title>
@ -65,23 +58,31 @@
<body> <body>
<aside> <aside>
<div> <div>
<a href="http://flex.alxd.me/blog"> <a href="http://localhost:8000">
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex"> <img src="http://localhost:8000/theme/img/profile.png" alt="Flex" title="Flex">
</a> </a>
<h1><a href="http://flex.alxd.me/blog">Flex</a></h1> <h1><a href="http://localhost:8000">Flex</a></h1>
<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://localhost:8000/pages/about.html#about">About</a></li>
<li><a href="http://flex.alxd.me/blog/pages/contact.html#contact">Contact</a></li> <li><a href="http://localhost:8000/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>
@ -97,36 +98,36 @@
<main> <main>
<nav> <nav>
<a href="http://flex.alxd.me/blog"> Home <a href="http://localhost:8000"> Home
</a> </a>
<a href="/archives.html">Archives</a> <a href="/archives.html">Archives</a>
<a href="/categories.html">Categories</a> <a href="/categories.html">Categories</a>
<a href="/tags.html">Tags</a> <a href="/tags.html">Tags</a>
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml"> Atom <a href="http://localhost:8000/feeds/all.atom.xml"> Atom
</a> </a>
</nav> </nav>
<article class="single"> <article class="single">
<header> <header>
<h1> Tags <h1 id="tags"> Tags
</h1> </h1>
</header> </header>
<div> <div>
<ul class="list"> <li><a href="http://flex.alxd.me/blog/tag/pelican.html">pelican</a> (7)</li> <ul class="list"> <li><a href="http://localhost:8000/tag/pelican.html">pelican</a> (7)</li>
<li><a href="http://flex.alxd.me/blog/tag/python.html">python</a> (7)</li> <li><a href="http://localhost:8000/tag/python.html">python</a> (7)</li>
<li><a href="http://flex.alxd.me/blog/tag/theme.html">theme</a> (7)</li> <li><a href="http://localhost:8000/tag/theme.html">theme</a> (7)</li>
</ul> </ul>
</div> </div>
</article> </article>
<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/"
@ -150,7 +151,7 @@
"@context" : "http://schema.org", "@context" : "http://schema.org",
"@type" : "Blog", "@type" : "Blog",
"name": " Flex ", "name": " Flex ",
"url" : "http://flex.alxd.me/blog", "url" : "http://localhost:8000",
"image": "", "image": "",
"description": "Flex - The minimalist Pelican theme." "description": "Flex - The minimalist Pelican theme."
} }

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

@ -368,8 +368,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 +394,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 +458,10 @@ ul.social {
background-color: @bitbucket-bg-color; background-color: @bitbucket-bg-color;
} }
a.sc-mastodon {
background-color: @mastodon-bg-color;
}
} }
.ads-aside { .ads-aside {
@ -476,8 +484,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 +510,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,4 @@
@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;

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))