25
.github/workflows/pelican-publish.yml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
name: Pelican Build
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: true
|
||||
- name: Create requirements.txt
|
||||
uses: 1arp/create-a-file-action@0.2
|
||||
with:
|
||||
file: requirements.txt
|
||||
content: |
|
||||
pelican
|
||||
markdown
|
||||
- name: Build and Publish
|
||||
uses: iranzo/gh-pages-pelican-action@1.0.1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|
||||
SOURCE_FOLDER: docs/content
|
||||
PELICAN_CONFIG_FILE: docs/publishconf.py
|
|
@ -1,6 +1,8 @@
|
|||
language: python
|
||||
python:
|
||||
- "3.6"
|
||||
- "3.7"
|
||||
- "3.8"
|
||||
install:
|
||||
- pip install -r docs/requirements.txt
|
||||
script: pelican -s docs/pelicanconf.py
|
||||
|
|
27
README.md
|
@ -4,9 +4,9 @@ The minimalist [Pelican](http://blog.getpelican.com/) theme.
|
|||
|
||||
## Notes
|
||||
|
||||
- If you have questions open an issue.
|
||||
- This theme is not under development anymore, it's stable and has a lot of features. This means that new requests (not bug fixes) will be discussed and have lower priorities.
|
||||
- If you want a version of this theme to Jekyll or Hugo open an issue and let's discuss it.
|
||||
- If you have questions open an issue
|
||||
- The theme is not under huge development anymore, it's stable and has a lot of features already
|
||||
- If you want a [Hugo](https://gohugo.io/) theme check out [Soho](https://github.com/alexandrevicenzi/soho)
|
||||
|
||||
## Features
|
||||
|
||||
|
@ -17,31 +17,32 @@ The minimalist [Pelican](http://blog.getpelican.com/) theme.
|
|||
- Open Graph
|
||||
- Rich Snippets (JSON-LD)
|
||||
- Related Posts (via [plugin](https://github.com/getpelican/pelican-plugins/tree/master/related_posts) or AddThis)
|
||||
- Minute read (via [plugin](https://github.com/getpelican/pelican-plugins/tree/master/post_stats)) (new in 2.0)
|
||||
- Minute read (via [plugin](https://github.com/getpelican/pelican-plugins/tree/master/post_stats))
|
||||
- [Multiple Code Highlight Styles](https://github.com/alexandrevicenzi/Flex/wiki/Code-Highlight)
|
||||
- [Translation Support](https://github.com/alexandrevicenzi/Flex/wiki/Translations) (new in 2.0)
|
||||
- [Translation Support](https://github.com/alexandrevicenzi/Flex/wiki/Translations)
|
||||
- [Dark Mode](https://github.com/alexandrevicenzi/Flex/wiki/Dark-Mode)
|
||||
|
||||
## Integrations
|
||||
|
||||
- [AddThis](http://www.addthis.com/) Share Buttons and Related Posts
|
||||
- [AddThis](http://www.addthis.com/)
|
||||
- [Disqus](https://disqus.com/)
|
||||
- [Gauges Analytics](http://get.gaug.es/)
|
||||
- [Google AdSense](https://www.google.com.br/adsense/start/) (new in 2.1.0)
|
||||
- [Google AdSense](https://www.google.com.br/adsense/start/)
|
||||
- [Google Analytics](https://www.google.com/analytics/web/)
|
||||
- [Google Tag Manager](https://www.google.com/tagmanager/)
|
||||
- [Matomo Analytics (formerly Piwik)](https://matomo.org/)
|
||||
- [StatusCake](https://www.statuscake.com/)
|
||||
- [Isso](https://posativ.org/isso/)
|
||||
- [Microsoft Clarity](https://clarity.microsoft.com)
|
||||
|
||||
## Plugins Support
|
||||
|
||||
- [Github Corners](https://github.com/tholman/github-corners) (new in 2.2.0)
|
||||
- [I18N Sub-sites](https://github.com/getpelican/pelican-plugins/tree/master/i18n_subsites) (new in 2.0)
|
||||
- [Minute read](https://github.com/getpelican/pelican-plugins/tree/master/post_stats) (new in 2.0)
|
||||
- [Github Corners](https://github.com/tholman/github-corners)
|
||||
- [I18N Sub-sites](https://github.com/getpelican/pelican-plugins/tree/master/i18n_subsites)
|
||||
- [Minute read](https://github.com/getpelican/pelican-plugins/tree/master/post_stats)
|
||||
- [Related Posts](https://github.com/getpelican/pelican-plugins/tree/master/related_posts)
|
||||
- [Representative image](https://github.com/getpelican/pelican-plugins/tree/master/representative_image) (new in 2.2.0)
|
||||
- [Neighbors](https://github.com/getpelican/pelican-plugins/tree/master/neighbors) (new in 2.2.0)
|
||||
- [Representative image](https://github.com/getpelican/pelican-plugins/tree/master/representative_image)
|
||||
- [Neighbors](https://github.com/getpelican/pelican-plugins/tree/master/neighbors)
|
||||
- [Tipue Search](https://github.com/getpelican/pelican-plugins/blob/master/tipue_search/)
|
||||
|
||||
## Install
|
||||
|
@ -59,7 +60,7 @@ If something is missing or broken you can open a PR or fix the documentation by
|
|||
|
||||
## Live example
|
||||
|
||||
You can see how this theme looks like at [http://flex.alxd.me/blog/](http://flex.alxd.me/blog/).
|
||||
You can see how this theme looks like at [http://flex.alxd.me/](http://flex.alxd.me/).
|
||||
|
||||
The code is available in this project under `docs` folder.
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
# Flex Blog Example
|
||||
|
||||
Visit [http://flex.alxd.me/blog](http://flex.alxd.me/blog).
|
||||
Visit [http://flex.alxd.me/](http://flex.alxd.me/).
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
google.com, pub-6625957038449899, DIRECT, f08c47fec0942fa0
|
|
@ -1,235 +0,0 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="HandheldFriendly" content="True" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
|
||||
<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 id="dark-theme-style" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/stylesheet/dark-theme.min.css">
|
||||
|
||||
<link id="pygments-dark-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
<link id="pygments-light-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
|
||||
|
||||
|
||||
<link href="http://flex.alxd.me/blog/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 -->
|
||||
<meta name="theme-color" content="#333333">
|
||||
<!-- Windows Phone -->
|
||||
<meta name="msapplication-navbutton-color" content="#333333">
|
||||
<!-- iOS Safari -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<!-- Microsoft EDGE -->
|
||||
<meta name="msapplication-TileColor" content="#333333">
|
||||
|
||||
<meta name="author" content="Alexandre Vicenzi" />
|
||||
<meta name="description" content="Flex - The minimalist Pelican theme." />
|
||||
<meta property="og:site_name" content="Flex"/>
|
||||
<meta property="og:type" content="blog"/>
|
||||
<meta property="og:title" content="Flex"/>
|
||||
<meta property="og:description" content="Flex - The minimalist Pelican theme."/>
|
||||
<meta property="og:locale" content="en_US"/>
|
||||
<meta property="og:url" content="http://flex.alxd.me/blog"/>
|
||||
|
||||
<title>Flex – Archives</title>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({
|
||||
google_ad_client: "ca-pub-6625957038449899",
|
||||
enable_page_level_ads: true
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body >
|
||||
<aside>
|
||||
<div>
|
||||
<a href="http://flex.alxd.me/blog">
|
||||
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex">
|
||||
</a>
|
||||
|
||||
<h1>
|
||||
<a href="http://flex.alxd.me/blog">Flex</a>
|
||||
</h1>
|
||||
|
||||
<p>The minimalist Pelican theme</p>
|
||||
|
||||
<nav>
|
||||
<ul class="list">
|
||||
|
||||
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/about.html#about">
|
||||
About
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/contact.html#contact">
|
||||
Contact
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<ul class="social">
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-aside"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="8752710348"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
</aside>
|
||||
<main>
|
||||
|
||||
<nav>
|
||||
<a href="http://flex.alxd.me/blog">Home</a>
|
||||
|
||||
<a href="/archives.html">Archives</a>
|
||||
<a href="/categories.html">Categories</a>
|
||||
<a href="/tags.html">Tags</a>
|
||||
|
||||
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml">Atom</a>
|
||||
|
||||
</nav>
|
||||
|
||||
<article class="single">
|
||||
<header>
|
||||
<h1 id="archives">Archives</h1>
|
||||
</header>
|
||||
<div>
|
||||
<dl>
|
||||
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<dt>July 22, 2015</dt>
|
||||
|
||||
<dd>
|
||||
<a href="http://flex.alxd.me/blog/flex-pelican-theme.html">Flex: Responsive Pelican theme</a>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
© 2020 - 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>
|
||||
Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
|
||||
<span class="footer-separator">|</span>
|
||||
Switch to the <a href="javascript:void(0)" onclick="theme.switch(`dark`)">dark</a> | <a href="javascript:void(0)" onclick="theme.switch(`light`)">light</a> | <a href="javascript:void(0)" onclick="theme.switch(`browser`)">browser</a> theme
|
||||
<script id="dark-theme-script"
|
||||
src="http://flex.alxd.me/blog/theme/dark-theme/dark-theme.min.js"
|
||||
data-enable-auto-detect-theme="True"
|
||||
data-default-theme="light"
|
||||
type="text/javascript">
|
||||
</script>
|
||||
</p><p>
|
||||
<a rel="license"
|
||||
href="http://creativecommons.org/licenses/by-sa/4.0/"
|
||||
target="_blank">
|
||||
<img alt="Creative Commons License"
|
||||
title="Creative Commons License"
|
||||
style="border-width:0"
|
||||
src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png"
|
||||
width="80"
|
||||
height="15"/>
|
||||
</a>
|
||||
</p> </footer>
|
||||
</main>
|
||||
|
||||
|
||||
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-55adbb025d4f7e55" async="async"></script>
|
||||
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context" : "http://schema.org",
|
||||
"@type" : "Blog",
|
||||
"name": " Flex ",
|
||||
"url" : "http://flex.alxd.me/blog",
|
||||
"image": "",
|
||||
"description": "Flex - The minimalist Pelican theme."
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,351 +0,0 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="HandheldFriendly" content="True" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
|
||||
<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 id="dark-theme-style" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/stylesheet/dark-theme.min.css">
|
||||
|
||||
<link id="pygments-dark-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
<link id="pygments-light-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
|
||||
|
||||
|
||||
<link href="http://flex.alxd.me/blog/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 -->
|
||||
<meta name="theme-color" content="#333333">
|
||||
<!-- Windows Phone -->
|
||||
<meta name="msapplication-navbutton-color" content="#333333">
|
||||
<!-- iOS Safari -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<!-- Microsoft EDGE -->
|
||||
<meta name="msapplication-TileColor" content="#333333">
|
||||
|
||||
<meta name="author" content="Alexandre Vicenzi" />
|
||||
<meta name="description" content="Flex - The minimalist Pelican theme." />
|
||||
<meta property="og:site_name" content="Flex"/>
|
||||
<meta property="og:type" content="blog"/>
|
||||
<meta property="og:title" content="Flex"/>
|
||||
<meta property="og:description" content="Flex - The minimalist Pelican theme."/>
|
||||
<meta property="og:locale" content="en_US"/>
|
||||
<meta property="og:url" content="http://flex.alxd.me/blog"/>
|
||||
|
||||
<title>Flex – Posts by Alexandre Vicenzi:</title>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({
|
||||
google_ad_client: "ca-pub-6625957038449899",
|
||||
enable_page_level_ads: true
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body >
|
||||
<aside>
|
||||
<div>
|
||||
<a href="http://flex.alxd.me/blog">
|
||||
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex">
|
||||
</a>
|
||||
|
||||
<h1>
|
||||
<a href="http://flex.alxd.me/blog">Flex</a>
|
||||
</h1>
|
||||
|
||||
<p>The minimalist Pelican theme</p>
|
||||
|
||||
<nav>
|
||||
<ul class="list">
|
||||
|
||||
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/about.html#about">
|
||||
About
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/contact.html#contact">
|
||||
Contact
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<ul class="social">
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-aside"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="8752710348"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
</aside>
|
||||
<main>
|
||||
|
||||
<nav>
|
||||
<a href="http://flex.alxd.me/blog">Home</a>
|
||||
|
||||
<a href="/archives.html">Archives</a>
|
||||
<a href="/categories.html">Categories</a>
|
||||
<a href="/tags.html">Tags</a>
|
||||
|
||||
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml">Atom</a>
|
||||
|
||||
</nav>
|
||||
|
||||
|
||||
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on June 24, 2018 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.2.0 comes with bug fixes and improvements.</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>Hope you enjoy this version.</p>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on November 16, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<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>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>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on September 13, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.0 comes with new features.
|
||||
In fact there are two new features.</p>
|
||||
<p>The biggest change is localization support.
|
||||
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>
|
||||
<p>The biggest challege was to create a way to translate without breaking old versions.
|
||||
If …</p>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on June 10, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> received some new features. Version 1.2.0 include new features and some updates.</p>
|
||||
<p>For developers there are new color styles for your code. For general purpose there is RUM support, related posts and browser color configuration.</p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/31">Update font-awesome</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/issues/38">More Pygments Styles …</a></li></ul>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on February 27, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p>Today, <a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> received a small update.</p>
|
||||
<p>Some bugs are now fixed. I think the most important fixes are:</p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/21">Bug in CSS with placement of "Newer Posts" button</a></li>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/14">Posts preview on main page</a></li>
|
||||
</ul>
|
||||
<p>Hope you enjoy this theme.</p>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on October 07, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<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>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>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<header>
|
||||
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme">Flex: Responsive Pelican theme</a></h2>
|
||||
<p>
|
||||
Posted on July 22, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<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>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>
|
||||
<a class="btn"
|
||||
href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme">
|
||||
Continue reading
|
||||
</a>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="pagination">
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-responsive"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="1124188687"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
© 2020 - 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>
|
||||
Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
|
||||
<span class="footer-separator">|</span>
|
||||
Switch to the <a href="javascript:void(0)" onclick="theme.switch(`dark`)">dark</a> | <a href="javascript:void(0)" onclick="theme.switch(`light`)">light</a> | <a href="javascript:void(0)" onclick="theme.switch(`browser`)">browser</a> theme
|
||||
<script id="dark-theme-script"
|
||||
src="http://flex.alxd.me/blog/theme/dark-theme/dark-theme.min.js"
|
||||
data-enable-auto-detect-theme="True"
|
||||
data-default-theme="light"
|
||||
type="text/javascript">
|
||||
</script>
|
||||
</p><p>
|
||||
<a rel="license"
|
||||
href="http://creativecommons.org/licenses/by-sa/4.0/"
|
||||
target="_blank">
|
||||
<img alt="Creative Commons License"
|
||||
title="Creative Commons License"
|
||||
style="border-width:0"
|
||||
src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png"
|
||||
width="80"
|
||||
height="15"/>
|
||||
</a>
|
||||
</p> </footer>
|
||||
</main>
|
||||
|
||||
|
||||
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-55adbb025d4f7e55" async="async"></script>
|
||||
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context" : "http://schema.org",
|
||||
"@type" : "Blog",
|
||||
"name": " Flex ",
|
||||
"url" : "http://flex.alxd.me/blog",
|
||||
"image": "",
|
||||
"description": "Flex - The minimalist Pelican theme."
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,200 +0,0 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="HandheldFriendly" content="True" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
|
||||
<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 id="dark-theme-style" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/stylesheet/dark-theme.min.css">
|
||||
|
||||
<link id="pygments-dark-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
<link id="pygments-light-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
|
||||
|
||||
|
||||
<link href="http://flex.alxd.me/blog/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 -->
|
||||
<meta name="theme-color" content="#333333">
|
||||
<!-- Windows Phone -->
|
||||
<meta name="msapplication-navbutton-color" content="#333333">
|
||||
<!-- iOS Safari -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<!-- Microsoft EDGE -->
|
||||
<meta name="msapplication-TileColor" content="#333333">
|
||||
|
||||
<meta name="author" content="Alexandre Vicenzi" />
|
||||
<meta name="description" content="Flex - The minimalist Pelican theme." />
|
||||
<meta property="og:site_name" content="Flex"/>
|
||||
<meta property="og:type" content="blog"/>
|
||||
<meta property="og:title" content="Flex"/>
|
||||
<meta property="og:description" content="Flex - The minimalist Pelican theme."/>
|
||||
<meta property="og:locale" content="en_US"/>
|
||||
<meta property="og:url" content="http://flex.alxd.me/blog"/>
|
||||
|
||||
<title>Flex – Authors</title>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({
|
||||
google_ad_client: "ca-pub-6625957038449899",
|
||||
enable_page_level_ads: true
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body >
|
||||
<aside>
|
||||
<div>
|
||||
<a href="http://flex.alxd.me/blog">
|
||||
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex">
|
||||
</a>
|
||||
|
||||
<h1>
|
||||
<a href="http://flex.alxd.me/blog">Flex</a>
|
||||
</h1>
|
||||
|
||||
<p>The minimalist Pelican theme</p>
|
||||
|
||||
<nav>
|
||||
<ul class="list">
|
||||
|
||||
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/about.html#about">
|
||||
About
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/contact.html#contact">
|
||||
Contact
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<ul class="social">
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-aside"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="8752710348"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
</aside>
|
||||
<main>
|
||||
|
||||
<nav>
|
||||
<a href="http://flex.alxd.me/blog">Home</a>
|
||||
|
||||
<a href="/archives.html">Archives</a>
|
||||
<a href="/categories.html">Categories</a>
|
||||
<a href="/tags.html">Tags</a>
|
||||
|
||||
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml">Atom</a>
|
||||
|
||||
</nav>
|
||||
|
||||
<article class="single">
|
||||
<header>
|
||||
<h1 id="authors">Authors</h1>
|
||||
</header>
|
||||
<div>
|
||||
<ul class="list">
|
||||
<li><a href="http://flex.alxd.me/blog/author/alexandre-vicenzi.html">Alexandre Vicenzi</a> (7)</li>
|
||||
</ul>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
© 2020 - 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>
|
||||
Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
|
||||
<span class="footer-separator">|</span>
|
||||
Switch to the <a href="javascript:void(0)" onclick="theme.switch(`dark`)">dark</a> | <a href="javascript:void(0)" onclick="theme.switch(`light`)">light</a> | <a href="javascript:void(0)" onclick="theme.switch(`browser`)">browser</a> theme
|
||||
<script id="dark-theme-script"
|
||||
src="http://flex.alxd.me/blog/theme/dark-theme/dark-theme.min.js"
|
||||
data-enable-auto-detect-theme="True"
|
||||
data-default-theme="light"
|
||||
type="text/javascript">
|
||||
</script>
|
||||
</p><p>
|
||||
<a rel="license"
|
||||
href="http://creativecommons.org/licenses/by-sa/4.0/"
|
||||
target="_blank">
|
||||
<img alt="Creative Commons License"
|
||||
title="Creative Commons License"
|
||||
style="border-width:0"
|
||||
src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png"
|
||||
width="80"
|
||||
height="15"/>
|
||||
</a>
|
||||
</p> </footer>
|
||||
</main>
|
||||
|
||||
|
||||
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-55adbb025d4f7e55" async="async"></script>
|
||||
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context" : "http://schema.org",
|
||||
"@type" : "Blog",
|
||||
"name": " Flex ",
|
||||
"url" : "http://flex.alxd.me/blog",
|
||||
"image": "",
|
||||
"description": "Flex - The minimalist Pelican theme."
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,202 +0,0 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="HandheldFriendly" content="True" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
|
||||
<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 id="dark-theme-style" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/stylesheet/dark-theme.min.css">
|
||||
|
||||
<link id="pygments-dark-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
<link id="pygments-light-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
|
||||
|
||||
|
||||
<link href="http://flex.alxd.me/blog/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 -->
|
||||
<meta name="theme-color" content="#333333">
|
||||
<!-- Windows Phone -->
|
||||
<meta name="msapplication-navbutton-color" content="#333333">
|
||||
<!-- iOS Safari -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<!-- Microsoft EDGE -->
|
||||
<meta name="msapplication-TileColor" content="#333333">
|
||||
|
||||
<meta name="author" content="Alexandre Vicenzi" />
|
||||
<meta name="description" content="Flex - The minimalist Pelican theme." />
|
||||
<meta property="og:site_name" content="Flex"/>
|
||||
<meta property="og:type" content="blog"/>
|
||||
<meta property="og:title" content="Flex"/>
|
||||
<meta property="og:description" content="Flex - The minimalist Pelican theme."/>
|
||||
<meta property="og:locale" content="en_US"/>
|
||||
<meta property="og:url" content="http://flex.alxd.me/blog"/>
|
||||
|
||||
<title>Flex – Categories</title>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({
|
||||
google_ad_client: "ca-pub-6625957038449899",
|
||||
enable_page_level_ads: true
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body >
|
||||
<aside>
|
||||
<div>
|
||||
<a href="http://flex.alxd.me/blog">
|
||||
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex">
|
||||
</a>
|
||||
|
||||
<h1>
|
||||
<a href="http://flex.alxd.me/blog">Flex</a>
|
||||
</h1>
|
||||
|
||||
<p>The minimalist Pelican theme</p>
|
||||
|
||||
<nav>
|
||||
<ul class="list">
|
||||
|
||||
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/about.html#about">
|
||||
About
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/contact.html#contact">
|
||||
Contact
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<ul class="social">
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-aside"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="8752710348"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
</aside>
|
||||
<main>
|
||||
|
||||
<nav>
|
||||
<a href="http://flex.alxd.me/blog">Home</a>
|
||||
|
||||
<a href="/archives.html">Archives</a>
|
||||
<a href="/categories.html">Categories</a>
|
||||
<a href="/tags.html">Tags</a>
|
||||
|
||||
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml">Atom</a>
|
||||
|
||||
</nav>
|
||||
|
||||
<article class="single">
|
||||
<header>
|
||||
<h1 id="categories">Categories</h1>
|
||||
</header>
|
||||
<div>
|
||||
<ul class="list">
|
||||
<li>
|
||||
<a href="http://flex.alxd.me/blog/category/news.html">News</a> (7)
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
© 2020 - 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>
|
||||
Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
|
||||
<span class="footer-separator">|</span>
|
||||
Switch to the <a href="javascript:void(0)" onclick="theme.switch(`dark`)">dark</a> | <a href="javascript:void(0)" onclick="theme.switch(`light`)">light</a> | <a href="javascript:void(0)" onclick="theme.switch(`browser`)">browser</a> theme
|
||||
<script id="dark-theme-script"
|
||||
src="http://flex.alxd.me/blog/theme/dark-theme/dark-theme.min.js"
|
||||
data-enable-auto-detect-theme="True"
|
||||
data-default-theme="light"
|
||||
type="text/javascript">
|
||||
</script>
|
||||
</p><p>
|
||||
<a rel="license"
|
||||
href="http://creativecommons.org/licenses/by-sa/4.0/"
|
||||
target="_blank">
|
||||
<img alt="Creative Commons License"
|
||||
title="Creative Commons License"
|
||||
style="border-width:0"
|
||||
src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png"
|
||||
width="80"
|
||||
height="15"/>
|
||||
</a>
|
||||
</p> </footer>
|
||||
</main>
|
||||
|
||||
|
||||
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-55adbb025d4f7e55" async="async"></script>
|
||||
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context" : "http://schema.org",
|
||||
"@type" : "Blog",
|
||||
"name": " Flex ",
|
||||
"url" : "http://flex.alxd.me/blog",
|
||||
"image": "",
|
||||
"description": "Flex - The minimalist Pelican theme."
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,351 +0,0 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="HandheldFriendly" content="True" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
|
||||
<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 id="dark-theme-style" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/stylesheet/dark-theme.min.css">
|
||||
|
||||
<link id="pygments-dark-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
<link id="pygments-light-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
|
||||
|
||||
|
||||
<link href="http://flex.alxd.me/blog/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 -->
|
||||
<meta name="theme-color" content="#333333">
|
||||
<!-- Windows Phone -->
|
||||
<meta name="msapplication-navbutton-color" content="#333333">
|
||||
<!-- iOS Safari -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<!-- Microsoft EDGE -->
|
||||
<meta name="msapplication-TileColor" content="#333333">
|
||||
|
||||
<meta name="author" content="Alexandre Vicenzi" />
|
||||
<meta name="description" content="Flex - The minimalist Pelican theme." />
|
||||
<meta property="og:site_name" content="Flex"/>
|
||||
<meta property="og:type" content="blog"/>
|
||||
<meta property="og:title" content="Flex"/>
|
||||
<meta property="og:description" content="Flex - The minimalist Pelican theme."/>
|
||||
<meta property="og:locale" content="en_US"/>
|
||||
<meta property="og:url" content="http://flex.alxd.me/blog"/>
|
||||
|
||||
<title>Flex – Category News</title>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({
|
||||
google_ad_client: "ca-pub-6625957038449899",
|
||||
enable_page_level_ads: true
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body >
|
||||
<aside>
|
||||
<div>
|
||||
<a href="http://flex.alxd.me/blog">
|
||||
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex">
|
||||
</a>
|
||||
|
||||
<h1>
|
||||
<a href="http://flex.alxd.me/blog">Flex</a>
|
||||
</h1>
|
||||
|
||||
<p>The minimalist Pelican theme</p>
|
||||
|
||||
<nav>
|
||||
<ul class="list">
|
||||
|
||||
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/about.html#about">
|
||||
About
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/contact.html#contact">
|
||||
Contact
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<ul class="social">
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-aside"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="8752710348"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
</aside>
|
||||
<main>
|
||||
|
||||
<nav>
|
||||
<a href="http://flex.alxd.me/blog">Home</a>
|
||||
|
||||
<a href="/archives.html">Archives</a>
|
||||
<a href="/categories.html">Categories</a>
|
||||
<a href="/tags.html">Tags</a>
|
||||
|
||||
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml">Atom</a>
|
||||
|
||||
</nav>
|
||||
|
||||
|
||||
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on June 24, 2018 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.2.0 comes with bug fixes and improvements.</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>Hope you enjoy this version.</p>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on November 16, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<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>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>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on September 13, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.0 comes with new features.
|
||||
In fact there are two new features.</p>
|
||||
<p>The biggest change is localization support.
|
||||
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>
|
||||
<p>The biggest challege was to create a way to translate without breaking old versions.
|
||||
If …</p>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on June 10, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> received some new features. Version 1.2.0 include new features and some updates.</p>
|
||||
<p>For developers there are new color styles for your code. For general purpose there is RUM support, related posts and browser color configuration.</p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/31">Update font-awesome</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/issues/38">More Pygments Styles …</a></li></ul>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on February 27, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p>Today, <a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> received a small update.</p>
|
||||
<p>Some bugs are now fixed. I think the most important fixes are:</p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/21">Bug in CSS with placement of "Newer Posts" button</a></li>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/14">Posts preview on main page</a></li>
|
||||
</ul>
|
||||
<p>Hope you enjoy this theme.</p>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on October 07, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<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>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>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<header>
|
||||
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme">Flex: Responsive Pelican theme</a></h2>
|
||||
<p>
|
||||
Posted on July 22, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<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>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>
|
||||
<a class="btn"
|
||||
href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme">
|
||||
Continue reading
|
||||
</a>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="pagination">
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-responsive"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="1124188687"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
© 2020 - 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>
|
||||
Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
|
||||
<span class="footer-separator">|</span>
|
||||
Switch to the <a href="javascript:void(0)" onclick="theme.switch(`dark`)">dark</a> | <a href="javascript:void(0)" onclick="theme.switch(`light`)">light</a> | <a href="javascript:void(0)" onclick="theme.switch(`browser`)">browser</a> theme
|
||||
<script id="dark-theme-script"
|
||||
src="http://flex.alxd.me/blog/theme/dark-theme/dark-theme.min.js"
|
||||
data-enable-auto-detect-theme="True"
|
||||
data-default-theme="light"
|
||||
type="text/javascript">
|
||||
</script>
|
||||
</p><p>
|
||||
<a rel="license"
|
||||
href="http://creativecommons.org/licenses/by-sa/4.0/"
|
||||
target="_blank">
|
||||
<img alt="Creative Commons License"
|
||||
title="Creative Commons License"
|
||||
style="border-width:0"
|
||||
src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png"
|
||||
width="80"
|
||||
height="15"/>
|
||||
</a>
|
||||
</p> </footer>
|
||||
</main>
|
||||
|
||||
|
||||
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-55adbb025d4f7e55" async="async"></script>
|
||||
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context" : "http://schema.org",
|
||||
"@type" : "Blog",
|
||||
"name": " Flex ",
|
||||
"url" : "http://flex.alxd.me/blog",
|
||||
"image": "",
|
||||
"description": "Flex - The minimalist Pelican theme."
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,179 +0,0 @@
|
|||
<?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><subtitle>The minimalist Pelican theme</subtitle><entry><title>Flex 2.2.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-2.html" rel="alternate"></link><published>2018-06-24T08:00:00-04:00</published><updated>2018-06-24T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2018-06-24:/blog/flex-pelican-theme-update-2-2.html</id><content type="html"><p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.2.0 comes with bug fixes and improvements.</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>Hope you enjoy this version.</p></content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 2.1.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html" rel="alternate"></link><published>2016-11-16T08:00:00-05:00</published><updated>2016-11-16T08:00:00-05:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-11-16:/blog/flex-pelican-theme-update-2-1.html</id><summary type="html"><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>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></summary><content type="html"><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>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>Flex has six places for ads. Google recommends up to 3 ads per page. There is ads page only, and banner that appears on all pages.
|
||||
Below you can see how to enable ads in your pelican configuration file.</p>
|
||||
<div class="highlight"><pre><span></span><code><span class="n">GOOGLE_ADSENSE</span> <span class="o">=</span> <span class="p">{</span>
|
||||
<span class="s1">&#39;ca_id&#39;</span><span class="p">:</span> <span class="s1">&#39;ca-pub-1234567890&#39;</span><span class="p">,</span> <span class="c1"># Your AdSense ID</span>
|
||||
<span class="s1">&#39;page_level_ads&#39;</span><span class="p">:</span> <span class="bp">True</span><span class="p">,</span> <span class="c1"># Allow Page Level Ads (mobile)</span>
|
||||
<span class="s1">&#39;ads&#39;</span><span class="p">:</span> <span class="p">{</span>
|
||||
<span class="s1">&#39;aside&#39;</span><span class="p">:</span> <span class="s1">&#39;1234561&#39;</span><span class="p">,</span> <span class="c1"># Side bar banner (all pages)</span>
|
||||
<span class="s1">&#39;main_menu&#39;</span><span class="p">:</span> <span class="s1">&#39;1234562&#39;</span><span class="p">,</span> <span class="c1"># Banner before main menu (all pages)</span>
|
||||
<span class="s1">&#39;index_top&#39;</span><span class="p">:</span> <span class="s1">&#39;1234563&#39;</span><span class="p">,</span> <span class="c1"># Banner after main menu (index only)</span>
|
||||
<span class="s1">&#39;index_bottom&#39;</span><span class="p">:</span> <span class="s1">&#39;1234564&#39;</span><span class="p">,</span> <span class="c1"># Banner before footer (index only)</span>
|
||||
<span class="s1">&#39;article_top&#39;</span><span class="p">:</span> <span class="s1">&#39;1234565&#39;</span><span class="p">,</span> <span class="c1"># Banner after article title (article only)</span>
|
||||
<span class="s1">&#39;article_bottom&#39;</span><span class="p">:</span> <span class="s1">&#39;1234566&#39;</span><span class="p">,</span> <span class="c1"># Banner after article content (article only)</span>
|
||||
<span class="p">}</span>
|
||||
<span class="p">}</span>
|
||||
</code></pre></div>
|
||||
|
||||
|
||||
<p>Version 2.1.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></content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 2.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html" rel="alternate"></link><published>2016-09-13T08:00:00-04:00</published><updated>2016-09-13T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-09-13:/blog/flex-pelican-theme-update-2-0.html</id><summary type="html"><p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.0 comes with new features.
|
||||
In fact there are two new features.</p>
|
||||
<p>The biggest change is localization support.
|
||||
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>
|
||||
<p>The biggest challege was to create a way to translate without breaking old versions.
|
||||
If …</p></summary><content type="html"><p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.0 comes with new features.
|
||||
In fact there are two new features.</p>
|
||||
<p>The biggest change is localization support.
|
||||
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>
|
||||
<p>The biggest challege was to create a way to translate without breaking old versions.
|
||||
If you use English it changes nothing for you.
|
||||
But if you want to use translation you need to add new lines to your pelican configuration file.</p>
|
||||
<p>Here is a small example to use Flex in another language.</p>
|
||||
<div class="highlight"><pre><span></span><code><span class="c1"># Enable i18n plugin, probably you already have some others here.</span>
|
||||
<span class="n">PLUGINS</span> <span class="o">=</span> <span class="p">[</span><span class="s1">&#39;i18n_subsites&#39;</span><span class="p">]</span>
|
||||
<span class="c1"># Enable Jinja2 i18n extension used to parse translations.</span>
|
||||
<span class="n">JINJA_EXTENSIONS</span> <span class="o">=</span> <span class="p">[</span><span class="s1">&#39;jinja2.ext.i18n&#39;</span><span class="p">]</span>
|
||||
<span class="c1"># Default theme language.</span>
|
||||
<span class="n">I18N_TEMPLATES_LANG</span> <span class="o">=</span> <span class="s1">&#39;en&#39;</span>
|
||||
<span class="c1"># Your language.</span>
|
||||
<span class="n">DEFAULT_LANG</span> <span class="o">=</span> <span class="s1">&#39;de&#39;</span>
|
||||
<span class="n">OG_LOCALE</span> <span class="o">=</span> <span class="s1">&#39;de_DE&#39;</span>
|
||||
<span class="n">LOCALE</span> <span class="o">=</span> <span class="s1">&#39;de_DE&#39;</span>
|
||||
</code></pre></div>
|
||||
|
||||
|
||||
<p>Last but not least, Flex supports the feature "X minute read", similar <a href="https://medium.com/">Medium</a>.</p>
|
||||
<p>Hope you enjoy this version.</p></content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 1.2.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html" rel="alternate"></link><published>2016-06-10T08:00:00-04:00</published><updated>2016-06-10T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-06-10:/blog/flex-pelican-theme-update-1-2-0.html</id><summary type="html"><p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> received some new features. Version 1.2.0 include new features and some updates.</p>
|
||||
<p>For developers there are new color styles for your code. For general purpose there is RUM support, related posts and browser color configuration.</p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/31">Update font-awesome</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/issues/38">More Pygments Styles …</a></li></ul></summary><content type="html"><p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> received some new features. Version 1.2.0 include new features and some updates.</p>
|
||||
<p>For developers there are new color styles for your code. For general purpose there is RUM support, related posts and browser color configuration.</p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/31">Update font-awesome</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/issues/38">More Pygments Styles</a></li>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/16">Add StatusCake RUM support</a></li>
|
||||
</ul>
|
||||
<p>If you need help or want to report a bug, please open an <a href="https://github.com/alexandrevicenzi/Flex/issues">issue</a>.</p>
|
||||
<p>Hope you enjoy this theme.</p></content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 1.1.1</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1-1.html" rel="alternate"></link><published>2016-02-27T08:00:00-05:00</published><updated>2016-02-27T08:00:00-05:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-02-27:/blog/flex-pelican-theme-update-1-1-1.html</id><content type="html"><p>Today, <a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> received a small update.</p>
|
||||
<p>Some bugs are now fixed. I think the most important fixes are:</p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/21">Bug in CSS with placement of "Newer Posts" button</a></li>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/14">Posts preview on main page</a></li>
|
||||
</ul>
|
||||
<p>Hope you enjoy this theme.</p></content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 1.1.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html" rel="alternate"></link><published>2015-10-07T08:00:00-04:00</published><updated>2015-10-07T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2015-10-07:/blog/flex-pelican-theme-update-1-1.html</id><summary type="html"><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></summary><content type="html"><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 the <a href="https://github.com/alexandrevicenzi/Flex/releases/tag/v1.1">second version</a> of Flex (aka v1.1).</p>
|
||||
<p>This new version doesn't include nothing so special, just some bug fix and a new setting to allow custom CSS stylesheets.</p>
|
||||
<p>The new custom setting can be used like this:</p>
|
||||
<div class="highlight"><pre><span></span><code><span class="n">EXTRA_PATH_METADATA</span> <span class="o">=</span> <span class="p">{</span>
|
||||
<span class="s1">&#39;extra/custom.css&#39;</span><span class="p">:</span> <span class="p">{</span><span class="s1">&#39;path&#39;</span><span class="p">:</span> <span class="s1">&#39;static/custom.css&#39;</span><span class="p">},</span>
|
||||
<span class="p">}</span>
|
||||
<span class="n">CUSTOM_CSS</span> <span class="o">=</span> <span class="s1">&#39;static/custom.css&#39;</span>
|
||||
</code></pre></div>
|
||||
|
||||
|
||||
<p>I would like to thank all who helped in this new version.</p></content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex: Responsive Pelican theme</title><link href="http://flex.alxd.me/blog/flex-pelican-theme.html" rel="alternate"></link><published>2015-07-22T08:00:00-04:00</published><updated>2015-07-22T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2015-07-22:/blog/flex-pelican-theme.html</id><summary type="html"><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></summary><content type="html"><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 choose to create my own theme. I never did this before.</p>
|
||||
<p>Creating a theme for Pelican is quite easy, unlike Wordpress. You can take a look in the <a href="https://github.com/alexandrevicenzi/Flex">Source Code of Flex</a>.</p>
|
||||
<p>But how Flex looks like? Well, you can see <a href="images/flex-screenshot.png">this screenshot</a>, but you already know how it looks like, you're looking at it. :D</p>
|
||||
<p>I really care about SEO and integrations with Facebook, Google Plus and other social networks, so this theme offers some features:</p>
|
||||
<ul>
|
||||
<li>Mobile First</li>
|
||||
<li>Responsive</li>
|
||||
<li>Semantic</li>
|
||||
<li>SEO Best Practices</li>
|
||||
<li>Open Graph</li>
|
||||
<li>Rich Snippets (JSON-LD)</li>
|
||||
</ul>
|
||||
<p>Maybe these features are not fully optimized, but I'll improve.</p>
|
||||
<p>Flex also offers integrations with multiple services.</p>
|
||||
<blockquote>
|
||||
<p><strong>Tip:</strong></p>
|
||||
<p>You can easyly integrate with:</p>
|
||||
<ul>
|
||||
<li>AddThis</li>
|
||||
<li>Disqus</li>
|
||||
<li>Google Analytics</li>
|
||||
<li>Google Tag Manager</li>
|
||||
<li>StatusCake</li>
|
||||
</ul>
|
||||
</blockquote>
|
||||
<p>Flex is a theme built by a developer for developers, but of course, you can use for any purpose. In this scenario, Flex is able to create good styles for coding, outputs and samples.</p>
|
||||
<p>If you need to show some program output you can use <code>samp</code> tag to look like this:</p>
|
||||
<p><samp>Done: Processed 4 articles, 0 drafts, 2 pages and 0 hidden pages in 0.22 seconds.</samp></p>
|
||||
<p>Or if you want multiple lines:</p>
|
||||
<p><samp>
|
||||
total used free shared buffers cached
|
||||
Mem: 5866 4674 1192 386 0 2404
|
||||
-/+ buffers/cache: 2269 3596
|
||||
Swap: 20480 1267 19213
|
||||
</samp></p>
|
||||
<p>If you like to share code snippets, you can take advantage of <a href="http://pygments.org/">Pygments</a> syntax highlighting:</p>
|
||||
<div class="highlight"><pre><span></span><code><span class="c1">// Foo</span>
|
||||
<span class="kd">var</span> <span class="nx">bar</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span>
|
||||
</code></pre></div>
|
||||
|
||||
|
||||
<div class="highlight"><pre><span></span><code><span class="k">class</span> <span class="nc">Foo</span><span class="p">(</span><span class="nb">object</span><span class="p">):</span>
|
||||
<span class="k">def</span> <span class="fm">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">bar</span><span class="p">)</span>
|
||||
<span class="bp">self</span><span class="o">.</span><span class="n">bar</span> <span class="o">=</span> <span class="n">bar</span>
|
||||
</code></pre></div>
|
||||
|
||||
|
||||
<div class="highlight"><pre><span></span><code>ls *.jpg <span class="p">|</span> xargs -n1 -i cp <span class="o">{}</span> /external-hard-drive/directory
|
||||
</code></pre></div>
|
||||
|
||||
|
||||
<p><strong>Note:</strong> The code block looks like GitHub’s colors.</p>
|
||||
<p>You can add tables too:</p>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Item</th>
|
||||
<th>Value</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Computer</td>
|
||||
<td>$1600</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Phone</td>
|
||||
<td>$12</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Pipe</td>
|
||||
<td>$1</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p>and how heading looks like?</p>
|
||||
<h1>This is heading 1</h1>
|
||||
<h2>This is heading 2</h2>
|
||||
<h3>This is heading 3</h3>
|
||||
<h4>This is heading 4</h4>
|
||||
<h5>This is heading 5</h5>
|
||||
<h6>This is heading 6</h6>
|
||||
<p>This examples are in Markdown. I'm not sure how it will look using reStructuredText. Keep in mind that Markdown allows you to add HTML tags. If you can create the same HTML syntax produced by Markdown using reStructuredText it will work.</p>
|
||||
<p>You can take a look in the <a href="https://raw.githubusercontent.com/alexandrevicenzi/blog/master/content/News/flex-pelican-theme.md">source code of this page</a> to know how to create rich examples.</p>
|
||||
<p>Flex is my first attempt creating themes and there's no IE testing yet. You can check the <a href="https://github.com/alexandrevicenzi/flex">sources here</a>.</p>
|
||||
<p>As soon as possible I will add this project to Pelican gallery.</p>
|
||||
<p>Drop a comment if you like this theme, or <a href="https://github.com/alexandrevicenzi/Flex/issues">open an issue</a> if you need a feature or found a bug.</p></content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry></feed>
|
|
@ -1,179 +0,0 @@
|
|||
<?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><subtitle>The minimalist Pelican theme</subtitle><entry><title>Flex 2.2.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-2.html" rel="alternate"></link><published>2018-06-24T08:00:00-04:00</published><updated>2018-06-24T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2018-06-24:/blog/flex-pelican-theme-update-2-2.html</id><content type="html"><p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.2.0 comes with bug fixes and improvements.</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>Hope you enjoy this version.</p></content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 2.1.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html" rel="alternate"></link><published>2016-11-16T08:00:00-05:00</published><updated>2016-11-16T08:00:00-05:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-11-16:/blog/flex-pelican-theme-update-2-1.html</id><summary type="html"><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>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></summary><content type="html"><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>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>Flex has six places for ads. Google recommends up to 3 ads per page. There is ads page only, and banner that appears on all pages.
|
||||
Below you can see how to enable ads in your pelican configuration file.</p>
|
||||
<div class="highlight"><pre><span></span><code><span class="n">GOOGLE_ADSENSE</span> <span class="o">=</span> <span class="p">{</span>
|
||||
<span class="s1">&#39;ca_id&#39;</span><span class="p">:</span> <span class="s1">&#39;ca-pub-1234567890&#39;</span><span class="p">,</span> <span class="c1"># Your AdSense ID</span>
|
||||
<span class="s1">&#39;page_level_ads&#39;</span><span class="p">:</span> <span class="bp">True</span><span class="p">,</span> <span class="c1"># Allow Page Level Ads (mobile)</span>
|
||||
<span class="s1">&#39;ads&#39;</span><span class="p">:</span> <span class="p">{</span>
|
||||
<span class="s1">&#39;aside&#39;</span><span class="p">:</span> <span class="s1">&#39;1234561&#39;</span><span class="p">,</span> <span class="c1"># Side bar banner (all pages)</span>
|
||||
<span class="s1">&#39;main_menu&#39;</span><span class="p">:</span> <span class="s1">&#39;1234562&#39;</span><span class="p">,</span> <span class="c1"># Banner before main menu (all pages)</span>
|
||||
<span class="s1">&#39;index_top&#39;</span><span class="p">:</span> <span class="s1">&#39;1234563&#39;</span><span class="p">,</span> <span class="c1"># Banner after main menu (index only)</span>
|
||||
<span class="s1">&#39;index_bottom&#39;</span><span class="p">:</span> <span class="s1">&#39;1234564&#39;</span><span class="p">,</span> <span class="c1"># Banner before footer (index only)</span>
|
||||
<span class="s1">&#39;article_top&#39;</span><span class="p">:</span> <span class="s1">&#39;1234565&#39;</span><span class="p">,</span> <span class="c1"># Banner after article title (article only)</span>
|
||||
<span class="s1">&#39;article_bottom&#39;</span><span class="p">:</span> <span class="s1">&#39;1234566&#39;</span><span class="p">,</span> <span class="c1"># Banner after article content (article only)</span>
|
||||
<span class="p">}</span>
|
||||
<span class="p">}</span>
|
||||
</code></pre></div>
|
||||
|
||||
|
||||
<p>Version 2.1.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></content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 2.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html" rel="alternate"></link><published>2016-09-13T08:00:00-04:00</published><updated>2016-09-13T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-09-13:/blog/flex-pelican-theme-update-2-0.html</id><summary type="html"><p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.0 comes with new features.
|
||||
In fact there are two new features.</p>
|
||||
<p>The biggest change is localization support.
|
||||
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>
|
||||
<p>The biggest challege was to create a way to translate without breaking old versions.
|
||||
If …</p></summary><content type="html"><p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.0 comes with new features.
|
||||
In fact there are two new features.</p>
|
||||
<p>The biggest change is localization support.
|
||||
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>
|
||||
<p>The biggest challege was to create a way to translate without breaking old versions.
|
||||
If you use English it changes nothing for you.
|
||||
But if you want to use translation you need to add new lines to your pelican configuration file.</p>
|
||||
<p>Here is a small example to use Flex in another language.</p>
|
||||
<div class="highlight"><pre><span></span><code><span class="c1"># Enable i18n plugin, probably you already have some others here.</span>
|
||||
<span class="n">PLUGINS</span> <span class="o">=</span> <span class="p">[</span><span class="s1">&#39;i18n_subsites&#39;</span><span class="p">]</span>
|
||||
<span class="c1"># Enable Jinja2 i18n extension used to parse translations.</span>
|
||||
<span class="n">JINJA_EXTENSIONS</span> <span class="o">=</span> <span class="p">[</span><span class="s1">&#39;jinja2.ext.i18n&#39;</span><span class="p">]</span>
|
||||
<span class="c1"># Default theme language.</span>
|
||||
<span class="n">I18N_TEMPLATES_LANG</span> <span class="o">=</span> <span class="s1">&#39;en&#39;</span>
|
||||
<span class="c1"># Your language.</span>
|
||||
<span class="n">DEFAULT_LANG</span> <span class="o">=</span> <span class="s1">&#39;de&#39;</span>
|
||||
<span class="n">OG_LOCALE</span> <span class="o">=</span> <span class="s1">&#39;de_DE&#39;</span>
|
||||
<span class="n">LOCALE</span> <span class="o">=</span> <span class="s1">&#39;de_DE&#39;</span>
|
||||
</code></pre></div>
|
||||
|
||||
|
||||
<p>Last but not least, Flex supports the feature "X minute read", similar <a href="https://medium.com/">Medium</a>.</p>
|
||||
<p>Hope you enjoy this version.</p></content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 1.2.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-2-0.html" rel="alternate"></link><published>2016-06-10T08:00:00-04:00</published><updated>2016-06-10T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-06-10:/blog/flex-pelican-theme-update-1-2-0.html</id><summary type="html"><p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> received some new features. Version 1.2.0 include new features and some updates.</p>
|
||||
<p>For developers there are new color styles for your code. For general purpose there is RUM support, related posts and browser color configuration.</p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/31">Update font-awesome</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/issues/38">More Pygments Styles …</a></li></ul></summary><content type="html"><p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> received some new features. Version 1.2.0 include new features and some updates.</p>
|
||||
<p>For developers there are new color styles for your code. For general purpose there is RUM support, related posts and browser color configuration.</p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/31">Update font-awesome</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/issues/38">More Pygments Styles</a></li>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/16">Add StatusCake RUM support</a></li>
|
||||
</ul>
|
||||
<p>If you need help or want to report a bug, please open an <a href="https://github.com/alexandrevicenzi/Flex/issues">issue</a>.</p>
|
||||
<p>Hope you enjoy this theme.</p></content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 1.1.1</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1-1.html" rel="alternate"></link><published>2016-02-27T08:00:00-05:00</published><updated>2016-02-27T08:00:00-05:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2016-02-27:/blog/flex-pelican-theme-update-1-1-1.html</id><content type="html"><p>Today, <a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> received a small update.</p>
|
||||
<p>Some bugs are now fixed. I think the most important fixes are:</p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/21">Bug in CSS with placement of "Newer Posts" button</a></li>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/14">Posts preview on main page</a></li>
|
||||
</ul>
|
||||
<p>Hope you enjoy this theme.</p></content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex 1.1.0</title><link href="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html" rel="alternate"></link><published>2015-10-07T08:00:00-04:00</published><updated>2015-10-07T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2015-10-07:/blog/flex-pelican-theme-update-1-1.html</id><summary type="html"><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></summary><content type="html"><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 the <a href="https://github.com/alexandrevicenzi/Flex/releases/tag/v1.1">second version</a> of Flex (aka v1.1).</p>
|
||||
<p>This new version doesn't include nothing so special, just some bug fix and a new setting to allow custom CSS stylesheets.</p>
|
||||
<p>The new custom setting can be used like this:</p>
|
||||
<div class="highlight"><pre><span></span><code><span class="n">EXTRA_PATH_METADATA</span> <span class="o">=</span> <span class="p">{</span>
|
||||
<span class="s1">&#39;extra/custom.css&#39;</span><span class="p">:</span> <span class="p">{</span><span class="s1">&#39;path&#39;</span><span class="p">:</span> <span class="s1">&#39;static/custom.css&#39;</span><span class="p">},</span>
|
||||
<span class="p">}</span>
|
||||
<span class="n">CUSTOM_CSS</span> <span class="o">=</span> <span class="s1">&#39;static/custom.css&#39;</span>
|
||||
</code></pre></div>
|
||||
|
||||
|
||||
<p>I would like to thank all who helped in this new version.</p></content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry><entry><title>Flex: Responsive Pelican theme</title><link href="http://flex.alxd.me/blog/flex-pelican-theme.html" rel="alternate"></link><published>2015-07-22T08:00:00-04:00</published><updated>2015-07-22T08:00:00-04:00</updated><author><name>Alexandre Vicenzi</name></author><id>tag:flex.alxd.me,2015-07-22:/blog/flex-pelican-theme.html</id><summary type="html"><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></summary><content type="html"><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 choose to create my own theme. I never did this before.</p>
|
||||
<p>Creating a theme for Pelican is quite easy, unlike Wordpress. You can take a look in the <a href="https://github.com/alexandrevicenzi/Flex">Source Code of Flex</a>.</p>
|
||||
<p>But how Flex looks like? Well, you can see <a href="images/flex-screenshot.png">this screenshot</a>, but you already know how it looks like, you're looking at it. :D</p>
|
||||
<p>I really care about SEO and integrations with Facebook, Google Plus and other social networks, so this theme offers some features:</p>
|
||||
<ul>
|
||||
<li>Mobile First</li>
|
||||
<li>Responsive</li>
|
||||
<li>Semantic</li>
|
||||
<li>SEO Best Practices</li>
|
||||
<li>Open Graph</li>
|
||||
<li>Rich Snippets (JSON-LD)</li>
|
||||
</ul>
|
||||
<p>Maybe these features are not fully optimized, but I'll improve.</p>
|
||||
<p>Flex also offers integrations with multiple services.</p>
|
||||
<blockquote>
|
||||
<p><strong>Tip:</strong></p>
|
||||
<p>You can easyly integrate with:</p>
|
||||
<ul>
|
||||
<li>AddThis</li>
|
||||
<li>Disqus</li>
|
||||
<li>Google Analytics</li>
|
||||
<li>Google Tag Manager</li>
|
||||
<li>StatusCake</li>
|
||||
</ul>
|
||||
</blockquote>
|
||||
<p>Flex is a theme built by a developer for developers, but of course, you can use for any purpose. In this scenario, Flex is able to create good styles for coding, outputs and samples.</p>
|
||||
<p>If you need to show some program output you can use <code>samp</code> tag to look like this:</p>
|
||||
<p><samp>Done: Processed 4 articles, 0 drafts, 2 pages and 0 hidden pages in 0.22 seconds.</samp></p>
|
||||
<p>Or if you want multiple lines:</p>
|
||||
<p><samp>
|
||||
total used free shared buffers cached
|
||||
Mem: 5866 4674 1192 386 0 2404
|
||||
-/+ buffers/cache: 2269 3596
|
||||
Swap: 20480 1267 19213
|
||||
</samp></p>
|
||||
<p>If you like to share code snippets, you can take advantage of <a href="http://pygments.org/">Pygments</a> syntax highlighting:</p>
|
||||
<div class="highlight"><pre><span></span><code><span class="c1">// Foo</span>
|
||||
<span class="kd">var</span> <span class="nx">bar</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span>
|
||||
</code></pre></div>
|
||||
|
||||
|
||||
<div class="highlight"><pre><span></span><code><span class="k">class</span> <span class="nc">Foo</span><span class="p">(</span><span class="nb">object</span><span class="p">):</span>
|
||||
<span class="k">def</span> <span class="fm">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">bar</span><span class="p">)</span>
|
||||
<span class="bp">self</span><span class="o">.</span><span class="n">bar</span> <span class="o">=</span> <span class="n">bar</span>
|
||||
</code></pre></div>
|
||||
|
||||
|
||||
<div class="highlight"><pre><span></span><code>ls *.jpg <span class="p">|</span> xargs -n1 -i cp <span class="o">{}</span> /external-hard-drive/directory
|
||||
</code></pre></div>
|
||||
|
||||
|
||||
<p><strong>Note:</strong> The code block looks like GitHub’s colors.</p>
|
||||
<p>You can add tables too:</p>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Item</th>
|
||||
<th>Value</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Computer</td>
|
||||
<td>$1600</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Phone</td>
|
||||
<td>$12</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Pipe</td>
|
||||
<td>$1</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p>and how heading looks like?</p>
|
||||
<h1>This is heading 1</h1>
|
||||
<h2>This is heading 2</h2>
|
||||
<h3>This is heading 3</h3>
|
||||
<h4>This is heading 4</h4>
|
||||
<h5>This is heading 5</h5>
|
||||
<h6>This is heading 6</h6>
|
||||
<p>This examples are in Markdown. I'm not sure how it will look using reStructuredText. Keep in mind that Markdown allows you to add HTML tags. If you can create the same HTML syntax produced by Markdown using reStructuredText it will work.</p>
|
||||
<p>You can take a look in the <a href="https://raw.githubusercontent.com/alexandrevicenzi/blog/master/content/News/flex-pelican-theme.md">source code of this page</a> to know how to create rich examples.</p>
|
||||
<p>Flex is my first attempt creating themes and there's no IE testing yet. You can check the <a href="https://github.com/alexandrevicenzi/flex">sources here</a>.</p>
|
||||
<p>As soon as possible I will add this project to Pelican gallery.</p>
|
||||
<p>Drop a comment if you like this theme, or <a href="https://github.com/alexandrevicenzi/Flex/issues">open an issue</a> if you need a feature or found a bug.</p></content><category term="News"></category><category term="pelican"></category><category term="python"></category><category term="theme"></category></entry></feed>
|
|
@ -1,262 +0,0 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="HandheldFriendly" content="True" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
|
||||
<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 id="dark-theme-style" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/stylesheet/dark-theme.min.css">
|
||||
|
||||
<link id="pygments-dark-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
<link id="pygments-light-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
|
||||
|
||||
|
||||
<link href="http://flex.alxd.me/blog/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 -->
|
||||
<meta name="theme-color" content="#333333">
|
||||
<!-- Windows Phone -->
|
||||
<meta name="msapplication-navbutton-color" content="#333333">
|
||||
<!-- iOS Safari -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<!-- Microsoft EDGE -->
|
||||
<meta name="msapplication-TileColor" content="#333333">
|
||||
|
||||
<meta name="author" content="Alexandre Vicenzi" />
|
||||
<meta name="description" content="Today, Flex theme received a small update. Some bugs are now fixed. I think the most important fixes are: Bug in CSS with placement of "Newer Posts" button Posts preview on main page Hope you enjoy this theme." />
|
||||
<meta name="keywords" content="pelican, python, theme">
|
||||
|
||||
|
||||
<meta property="og:site_name" content="Flex"/>
|
||||
<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 "Newer Posts" button Posts preview on main page Hope you enjoy this theme."/>
|
||||
<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:type" content="article"/>
|
||||
<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:author" content="http://flex.alxd.me/blog/author/alexandre-vicenzi.html">
|
||||
<meta property="article:section" content="News"/>
|
||||
<meta property="article:tag" content="pelican"/>
|
||||
<meta property="article:tag" content="python"/>
|
||||
<meta property="article:tag" content="theme"/>
|
||||
<meta property="og:image" content="http://flex.alxd.me/blog/images/flex-screenshot.png">
|
||||
|
||||
<title>Flex – Flex 1.1.1</title>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({
|
||||
google_ad_client: "ca-pub-6625957038449899",
|
||||
enable_page_level_ads: true
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body >
|
||||
<aside>
|
||||
<div>
|
||||
<a href="http://flex.alxd.me/blog">
|
||||
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex">
|
||||
</a>
|
||||
|
||||
<h1>
|
||||
<a href="http://flex.alxd.me/blog">Flex</a>
|
||||
</h1>
|
||||
|
||||
<p>The minimalist Pelican theme</p>
|
||||
|
||||
<nav>
|
||||
<ul class="list">
|
||||
|
||||
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/about.html#about">
|
||||
About
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/contact.html#contact">
|
||||
Contact
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<ul class="social">
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-aside"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="8752710348"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
</aside>
|
||||
<main>
|
||||
|
||||
<nav>
|
||||
<a href="http://flex.alxd.me/blog">Home</a>
|
||||
|
||||
<a href="/archives.html">Archives</a>
|
||||
<a href="/categories.html">Categories</a>
|
||||
<a href="/tags.html">Tags</a>
|
||||
|
||||
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml">Atom</a>
|
||||
|
||||
</nav>
|
||||
|
||||
<article class="single">
|
||||
<header>
|
||||
|
||||
<h1 id="flex-pelican-theme-update-1-1-1">Flex 1.1.1</h1>
|
||||
<p>
|
||||
Posted on February 27, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
</p>
|
||||
</header>
|
||||
|
||||
|
||||
<div>
|
||||
<p>Today, <a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> received a small update.</p>
|
||||
<p>Some bugs are now fixed. I think the most important fixes are:</p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/21">Bug in CSS with placement of "Newer Posts" button</a></li>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/14">Posts preview on main page</a></li>
|
||||
</ul>
|
||||
<p>Hope you enjoy this theme.</p>
|
||||
</div>
|
||||
<div class="tag-cloud">
|
||||
<p>
|
||||
<a href="http://flex.alxd.me/blog/tag/pelican.html">pelican</a>
|
||||
<a href="http://flex.alxd.me/blog/tag/python.html">python</a>
|
||||
<a href="http://flex.alxd.me/blog/tag/theme.html">theme</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="center social-share">
|
||||
<p>Like this article? Share it with your friends!</p>
|
||||
<div class="addthis_native_toolbox"></div>
|
||||
<div class="addthis_sharing_toolbox"></div>
|
||||
<div class="addthis_inline_share_toolbox"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="addthis_relatedposts_inline"></div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-responsive"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="4843941849"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
|
||||
<!-- Disqus -->
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="text/javascript">
|
||||
var disqus_shortname = 'flex-pelican';
|
||||
(function() {
|
||||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
||||
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
|
||||
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||
})();
|
||||
</script>
|
||||
<noscript>
|
||||
Please enable JavaScript to view comments.
|
||||
</noscript>
|
||||
<!-- End Disqus -->
|
||||
</article>
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
© 2020 - 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>
|
||||
Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
|
||||
<span class="footer-separator">|</span>
|
||||
Switch to the <a href="javascript:void(0)" onclick="theme.switch(`dark`)">dark</a> | <a href="javascript:void(0)" onclick="theme.switch(`light`)">light</a> | <a href="javascript:void(0)" onclick="theme.switch(`browser`)">browser</a> theme
|
||||
<script id="dark-theme-script"
|
||||
src="http://flex.alxd.me/blog/theme/dark-theme/dark-theme.min.js"
|
||||
data-enable-auto-detect-theme="True"
|
||||
data-default-theme="light"
|
||||
type="text/javascript">
|
||||
</script>
|
||||
</p><p>
|
||||
<a rel="license"
|
||||
href="http://creativecommons.org/licenses/by-sa/4.0/"
|
||||
target="_blank">
|
||||
<img alt="Creative Commons License"
|
||||
title="Creative Commons License"
|
||||
style="border-width:0"
|
||||
src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png"
|
||||
width="80"
|
||||
height="15"/>
|
||||
</a>
|
||||
</p> </footer>
|
||||
</main>
|
||||
|
||||
|
||||
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-55adbb025d4f7e55" async="async"></script>
|
||||
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context" : "http://schema.org",
|
||||
"@type" : "Blog",
|
||||
"name": " Flex ",
|
||||
"url" : "http://flex.alxd.me/blog",
|
||||
"image": "",
|
||||
"description": "Flex - The minimalist Pelican theme."
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,267 +0,0 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="HandheldFriendly" content="True" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
|
||||
<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 id="dark-theme-style" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/stylesheet/dark-theme.min.css">
|
||||
|
||||
<link id="pygments-dark-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
<link id="pygments-light-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
|
||||
|
||||
|
||||
<link href="http://flex.alxd.me/blog/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 -->
|
||||
<meta name="theme-color" content="#333333">
|
||||
<!-- Windows Phone -->
|
||||
<meta name="msapplication-navbutton-color" content="#333333">
|
||||
<!-- iOS Safari -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<!-- Microsoft EDGE -->
|
||||
<meta name="msapplication-TileColor" content="#333333">
|
||||
|
||||
<meta name="author" content="Alexandre Vicenzi" />
|
||||
<meta name="description" content="I've made the Flex theme a time ago. For my surprise, many people are using it. I feel thankful for this. So, after some new blogs with this theme, I got issues and PRs on GitHub from these new users. This weekend I had some free time and I release …" />
|
||||
<meta name="keywords" content="pelican, python, theme">
|
||||
|
||||
|
||||
<meta property="og:site_name" content="Flex"/>
|
||||
<meta property="og:title" content="Flex 1.1.0"/>
|
||||
<meta property="og:description" content="I'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:url" content="http://flex.alxd.me/blog/flex-pelican-theme-update-1-1.html"/>
|
||||
<meta property="og:type" content="article"/>
|
||||
<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:author" content="http://flex.alxd.me/blog/author/alexandre-vicenzi.html">
|
||||
<meta property="article:section" content="News"/>
|
||||
<meta property="article:tag" content="pelican"/>
|
||||
<meta property="article:tag" content="python"/>
|
||||
<meta property="article:tag" content="theme"/>
|
||||
<meta property="og:image" content="http://flex.alxd.me/blog/images/flex-screenshot.png">
|
||||
|
||||
<title>Flex – Flex 1.1.0</title>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({
|
||||
google_ad_client: "ca-pub-6625957038449899",
|
||||
enable_page_level_ads: true
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body >
|
||||
<aside>
|
||||
<div>
|
||||
<a href="http://flex.alxd.me/blog">
|
||||
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex">
|
||||
</a>
|
||||
|
||||
<h1>
|
||||
<a href="http://flex.alxd.me/blog">Flex</a>
|
||||
</h1>
|
||||
|
||||
<p>The minimalist Pelican theme</p>
|
||||
|
||||
<nav>
|
||||
<ul class="list">
|
||||
|
||||
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/about.html#about">
|
||||
About
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/contact.html#contact">
|
||||
Contact
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<ul class="social">
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-aside"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="8752710348"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
</aside>
|
||||
<main>
|
||||
|
||||
<nav>
|
||||
<a href="http://flex.alxd.me/blog">Home</a>
|
||||
|
||||
<a href="/archives.html">Archives</a>
|
||||
<a href="/categories.html">Categories</a>
|
||||
<a href="/tags.html">Tags</a>
|
||||
|
||||
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml">Atom</a>
|
||||
|
||||
</nav>
|
||||
|
||||
<article class="single">
|
||||
<header>
|
||||
|
||||
<h1 id="flex-pelican-theme-update-1-1">Flex 1.1.0</h1>
|
||||
<p>
|
||||
Posted on October 07, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
</p>
|
||||
</header>
|
||||
|
||||
|
||||
<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>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 <a href="https://github.com/alexandrevicenzi/Flex/releases/tag/v1.1">second version</a> of Flex (aka v1.1).</p>
|
||||
<p>This new version doesn't include nothing so special, just some bug fix and a new setting to allow custom CSS stylesheets.</p>
|
||||
<p>The new custom setting can be used like this:</p>
|
||||
<div class="highlight"><pre><span></span><code><span class="n">EXTRA_PATH_METADATA</span> <span class="o">=</span> <span class="p">{</span>
|
||||
<span class="s1">'extra/custom.css'</span><span class="p">:</span> <span class="p">{</span><span class="s1">'path'</span><span class="p">:</span> <span class="s1">'static/custom.css'</span><span class="p">},</span>
|
||||
<span class="p">}</span>
|
||||
<span class="n">CUSTOM_CSS</span> <span class="o">=</span> <span class="s1">'static/custom.css'</span>
|
||||
</code></pre></div>
|
||||
|
||||
|
||||
<p>I would like to thank all who helped in this new version.</p>
|
||||
</div>
|
||||
<div class="tag-cloud">
|
||||
<p>
|
||||
<a href="http://flex.alxd.me/blog/tag/pelican.html">pelican</a>
|
||||
<a href="http://flex.alxd.me/blog/tag/python.html">python</a>
|
||||
<a href="http://flex.alxd.me/blog/tag/theme.html">theme</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="center social-share">
|
||||
<p>Like this article? Share it with your friends!</p>
|
||||
<div class="addthis_native_toolbox"></div>
|
||||
<div class="addthis_sharing_toolbox"></div>
|
||||
<div class="addthis_inline_share_toolbox"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="addthis_relatedposts_inline"></div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-responsive"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="4843941849"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
|
||||
<!-- Disqus -->
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="text/javascript">
|
||||
var disqus_shortname = 'flex-pelican';
|
||||
(function() {
|
||||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
||||
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
|
||||
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||
})();
|
||||
</script>
|
||||
<noscript>
|
||||
Please enable JavaScript to view comments.
|
||||
</noscript>
|
||||
<!-- End Disqus -->
|
||||
</article>
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
© 2020 - 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>
|
||||
Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
|
||||
<span class="footer-separator">|</span>
|
||||
Switch to the <a href="javascript:void(0)" onclick="theme.switch(`dark`)">dark</a> | <a href="javascript:void(0)" onclick="theme.switch(`light`)">light</a> | <a href="javascript:void(0)" onclick="theme.switch(`browser`)">browser</a> theme
|
||||
<script id="dark-theme-script"
|
||||
src="http://flex.alxd.me/blog/theme/dark-theme/dark-theme.min.js"
|
||||
data-enable-auto-detect-theme="True"
|
||||
data-default-theme="light"
|
||||
type="text/javascript">
|
||||
</script>
|
||||
</p><p>
|
||||
<a rel="license"
|
||||
href="http://creativecommons.org/licenses/by-sa/4.0/"
|
||||
target="_blank">
|
||||
<img alt="Creative Commons License"
|
||||
title="Creative Commons License"
|
||||
style="border-width:0"
|
||||
src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png"
|
||||
width="80"
|
||||
height="15"/>
|
||||
</a>
|
||||
</p> </footer>
|
||||
</main>
|
||||
|
||||
|
||||
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-55adbb025d4f7e55" async="async"></script>
|
||||
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context" : "http://schema.org",
|
||||
"@type" : "Blog",
|
||||
"name": " Flex ",
|
||||
"url" : "http://flex.alxd.me/blog",
|
||||
"image": "",
|
||||
"description": "Flex - The minimalist Pelican theme."
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,266 +0,0 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="HandheldFriendly" content="True" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
|
||||
<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 id="dark-theme-style" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/stylesheet/dark-theme.min.css">
|
||||
|
||||
<link id="pygments-dark-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
<link id="pygments-light-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
|
||||
|
||||
|
||||
<link href="http://flex.alxd.me/blog/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 -->
|
||||
<meta name="theme-color" content="#333333">
|
||||
<!-- Windows Phone -->
|
||||
<meta name="msapplication-navbutton-color" content="#333333">
|
||||
<!-- iOS Safari -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<!-- Microsoft EDGE -->
|
||||
<meta name="msapplication-TileColor" content="#333333">
|
||||
|
||||
<meta name="author" content="Alexandre Vicenzi" />
|
||||
<meta name="description" content="Flex theme received some new features. Version 1.2.0 include new features and some updates. For developers there are new color styles for your code. For general purpose there is RUM support, related posts and browser color configuration. Update font-awesome Added browser color configuration Related posts More Pygments Styles …" />
|
||||
<meta name="keywords" content="pelican, python, theme">
|
||||
|
||||
|
||||
<meta property="og:site_name" content="Flex"/>
|
||||
<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: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:type" content="article"/>
|
||||
<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:author" content="http://flex.alxd.me/blog/author/alexandre-vicenzi.html">
|
||||
<meta property="article:section" content="News"/>
|
||||
<meta property="article:tag" content="pelican"/>
|
||||
<meta property="article:tag" content="python"/>
|
||||
<meta property="article:tag" content="theme"/>
|
||||
<meta property="og:image" content="http://flex.alxd.me/blog/images/flex-screenshot.png">
|
||||
|
||||
<title>Flex – Flex 1.2.0</title>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({
|
||||
google_ad_client: "ca-pub-6625957038449899",
|
||||
enable_page_level_ads: true
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body >
|
||||
<aside>
|
||||
<div>
|
||||
<a href="http://flex.alxd.me/blog">
|
||||
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex">
|
||||
</a>
|
||||
|
||||
<h1>
|
||||
<a href="http://flex.alxd.me/blog">Flex</a>
|
||||
</h1>
|
||||
|
||||
<p>The minimalist Pelican theme</p>
|
||||
|
||||
<nav>
|
||||
<ul class="list">
|
||||
|
||||
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/about.html#about">
|
||||
About
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/contact.html#contact">
|
||||
Contact
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<ul class="social">
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-aside"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="8752710348"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
</aside>
|
||||
<main>
|
||||
|
||||
<nav>
|
||||
<a href="http://flex.alxd.me/blog">Home</a>
|
||||
|
||||
<a href="/archives.html">Archives</a>
|
||||
<a href="/categories.html">Categories</a>
|
||||
<a href="/tags.html">Tags</a>
|
||||
|
||||
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml">Atom</a>
|
||||
|
||||
</nav>
|
||||
|
||||
<article class="single">
|
||||
<header>
|
||||
|
||||
<h1 id="flex-pelican-theme-update-1-2-0">Flex 1.2.0</h1>
|
||||
<p>
|
||||
Posted on June 10, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
</p>
|
||||
</header>
|
||||
|
||||
|
||||
<div>
|
||||
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> received some new features. Version 1.2.0 include new features and some updates.</p>
|
||||
<p>For developers there are new color styles for your code. For general purpose there is RUM support, related posts and browser color configuration.</p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/31">Update font-awesome</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/issues/38">More Pygments Styles</a></li>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/16">Add StatusCake RUM support</a></li>
|
||||
</ul>
|
||||
<p>If you need help or want to report a bug, please open an <a href="https://github.com/alexandrevicenzi/Flex/issues">issue</a>.</p>
|
||||
<p>Hope you enjoy this theme.</p>
|
||||
</div>
|
||||
<div class="tag-cloud">
|
||||
<p>
|
||||
<a href="http://flex.alxd.me/blog/tag/pelican.html">pelican</a>
|
||||
<a href="http://flex.alxd.me/blog/tag/python.html">python</a>
|
||||
<a href="http://flex.alxd.me/blog/tag/theme.html">theme</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="center social-share">
|
||||
<p>Like this article? Share it with your friends!</p>
|
||||
<div class="addthis_native_toolbox"></div>
|
||||
<div class="addthis_sharing_toolbox"></div>
|
||||
<div class="addthis_inline_share_toolbox"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="addthis_relatedposts_inline"></div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-responsive"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="4843941849"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
|
||||
<!-- Disqus -->
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="text/javascript">
|
||||
var disqus_shortname = 'flex-pelican';
|
||||
(function() {
|
||||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
||||
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
|
||||
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||
})();
|
||||
</script>
|
||||
<noscript>
|
||||
Please enable JavaScript to view comments.
|
||||
</noscript>
|
||||
<!-- End Disqus -->
|
||||
</article>
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
© 2020 - 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>
|
||||
Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
|
||||
<span class="footer-separator">|</span>
|
||||
Switch to the <a href="javascript:void(0)" onclick="theme.switch(`dark`)">dark</a> | <a href="javascript:void(0)" onclick="theme.switch(`light`)">light</a> | <a href="javascript:void(0)" onclick="theme.switch(`browser`)">browser</a> theme
|
||||
<script id="dark-theme-script"
|
||||
src="http://flex.alxd.me/blog/theme/dark-theme/dark-theme.min.js"
|
||||
data-enable-auto-detect-theme="True"
|
||||
data-default-theme="light"
|
||||
type="text/javascript">
|
||||
</script>
|
||||
</p><p>
|
||||
<a rel="license"
|
||||
href="http://creativecommons.org/licenses/by-sa/4.0/"
|
||||
target="_blank">
|
||||
<img alt="Creative Commons License"
|
||||
title="Creative Commons License"
|
||||
style="border-width:0"
|
||||
src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png"
|
||||
width="80"
|
||||
height="15"/>
|
||||
</a>
|
||||
</p> </footer>
|
||||
</main>
|
||||
|
||||
|
||||
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-55adbb025d4f7e55" async="async"></script>
|
||||
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context" : "http://schema.org",
|
||||
"@type" : "Blog",
|
||||
"name": " Flex ",
|
||||
"url" : "http://flex.alxd.me/blog",
|
||||
"image": "",
|
||||
"description": "Flex - The minimalist Pelican theme."
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,279 +0,0 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="HandheldFriendly" content="True" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
|
||||
<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 id="dark-theme-style" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/stylesheet/dark-theme.min.css">
|
||||
|
||||
<link id="pygments-dark-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
<link id="pygments-light-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
|
||||
|
||||
|
||||
<link href="http://flex.alxd.me/blog/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 -->
|
||||
<meta name="theme-color" content="#333333">
|
||||
<!-- Windows Phone -->
|
||||
<meta name="msapplication-navbutton-color" content="#333333">
|
||||
<!-- iOS Safari -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<!-- Microsoft EDGE -->
|
||||
<meta name="msapplication-TileColor" content="#333333">
|
||||
|
||||
<meta name="author" content="Alexandre Vicenzi" />
|
||||
<meta name="description" content="Flex theme 2.0 comes with new features. In fact there are two new features. The biggest change is localization support. Yes, Flex now can be translated into your language. You can read about here. The biggest challege was to create a way to translate without breaking old versions. If …" />
|
||||
<meta name="keywords" content="pelican, python, theme">
|
||||
|
||||
|
||||
<meta property="og:site_name" content="Flex"/>
|
||||
<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:locale" content="en_US"/>
|
||||
<meta property="og:url" content="http://flex.alxd.me/blog/flex-pelican-theme-update-2-0.html"/>
|
||||
<meta property="og:type" content="article"/>
|
||||
<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:author" content="http://flex.alxd.me/blog/author/alexandre-vicenzi.html">
|
||||
<meta property="article:section" content="News"/>
|
||||
<meta property="article:tag" content="pelican"/>
|
||||
<meta property="article:tag" content="python"/>
|
||||
<meta property="article:tag" content="theme"/>
|
||||
<meta property="og:image" content="http://flex.alxd.me/blog/images/flex-screenshot.png">
|
||||
|
||||
<title>Flex – Flex 2.0</title>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({
|
||||
google_ad_client: "ca-pub-6625957038449899",
|
||||
enable_page_level_ads: true
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body >
|
||||
<aside>
|
||||
<div>
|
||||
<a href="http://flex.alxd.me/blog">
|
||||
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex">
|
||||
</a>
|
||||
|
||||
<h1>
|
||||
<a href="http://flex.alxd.me/blog">Flex</a>
|
||||
</h1>
|
||||
|
||||
<p>The minimalist Pelican theme</p>
|
||||
|
||||
<nav>
|
||||
<ul class="list">
|
||||
|
||||
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/about.html#about">
|
||||
About
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/contact.html#contact">
|
||||
Contact
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<ul class="social">
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-aside"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="8752710348"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
</aside>
|
||||
<main>
|
||||
|
||||
<nav>
|
||||
<a href="http://flex.alxd.me/blog">Home</a>
|
||||
|
||||
<a href="/archives.html">Archives</a>
|
||||
<a href="/categories.html">Categories</a>
|
||||
<a href="/tags.html">Tags</a>
|
||||
|
||||
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml">Atom</a>
|
||||
|
||||
</nav>
|
||||
|
||||
<article class="single">
|
||||
<header>
|
||||
|
||||
<h1 id="flex-pelican-theme-update-2-0">Flex 2.0</h1>
|
||||
<p>
|
||||
Posted on September 13, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
</p>
|
||||
</header>
|
||||
|
||||
|
||||
<div>
|
||||
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.0 comes with new features.
|
||||
In fact there are two new features.</p>
|
||||
<p>The biggest change is localization support.
|
||||
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>
|
||||
<p>The biggest challege was to create a way to translate without breaking old versions.
|
||||
If you use English it changes nothing for you.
|
||||
But if you want to use translation you need to add new lines to your pelican configuration file.</p>
|
||||
<p>Here is a small example to use Flex in another language.</p>
|
||||
<div class="highlight"><pre><span></span><code><span class="c1"># Enable i18n plugin, probably you already have some others here.</span>
|
||||
<span class="n">PLUGINS</span> <span class="o">=</span> <span class="p">[</span><span class="s1">'i18n_subsites'</span><span class="p">]</span>
|
||||
<span class="c1"># Enable Jinja2 i18n extension used to parse translations.</span>
|
||||
<span class="n">JINJA_EXTENSIONS</span> <span class="o">=</span> <span class="p">[</span><span class="s1">'jinja2.ext.i18n'</span><span class="p">]</span>
|
||||
<span class="c1"># Default theme language.</span>
|
||||
<span class="n">I18N_TEMPLATES_LANG</span> <span class="o">=</span> <span class="s1">'en'</span>
|
||||
<span class="c1"># Your language.</span>
|
||||
<span class="n">DEFAULT_LANG</span> <span class="o">=</span> <span class="s1">'de'</span>
|
||||
<span class="n">OG_LOCALE</span> <span class="o">=</span> <span class="s1">'de_DE'</span>
|
||||
<span class="n">LOCALE</span> <span class="o">=</span> <span class="s1">'de_DE'</span>
|
||||
</code></pre></div>
|
||||
|
||||
|
||||
<p>Last but not least, Flex supports the feature "X minute read", similar <a href="https://medium.com/">Medium</a>.</p>
|
||||
<p>Hope you enjoy this version.</p>
|
||||
</div>
|
||||
<div class="tag-cloud">
|
||||
<p>
|
||||
<a href="http://flex.alxd.me/blog/tag/pelican.html">pelican</a>
|
||||
<a href="http://flex.alxd.me/blog/tag/python.html">python</a>
|
||||
<a href="http://flex.alxd.me/blog/tag/theme.html">theme</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="center social-share">
|
||||
<p>Like this article? Share it with your friends!</p>
|
||||
<div class="addthis_native_toolbox"></div>
|
||||
<div class="addthis_sharing_toolbox"></div>
|
||||
<div class="addthis_inline_share_toolbox"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="addthis_relatedposts_inline"></div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-responsive"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="4843941849"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
|
||||
<!-- Disqus -->
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="text/javascript">
|
||||
var disqus_shortname = 'flex-pelican';
|
||||
(function() {
|
||||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
||||
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
|
||||
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||
})();
|
||||
</script>
|
||||
<noscript>
|
||||
Please enable JavaScript to view comments.
|
||||
</noscript>
|
||||
<!-- End Disqus -->
|
||||
</article>
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
© 2020 - 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>
|
||||
Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
|
||||
<span class="footer-separator">|</span>
|
||||
Switch to the <a href="javascript:void(0)" onclick="theme.switch(`dark`)">dark</a> | <a href="javascript:void(0)" onclick="theme.switch(`light`)">light</a> | <a href="javascript:void(0)" onclick="theme.switch(`browser`)">browser</a> theme
|
||||
<script id="dark-theme-script"
|
||||
src="http://flex.alxd.me/blog/theme/dark-theme/dark-theme.min.js"
|
||||
data-enable-auto-detect-theme="True"
|
||||
data-default-theme="light"
|
||||
type="text/javascript">
|
||||
</script>
|
||||
</p><p>
|
||||
<a rel="license"
|
||||
href="http://creativecommons.org/licenses/by-sa/4.0/"
|
||||
target="_blank">
|
||||
<img alt="Creative Commons License"
|
||||
title="Creative Commons License"
|
||||
style="border-width:0"
|
||||
src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png"
|
||||
width="80"
|
||||
height="15"/>
|
||||
</a>
|
||||
</p> </footer>
|
||||
</main>
|
||||
|
||||
|
||||
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-55adbb025d4f7e55" async="async"></script>
|
||||
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context" : "http://schema.org",
|
||||
"@type" : "Blog",
|
||||
"name": " Flex ",
|
||||
"url" : "http://flex.alxd.me/blog",
|
||||
"image": "",
|
||||
"description": "Flex - The minimalist Pelican theme."
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,277 +0,0 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="HandheldFriendly" content="True" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
|
||||
<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 id="dark-theme-style" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/stylesheet/dark-theme.min.css">
|
||||
|
||||
<link id="pygments-dark-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
<link id="pygments-light-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
|
||||
|
||||
|
||||
<link href="http://flex.alxd.me/blog/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 -->
|
||||
<meta name="theme-color" content="#333333">
|
||||
<!-- Windows Phone -->
|
||||
<meta name="msapplication-navbutton-color" content="#333333">
|
||||
<!-- iOS Safari -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<!-- Microsoft EDGE -->
|
||||
<meta name="msapplication-TileColor" content="#333333">
|
||||
|
||||
<meta name="author" content="Alexandre Vicenzi" />
|
||||
<meta name="description" content="Flex theme 2.1.0 comes with features that I was delaying for so long. Flex 2.1.0 adds support for Google AdSense. If you choose wisely, ads are a way to win some money, but if not, you may loose your users due to excessive use of ads …" />
|
||||
<meta name="keywords" content="pelican, python, theme">
|
||||
|
||||
|
||||
<meta property="og:site_name" content="Flex"/>
|
||||
<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:locale" content="en_US"/>
|
||||
<meta property="og:url" content="http://flex.alxd.me/blog/flex-pelican-theme-update-2-1.html"/>
|
||||
<meta property="og:type" content="article"/>
|
||||
<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:author" content="http://flex.alxd.me/blog/author/alexandre-vicenzi.html">
|
||||
<meta property="article:section" content="News"/>
|
||||
<meta property="article:tag" content="pelican"/>
|
||||
<meta property="article:tag" content="python"/>
|
||||
<meta property="article:tag" content="theme"/>
|
||||
<meta property="og:image" content="http://flex.alxd.me/blog/images/flex-screenshot.png">
|
||||
|
||||
<title>Flex – Flex 2.1.0</title>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({
|
||||
google_ad_client: "ca-pub-6625957038449899",
|
||||
enable_page_level_ads: true
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body >
|
||||
<aside>
|
||||
<div>
|
||||
<a href="http://flex.alxd.me/blog">
|
||||
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex">
|
||||
</a>
|
||||
|
||||
<h1>
|
||||
<a href="http://flex.alxd.me/blog">Flex</a>
|
||||
</h1>
|
||||
|
||||
<p>The minimalist Pelican theme</p>
|
||||
|
||||
<nav>
|
||||
<ul class="list">
|
||||
|
||||
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/about.html#about">
|
||||
About
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/contact.html#contact">
|
||||
Contact
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<ul class="social">
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-aside"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="8752710348"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
</aside>
|
||||
<main>
|
||||
|
||||
<nav>
|
||||
<a href="http://flex.alxd.me/blog">Home</a>
|
||||
|
||||
<a href="/archives.html">Archives</a>
|
||||
<a href="/categories.html">Categories</a>
|
||||
<a href="/tags.html">Tags</a>
|
||||
|
||||
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml">Atom</a>
|
||||
|
||||
</nav>
|
||||
|
||||
<article class="single">
|
||||
<header>
|
||||
|
||||
<h1 id="flex-pelican-theme-update-2-1">Flex 2.1.0</h1>
|
||||
<p>
|
||||
Posted on November 16, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
</p>
|
||||
</header>
|
||||
|
||||
|
||||
<div>
|
||||
<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>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>Flex has six places for ads. Google recommends up to 3 ads per page. There is ads page only, and banner that appears on all pages.
|
||||
Below you can see how to enable ads in your pelican configuration file.</p>
|
||||
<div class="highlight"><pre><span></span><code><span class="n">GOOGLE_ADSENSE</span> <span class="o">=</span> <span class="p">{</span>
|
||||
<span class="s1">'ca_id'</span><span class="p">:</span> <span class="s1">'ca-pub-1234567890'</span><span class="p">,</span> <span class="c1"># Your AdSense ID</span>
|
||||
<span class="s1">'page_level_ads'</span><span class="p">:</span> <span class="bp">True</span><span class="p">,</span> <span class="c1"># Allow Page Level Ads (mobile)</span>
|
||||
<span class="s1">'ads'</span><span class="p">:</span> <span class="p">{</span>
|
||||
<span class="s1">'aside'</span><span class="p">:</span> <span class="s1">'1234561'</span><span class="p">,</span> <span class="c1"># Side bar banner (all pages)</span>
|
||||
<span class="s1">'main_menu'</span><span class="p">:</span> <span class="s1">'1234562'</span><span class="p">,</span> <span class="c1"># Banner before main menu (all pages)</span>
|
||||
<span class="s1">'index_top'</span><span class="p">:</span> <span class="s1">'1234563'</span><span class="p">,</span> <span class="c1"># Banner after main menu (index only)</span>
|
||||
<span class="s1">'index_bottom'</span><span class="p">:</span> <span class="s1">'1234564'</span><span class="p">,</span> <span class="c1"># Banner before footer (index only)</span>
|
||||
<span class="s1">'article_top'</span><span class="p">:</span> <span class="s1">'1234565'</span><span class="p">,</span> <span class="c1"># Banner after article title (article only)</span>
|
||||
<span class="s1">'article_bottom'</span><span class="p">:</span> <span class="s1">'1234566'</span><span class="p">,</span> <span class="c1"># Banner after article content (article only)</span>
|
||||
<span class="p">}</span>
|
||||
<span class="p">}</span>
|
||||
</code></pre></div>
|
||||
|
||||
|
||||
<p>Version 2.1.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>
|
||||
</div>
|
||||
<div class="tag-cloud">
|
||||
<p>
|
||||
<a href="http://flex.alxd.me/blog/tag/pelican.html">pelican</a>
|
||||
<a href="http://flex.alxd.me/blog/tag/python.html">python</a>
|
||||
<a href="http://flex.alxd.me/blog/tag/theme.html">theme</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="center social-share">
|
||||
<p>Like this article? Share it with your friends!</p>
|
||||
<div class="addthis_native_toolbox"></div>
|
||||
<div class="addthis_sharing_toolbox"></div>
|
||||
<div class="addthis_inline_share_toolbox"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="addthis_relatedposts_inline"></div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-responsive"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="4843941849"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
|
||||
<!-- Disqus -->
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="text/javascript">
|
||||
var disqus_shortname = 'flex-pelican';
|
||||
(function() {
|
||||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
||||
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
|
||||
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||
})();
|
||||
</script>
|
||||
<noscript>
|
||||
Please enable JavaScript to view comments.
|
||||
</noscript>
|
||||
<!-- End Disqus -->
|
||||
</article>
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
© 2020 - 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>
|
||||
Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
|
||||
<span class="footer-separator">|</span>
|
||||
Switch to the <a href="javascript:void(0)" onclick="theme.switch(`dark`)">dark</a> | <a href="javascript:void(0)" onclick="theme.switch(`light`)">light</a> | <a href="javascript:void(0)" onclick="theme.switch(`browser`)">browser</a> theme
|
||||
<script id="dark-theme-script"
|
||||
src="http://flex.alxd.me/blog/theme/dark-theme/dark-theme.min.js"
|
||||
data-enable-auto-detect-theme="True"
|
||||
data-default-theme="light"
|
||||
type="text/javascript">
|
||||
</script>
|
||||
</p><p>
|
||||
<a rel="license"
|
||||
href="http://creativecommons.org/licenses/by-sa/4.0/"
|
||||
target="_blank">
|
||||
<img alt="Creative Commons License"
|
||||
title="Creative Commons License"
|
||||
style="border-width:0"
|
||||
src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png"
|
||||
width="80"
|
||||
height="15"/>
|
||||
</a>
|
||||
</p> </footer>
|
||||
</main>
|
||||
|
||||
|
||||
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-55adbb025d4f7e55" async="async"></script>
|
||||
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context" : "http://schema.org",
|
||||
"@type" : "Blog",
|
||||
"name": " Flex ",
|
||||
"url" : "http://flex.alxd.me/blog",
|
||||
"image": "",
|
||||
"description": "Flex - The minimalist Pelican theme."
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,259 +0,0 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="HandheldFriendly" content="True" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
|
||||
<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 id="dark-theme-style" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/stylesheet/dark-theme.min.css">
|
||||
|
||||
<link id="pygments-dark-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
<link id="pygments-light-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
|
||||
|
||||
|
||||
<link href="http://flex.alxd.me/blog/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 -->
|
||||
<meta name="theme-color" content="#333333">
|
||||
<!-- Windows Phone -->
|
||||
<meta name="msapplication-navbutton-color" content="#333333">
|
||||
<!-- iOS Safari -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<!-- Microsoft EDGE -->
|
||||
<meta name="msapplication-TileColor" content="#333333">
|
||||
|
||||
<meta name="author" content="Alexandre Vicenzi" />
|
||||
<meta name="description" content="Flex theme 2.2.0 comes with bug fixes and improvements. There are new Pygments templates and also a few code highlight fixes. There's also new social icons. Version 2.2.0 also comes with new translations. You can see available translations here. Hope you enjoy this version." />
|
||||
<meta name="keywords" content="pelican, python, theme">
|
||||
|
||||
|
||||
<meta property="og:site_name" content="Flex"/>
|
||||
<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'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:url" content="http://flex.alxd.me/blog/flex-pelican-theme-update-2-2.html"/>
|
||||
<meta property="og:type" content="article"/>
|
||||
<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:author" content="http://flex.alxd.me/blog/author/alexandre-vicenzi.html">
|
||||
<meta property="article:section" content="News"/>
|
||||
<meta property="article:tag" content="pelican"/>
|
||||
<meta property="article:tag" content="python"/>
|
||||
<meta property="article:tag" content="theme"/>
|
||||
<meta property="og:image" content="http://flex.alxd.me/blog/images/flex-screenshot.png">
|
||||
|
||||
<title>Flex – Flex 2.2.0</title>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({
|
||||
google_ad_client: "ca-pub-6625957038449899",
|
||||
enable_page_level_ads: true
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body >
|
||||
<aside>
|
||||
<div>
|
||||
<a href="http://flex.alxd.me/blog">
|
||||
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex">
|
||||
</a>
|
||||
|
||||
<h1>
|
||||
<a href="http://flex.alxd.me/blog">Flex</a>
|
||||
</h1>
|
||||
|
||||
<p>The minimalist Pelican theme</p>
|
||||
|
||||
<nav>
|
||||
<ul class="list">
|
||||
|
||||
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/about.html#about">
|
||||
About
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/contact.html#contact">
|
||||
Contact
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<ul class="social">
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-aside"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="8752710348"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
</aside>
|
||||
<main>
|
||||
|
||||
<nav>
|
||||
<a href="http://flex.alxd.me/blog">Home</a>
|
||||
|
||||
<a href="/archives.html">Archives</a>
|
||||
<a href="/categories.html">Categories</a>
|
||||
<a href="/tags.html">Tags</a>
|
||||
|
||||
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml">Atom</a>
|
||||
|
||||
</nav>
|
||||
|
||||
<article class="single">
|
||||
<header>
|
||||
|
||||
<h1 id="flex-pelican-theme-update-2-2">Flex 2.2.0</h1>
|
||||
<p>
|
||||
Posted on June 24, 2018 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
</p>
|
||||
</header>
|
||||
|
||||
|
||||
<div>
|
||||
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.2.0 comes with bug fixes and improvements.</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>Hope you enjoy this version.</p>
|
||||
</div>
|
||||
<div class="tag-cloud">
|
||||
<p>
|
||||
<a href="http://flex.alxd.me/blog/tag/pelican.html">pelican</a>
|
||||
<a href="http://flex.alxd.me/blog/tag/python.html">python</a>
|
||||
<a href="http://flex.alxd.me/blog/tag/theme.html">theme</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="center social-share">
|
||||
<p>Like this article? Share it with your friends!</p>
|
||||
<div class="addthis_native_toolbox"></div>
|
||||
<div class="addthis_sharing_toolbox"></div>
|
||||
<div class="addthis_inline_share_toolbox"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="addthis_relatedposts_inline"></div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-responsive"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="4843941849"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
|
||||
<!-- Disqus -->
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="text/javascript">
|
||||
var disqus_shortname = 'flex-pelican';
|
||||
(function() {
|
||||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
||||
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
|
||||
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||
})();
|
||||
</script>
|
||||
<noscript>
|
||||
Please enable JavaScript to view comments.
|
||||
</noscript>
|
||||
<!-- End Disqus -->
|
||||
</article>
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
© 2020 - 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>
|
||||
Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
|
||||
<span class="footer-separator">|</span>
|
||||
Switch to the <a href="javascript:void(0)" onclick="theme.switch(`dark`)">dark</a> | <a href="javascript:void(0)" onclick="theme.switch(`light`)">light</a> | <a href="javascript:void(0)" onclick="theme.switch(`browser`)">browser</a> theme
|
||||
<script id="dark-theme-script"
|
||||
src="http://flex.alxd.me/blog/theme/dark-theme/dark-theme.min.js"
|
||||
data-enable-auto-detect-theme="True"
|
||||
data-default-theme="light"
|
||||
type="text/javascript">
|
||||
</script>
|
||||
</p><p>
|
||||
<a rel="license"
|
||||
href="http://creativecommons.org/licenses/by-sa/4.0/"
|
||||
target="_blank">
|
||||
<img alt="Creative Commons License"
|
||||
title="Creative Commons License"
|
||||
style="border-width:0"
|
||||
src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png"
|
||||
width="80"
|
||||
height="15"/>
|
||||
</a>
|
||||
</p> </footer>
|
||||
</main>
|
||||
|
||||
|
||||
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-55adbb025d4f7e55" async="async"></script>
|
||||
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context" : "http://schema.org",
|
||||
"@type" : "Blog",
|
||||
"name": " Flex ",
|
||||
"url" : "http://flex.alxd.me/blog",
|
||||
"image": "",
|
||||
"description": "Flex - The minimalist Pelican theme."
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,343 +0,0 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="HandheldFriendly" content="True" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
|
||||
<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 id="dark-theme-style" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/stylesheet/dark-theme.min.css">
|
||||
|
||||
<link id="pygments-dark-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
<link id="pygments-light-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
|
||||
|
||||
|
||||
<link href="http://flex.alxd.me/blog/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 -->
|
||||
<meta name="theme-color" content="#333333">
|
||||
<!-- Windows Phone -->
|
||||
<meta name="msapplication-navbutton-color" content="#333333">
|
||||
<!-- iOS Safari -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<!-- Microsoft EDGE -->
|
||||
<meta name="msapplication-TileColor" content="#333333">
|
||||
|
||||
<meta name="author" content="Alexandre Vicenzi" />
|
||||
<meta name="description" content="I just start a new fresh blog using Pelican. Sometimes choosing a theme for a new site is something difficult that takes time. In the Pelican theme gallery, I couldn't find anything that I really liked to feet all my needs. So in the first time of the history, I …" />
|
||||
<meta name="keywords" content="pelican, python, theme">
|
||||
|
||||
|
||||
<meta property="og:site_name" content="Flex"/>
|
||||
<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'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:url" content="http://flex.alxd.me/blog/flex-pelican-theme.html"/>
|
||||
<meta property="og:type" content="article"/>
|
||||
<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:author" content="http://flex.alxd.me/blog/author/alexandre-vicenzi.html">
|
||||
<meta property="article:section" content="News"/>
|
||||
<meta property="article:tag" content="pelican"/>
|
||||
<meta property="article:tag" content="python"/>
|
||||
<meta property="article:tag" content="theme"/>
|
||||
<meta property="og:image" content="http://flex.alxd.me/blog/images/flex-screenshot.png">
|
||||
|
||||
<title>Flex – Flex: Responsive Pelican theme</title>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({
|
||||
google_ad_client: "ca-pub-6625957038449899",
|
||||
enable_page_level_ads: true
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body >
|
||||
<aside>
|
||||
<div>
|
||||
<a href="http://flex.alxd.me/blog">
|
||||
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex">
|
||||
</a>
|
||||
|
||||
<h1>
|
||||
<a href="http://flex.alxd.me/blog">Flex</a>
|
||||
</h1>
|
||||
|
||||
<p>The minimalist Pelican theme</p>
|
||||
|
||||
<nav>
|
||||
<ul class="list">
|
||||
|
||||
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/about.html#about">
|
||||
About
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/contact.html#contact">
|
||||
Contact
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<ul class="social">
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-aside"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="8752710348"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
</aside>
|
||||
<main>
|
||||
|
||||
<nav>
|
||||
<a href="http://flex.alxd.me/blog">Home</a>
|
||||
|
||||
<a href="/archives.html">Archives</a>
|
||||
<a href="/categories.html">Categories</a>
|
||||
<a href="/tags.html">Tags</a>
|
||||
|
||||
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml">Atom</a>
|
||||
|
||||
</nav>
|
||||
|
||||
<article class="single">
|
||||
<header>
|
||||
|
||||
<h1 id="flex-pelican-theme">Flex: Responsive Pelican theme</h1>
|
||||
<p>
|
||||
Posted on July 22, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
</p>
|
||||
</header>
|
||||
|
||||
|
||||
<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>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 choose to create my own theme. I never did this before.</p>
|
||||
<p>Creating a theme for Pelican is quite easy, unlike Wordpress. You can take a look in the <a href="https://github.com/alexandrevicenzi/Flex">Source Code of Flex</a>.</p>
|
||||
<p>But how Flex looks like? Well, you can see <a href="images/flex-screenshot.png">this screenshot</a>, but you already know how it looks like, you're looking at it. :D</p>
|
||||
<p>I really care about SEO and integrations with Facebook, Google Plus and other social networks, so this theme offers some features:</p>
|
||||
<ul>
|
||||
<li>Mobile First</li>
|
||||
<li>Responsive</li>
|
||||
<li>Semantic</li>
|
||||
<li>SEO Best Practices</li>
|
||||
<li>Open Graph</li>
|
||||
<li>Rich Snippets (JSON-LD)</li>
|
||||
</ul>
|
||||
<p>Maybe these features are not fully optimized, but I'll improve.</p>
|
||||
<p>Flex also offers integrations with multiple services.</p>
|
||||
<blockquote>
|
||||
<p><strong>Tip:</strong></p>
|
||||
<p>You can easyly integrate with:</p>
|
||||
<ul>
|
||||
<li>AddThis</li>
|
||||
<li>Disqus</li>
|
||||
<li>Google Analytics</li>
|
||||
<li>Google Tag Manager</li>
|
||||
<li>StatusCake</li>
|
||||
</ul>
|
||||
</blockquote>
|
||||
<p>Flex is a theme built by a developer for developers, but of course, you can use for any purpose. In this scenario, Flex is able to create good styles for coding, outputs and samples.</p>
|
||||
<p>If you need to show some program output you can use <code>samp</code> tag to look like this:</p>
|
||||
<p><samp>Done: Processed 4 articles, 0 drafts, 2 pages and 0 hidden pages in 0.22 seconds.</samp></p>
|
||||
<p>Or if you want multiple lines:</p>
|
||||
<p><samp>
|
||||
total used free shared buffers cached
|
||||
Mem: 5866 4674 1192 386 0 2404
|
||||
-/+ buffers/cache: 2269 3596
|
||||
Swap: 20480 1267 19213
|
||||
</samp></p>
|
||||
<p>If you like to share code snippets, you can take advantage of <a href="http://pygments.org/">Pygments</a> syntax highlighting:</p>
|
||||
<div class="highlight"><pre><span></span><code><span class="c1">// Foo</span>
|
||||
<span class="kd">var</span> <span class="nx">bar</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span>
|
||||
</code></pre></div>
|
||||
|
||||
|
||||
<div class="highlight"><pre><span></span><code><span class="k">class</span> <span class="nc">Foo</span><span class="p">(</span><span class="nb">object</span><span class="p">):</span>
|
||||
<span class="k">def</span> <span class="fm">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">bar</span><span class="p">)</span>
|
||||
<span class="bp">self</span><span class="o">.</span><span class="n">bar</span> <span class="o">=</span> <span class="n">bar</span>
|
||||
</code></pre></div>
|
||||
|
||||
|
||||
<div class="highlight"><pre><span></span><code>ls *.jpg <span class="p">|</span> xargs -n1 -i cp <span class="o">{}</span> /external-hard-drive/directory
|
||||
</code></pre></div>
|
||||
|
||||
|
||||
<p><strong>Note:</strong> The code block looks like GitHub’s colors.</p>
|
||||
<p>You can add tables too:</p>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Item</th>
|
||||
<th>Value</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Computer</td>
|
||||
<td>$1600</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Phone</td>
|
||||
<td>$12</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Pipe</td>
|
||||
<td>$1</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p>and how heading looks like?</p>
|
||||
<h1>This is heading 1</h1>
|
||||
<h2>This is heading 2</h2>
|
||||
<h3>This is heading 3</h3>
|
||||
<h4>This is heading 4</h4>
|
||||
<h5>This is heading 5</h5>
|
||||
<h6>This is heading 6</h6>
|
||||
<p>This examples are in Markdown. I'm not sure how it will look using reStructuredText. Keep in mind that Markdown allows you to add HTML tags. If you can create the same HTML syntax produced by Markdown using reStructuredText it will work.</p>
|
||||
<p>You can take a look in the <a href="https://raw.githubusercontent.com/alexandrevicenzi/blog/master/content/News/flex-pelican-theme.md">source code of this page</a> to know how to create rich examples.</p>
|
||||
<p>Flex is my first attempt creating themes and there's no IE testing yet. You can check the <a href="https://github.com/alexandrevicenzi/flex">sources here</a>.</p>
|
||||
<p>As soon as possible I will add this project to Pelican gallery.</p>
|
||||
<p>Drop a comment if you like this theme, or <a href="https://github.com/alexandrevicenzi/Flex/issues">open an issue</a> if you need a feature or found a bug.</p>
|
||||
</div>
|
||||
<div class="tag-cloud">
|
||||
<p>
|
||||
<a href="http://flex.alxd.me/blog/tag/pelican.html">pelican</a>
|
||||
<a href="http://flex.alxd.me/blog/tag/python.html">python</a>
|
||||
<a href="http://flex.alxd.me/blog/tag/theme.html">theme</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="center social-share">
|
||||
<p>Like this article? Share it with your friends!</p>
|
||||
<div class="addthis_native_toolbox"></div>
|
||||
<div class="addthis_sharing_toolbox"></div>
|
||||
<div class="addthis_inline_share_toolbox"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="addthis_relatedposts_inline"></div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-responsive"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="4843941849"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
|
||||
<!-- Disqus -->
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="text/javascript">
|
||||
var disqus_shortname = 'flex-pelican';
|
||||
(function() {
|
||||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
||||
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
|
||||
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||
})();
|
||||
</script>
|
||||
<noscript>
|
||||
Please enable JavaScript to view comments.
|
||||
</noscript>
|
||||
<!-- End Disqus -->
|
||||
</article>
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
© 2020 - 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>
|
||||
Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
|
||||
<span class="footer-separator">|</span>
|
||||
Switch to the <a href="javascript:void(0)" onclick="theme.switch(`dark`)">dark</a> | <a href="javascript:void(0)" onclick="theme.switch(`light`)">light</a> | <a href="javascript:void(0)" onclick="theme.switch(`browser`)">browser</a> theme
|
||||
<script id="dark-theme-script"
|
||||
src="http://flex.alxd.me/blog/theme/dark-theme/dark-theme.min.js"
|
||||
data-enable-auto-detect-theme="True"
|
||||
data-default-theme="light"
|
||||
type="text/javascript">
|
||||
</script>
|
||||
</p><p>
|
||||
<a rel="license"
|
||||
href="http://creativecommons.org/licenses/by-sa/4.0/"
|
||||
target="_blank">
|
||||
<img alt="Creative Commons License"
|
||||
title="Creative Commons License"
|
||||
style="border-width:0"
|
||||
src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png"
|
||||
width="80"
|
||||
height="15"/>
|
||||
</a>
|
||||
</p> </footer>
|
||||
</main>
|
||||
|
||||
|
||||
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-55adbb025d4f7e55" async="async"></script>
|
||||
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context" : "http://schema.org",
|
||||
"@type" : "Blog",
|
||||
"name": " Flex ",
|
||||
"url" : "http://flex.alxd.me/blog",
|
||||
"image": "",
|
||||
"description": "Flex - The minimalist Pelican theme."
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
Before Width: | Height: | Size: 151 KiB |
|
@ -1,351 +0,0 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="HandheldFriendly" content="True" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
|
||||
<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 id="dark-theme-style" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/stylesheet/dark-theme.min.css">
|
||||
|
||||
<link id="pygments-dark-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
<link id="pygments-light-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
|
||||
|
||||
|
||||
<link href="http://flex.alxd.me/blog/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 -->
|
||||
<meta name="theme-color" content="#333333">
|
||||
<!-- Windows Phone -->
|
||||
<meta name="msapplication-navbutton-color" content="#333333">
|
||||
<!-- iOS Safari -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<!-- Microsoft EDGE -->
|
||||
<meta name="msapplication-TileColor" content="#333333">
|
||||
|
||||
<meta name="author" content="Alexandre Vicenzi" />
|
||||
<meta name="description" content="Flex - The minimalist Pelican theme." />
|
||||
<meta property="og:site_name" content="Flex"/>
|
||||
<meta property="og:type" content="blog"/>
|
||||
<meta property="og:title" content="Flex"/>
|
||||
<meta property="og:description" content="Flex - The minimalist Pelican theme."/>
|
||||
<meta property="og:locale" content="en_US"/>
|
||||
<meta property="og:url" content="http://flex.alxd.me/blog"/>
|
||||
|
||||
<title>Flex</title>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({
|
||||
google_ad_client: "ca-pub-6625957038449899",
|
||||
enable_page_level_ads: true
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body >
|
||||
<aside>
|
||||
<div>
|
||||
<a href="http://flex.alxd.me/blog">
|
||||
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex">
|
||||
</a>
|
||||
|
||||
<h1>
|
||||
<a href="http://flex.alxd.me/blog">Flex</a>
|
||||
</h1>
|
||||
|
||||
<p>The minimalist Pelican theme</p>
|
||||
|
||||
<nav>
|
||||
<ul class="list">
|
||||
|
||||
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/about.html#about">
|
||||
About
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/contact.html#contact">
|
||||
Contact
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<ul class="social">
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-aside"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="8752710348"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
</aside>
|
||||
<main>
|
||||
|
||||
<nav>
|
||||
<a href="http://flex.alxd.me/blog">Home</a>
|
||||
|
||||
<a href="/archives.html">Archives</a>
|
||||
<a href="/categories.html">Categories</a>
|
||||
<a href="/tags.html">Tags</a>
|
||||
|
||||
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml">Atom</a>
|
||||
|
||||
</nav>
|
||||
|
||||
|
||||
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on June 24, 2018 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.2.0 comes with bug fixes and improvements.</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>Hope you enjoy this version.</p>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on November 16, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<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>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>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on September 13, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.0 comes with new features.
|
||||
In fact there are two new features.</p>
|
||||
<p>The biggest change is localization support.
|
||||
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>
|
||||
<p>The biggest challege was to create a way to translate without breaking old versions.
|
||||
If …</p>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on June 10, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> received some new features. Version 1.2.0 include new features and some updates.</p>
|
||||
<p>For developers there are new color styles for your code. For general purpose there is RUM support, related posts and browser color configuration.</p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/31">Update font-awesome</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/issues/38">More Pygments Styles …</a></li></ul>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on February 27, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p>Today, <a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> received a small update.</p>
|
||||
<p>Some bugs are now fixed. I think the most important fixes are:</p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/21">Bug in CSS with placement of "Newer Posts" button</a></li>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/14">Posts preview on main page</a></li>
|
||||
</ul>
|
||||
<p>Hope you enjoy this theme.</p>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on October 07, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<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>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>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<header>
|
||||
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme">Flex: Responsive Pelican theme</a></h2>
|
||||
<p>
|
||||
Posted on July 22, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<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>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>
|
||||
<a class="btn"
|
||||
href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme">
|
||||
Continue reading
|
||||
</a>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="pagination">
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-responsive"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="1124188687"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
© 2020 - 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>
|
||||
Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
|
||||
<span class="footer-separator">|</span>
|
||||
Switch to the <a href="javascript:void(0)" onclick="theme.switch(`dark`)">dark</a> | <a href="javascript:void(0)" onclick="theme.switch(`light`)">light</a> | <a href="javascript:void(0)" onclick="theme.switch(`browser`)">browser</a> theme
|
||||
<script id="dark-theme-script"
|
||||
src="http://flex.alxd.me/blog/theme/dark-theme/dark-theme.min.js"
|
||||
data-enable-auto-detect-theme="True"
|
||||
data-default-theme="light"
|
||||
type="text/javascript">
|
||||
</script>
|
||||
</p><p>
|
||||
<a rel="license"
|
||||
href="http://creativecommons.org/licenses/by-sa/4.0/"
|
||||
target="_blank">
|
||||
<img alt="Creative Commons License"
|
||||
title="Creative Commons License"
|
||||
style="border-width:0"
|
||||
src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png"
|
||||
width="80"
|
||||
height="15"/>
|
||||
</a>
|
||||
</p> </footer>
|
||||
</main>
|
||||
|
||||
|
||||
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-55adbb025d4f7e55" async="async"></script>
|
||||
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context" : "http://schema.org",
|
||||
"@type" : "Blog",
|
||||
"name": " Flex ",
|
||||
"url" : "http://flex.alxd.me/blog",
|
||||
"image": "",
|
||||
"description": "Flex - The minimalist Pelican theme."
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,200 +0,0 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="HandheldFriendly" content="True" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
|
||||
<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 id="dark-theme-style" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/stylesheet/dark-theme.min.css">
|
||||
|
||||
<link id="pygments-dark-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
<link id="pygments-light-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
|
||||
|
||||
|
||||
<link href="http://flex.alxd.me/blog/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 -->
|
||||
<meta name="theme-color" content="#333333">
|
||||
<!-- Windows Phone -->
|
||||
<meta name="msapplication-navbutton-color" content="#333333">
|
||||
<!-- iOS Safari -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<!-- Microsoft EDGE -->
|
||||
<meta name="msapplication-TileColor" content="#333333">
|
||||
|
||||
<meta name="author" content="Alexandre Vicenzi" />
|
||||
<meta name="description" content="Flex - The minimalist Pelican theme." />
|
||||
<meta property="og:site_name" content="Flex"/>
|
||||
<meta property="og:type" content="blog"/>
|
||||
<meta property="og:title" content="Flex"/>
|
||||
<meta property="og:description" content="Flex - The minimalist Pelican theme."/>
|
||||
<meta property="og:locale" content="en_US"/>
|
||||
<meta property="og:url" content="http://flex.alxd.me/blog"/>
|
||||
|
||||
|
||||
|
||||
<title>Flex – About</title>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({
|
||||
google_ad_client: "ca-pub-6625957038449899",
|
||||
enable_page_level_ads: true
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body >
|
||||
<aside>
|
||||
<div>
|
||||
<a href="http://flex.alxd.me/blog">
|
||||
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex">
|
||||
</a>
|
||||
|
||||
<h1>
|
||||
<a href="http://flex.alxd.me/blog">Flex</a>
|
||||
</h1>
|
||||
|
||||
<p>The minimalist Pelican theme</p>
|
||||
|
||||
<nav>
|
||||
<ul class="list">
|
||||
|
||||
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/about.html#about">
|
||||
About
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/contact.html#contact">
|
||||
Contact
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<ul class="social">
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-aside"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="8752710348"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
</aside>
|
||||
<main>
|
||||
|
||||
<nav>
|
||||
<a href="http://flex.alxd.me/blog">Home</a>
|
||||
|
||||
<a href="/archives.html">Archives</a>
|
||||
<a href="/categories.html">Categories</a>
|
||||
<a href="/tags.html">Tags</a>
|
||||
|
||||
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml">Atom</a>
|
||||
|
||||
</nav>
|
||||
|
||||
<article class="single">
|
||||
<header>
|
||||
|
||||
<h1 id="about">About</h1>
|
||||
</header>
|
||||
<div>
|
||||
<p>Flex - The minimalist Pelican theme.</p> </div>
|
||||
</article>
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
© 2020 - 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>
|
||||
Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
|
||||
<span class="footer-separator">|</span>
|
||||
Switch to the <a href="javascript:void(0)" onclick="theme.switch(`dark`)">dark</a> | <a href="javascript:void(0)" onclick="theme.switch(`light`)">light</a> | <a href="javascript:void(0)" onclick="theme.switch(`browser`)">browser</a> theme
|
||||
<script id="dark-theme-script"
|
||||
src="http://flex.alxd.me/blog/theme/dark-theme/dark-theme.min.js"
|
||||
data-enable-auto-detect-theme="True"
|
||||
data-default-theme="light"
|
||||
type="text/javascript">
|
||||
</script>
|
||||
</p><p>
|
||||
<a rel="license"
|
||||
href="http://creativecommons.org/licenses/by-sa/4.0/"
|
||||
target="_blank">
|
||||
<img alt="Creative Commons License"
|
||||
title="Creative Commons License"
|
||||
style="border-width:0"
|
||||
src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png"
|
||||
width="80"
|
||||
height="15"/>
|
||||
</a>
|
||||
</p> </footer>
|
||||
</main>
|
||||
|
||||
|
||||
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-55adbb025d4f7e55" async="async"></script>
|
||||
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context" : "http://schema.org",
|
||||
"@type" : "Blog",
|
||||
"name": " Flex ",
|
||||
"url" : "http://flex.alxd.me/blog",
|
||||
"image": "",
|
||||
"description": "Flex - The minimalist Pelican theme."
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,200 +0,0 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="HandheldFriendly" content="True" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
|
||||
<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 id="dark-theme-style" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/stylesheet/dark-theme.min.css">
|
||||
|
||||
<link id="pygments-dark-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
<link id="pygments-light-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
|
||||
|
||||
|
||||
<link href="http://flex.alxd.me/blog/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 -->
|
||||
<meta name="theme-color" content="#333333">
|
||||
<!-- Windows Phone -->
|
||||
<meta name="msapplication-navbutton-color" content="#333333">
|
||||
<!-- iOS Safari -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<!-- Microsoft EDGE -->
|
||||
<meta name="msapplication-TileColor" content="#333333">
|
||||
|
||||
<meta name="author" content="Alexandre Vicenzi" />
|
||||
<meta name="description" content="Flex - The minimalist Pelican theme." />
|
||||
<meta property="og:site_name" content="Flex"/>
|
||||
<meta property="og:type" content="blog"/>
|
||||
<meta property="og:title" content="Flex"/>
|
||||
<meta property="og:description" content="Flex - The minimalist Pelican theme."/>
|
||||
<meta property="og:locale" content="en_US"/>
|
||||
<meta property="og:url" content="http://flex.alxd.me/blog"/>
|
||||
|
||||
|
||||
|
||||
<title>Flex – Contact</title>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({
|
||||
google_ad_client: "ca-pub-6625957038449899",
|
||||
enable_page_level_ads: true
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body >
|
||||
<aside>
|
||||
<div>
|
||||
<a href="http://flex.alxd.me/blog">
|
||||
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex">
|
||||
</a>
|
||||
|
||||
<h1>
|
||||
<a href="http://flex.alxd.me/blog">Flex</a>
|
||||
</h1>
|
||||
|
||||
<p>The minimalist Pelican theme</p>
|
||||
|
||||
<nav>
|
||||
<ul class="list">
|
||||
|
||||
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/about.html#about">
|
||||
About
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/contact.html#contact">
|
||||
Contact
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<ul class="social">
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-aside"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="8752710348"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
</aside>
|
||||
<main>
|
||||
|
||||
<nav>
|
||||
<a href="http://flex.alxd.me/blog">Home</a>
|
||||
|
||||
<a href="/archives.html">Archives</a>
|
||||
<a href="/categories.html">Categories</a>
|
||||
<a href="/tags.html">Tags</a>
|
||||
|
||||
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml">Atom</a>
|
||||
|
||||
</nav>
|
||||
|
||||
<article class="single">
|
||||
<header>
|
||||
|
||||
<h1 id="contact">Contact</h1>
|
||||
</header>
|
||||
<div>
|
||||
<p>If you want to contact about typos, grammar and other errors in this blog, you can open an issue <a href="https://github.com/alexandrevicenzi/Flex/issues">here</a>.</p> </div>
|
||||
</article>
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
© 2020 - 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>
|
||||
Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
|
||||
<span class="footer-separator">|</span>
|
||||
Switch to the <a href="javascript:void(0)" onclick="theme.switch(`dark`)">dark</a> | <a href="javascript:void(0)" onclick="theme.switch(`light`)">light</a> | <a href="javascript:void(0)" onclick="theme.switch(`browser`)">browser</a> theme
|
||||
<script id="dark-theme-script"
|
||||
src="http://flex.alxd.me/blog/theme/dark-theme/dark-theme.min.js"
|
||||
data-enable-auto-detect-theme="True"
|
||||
data-default-theme="light"
|
||||
type="text/javascript">
|
||||
</script>
|
||||
</p><p>
|
||||
<a rel="license"
|
||||
href="http://creativecommons.org/licenses/by-sa/4.0/"
|
||||
target="_blank">
|
||||
<img alt="Creative Commons License"
|
||||
title="Creative Commons License"
|
||||
style="border-width:0"
|
||||
src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png"
|
||||
width="80"
|
||||
height="15"/>
|
||||
</a>
|
||||
</p> </footer>
|
||||
</main>
|
||||
|
||||
|
||||
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-55adbb025d4f7e55" async="async"></script>
|
||||
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context" : "http://schema.org",
|
||||
"@type" : "Blog",
|
||||
"name": " Flex ",
|
||||
"url" : "http://flex.alxd.me/blog",
|
||||
"image": "",
|
||||
"description": "Flex - The minimalist Pelican theme."
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,351 +0,0 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="HandheldFriendly" content="True" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
|
||||
<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 id="dark-theme-style" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/stylesheet/dark-theme.min.css">
|
||||
|
||||
<link id="pygments-dark-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
<link id="pygments-light-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
|
||||
|
||||
|
||||
<link href="http://flex.alxd.me/blog/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 -->
|
||||
<meta name="theme-color" content="#333333">
|
||||
<!-- Windows Phone -->
|
||||
<meta name="msapplication-navbutton-color" content="#333333">
|
||||
<!-- iOS Safari -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<!-- Microsoft EDGE -->
|
||||
<meta name="msapplication-TileColor" content="#333333">
|
||||
|
||||
<meta name="author" content="Alexandre Vicenzi" />
|
||||
<meta name="description" content="Flex - The minimalist Pelican theme." />
|
||||
<meta property="og:site_name" content="Flex"/>
|
||||
<meta property="og:type" content="blog"/>
|
||||
<meta property="og:title" content="Flex"/>
|
||||
<meta property="og:description" content="Flex - The minimalist Pelican theme."/>
|
||||
<meta property="og:locale" content="en_US"/>
|
||||
<meta property="og:url" content="http://flex.alxd.me/blog"/>
|
||||
|
||||
<title>Flex – Tag pelican</title>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({
|
||||
google_ad_client: "ca-pub-6625957038449899",
|
||||
enable_page_level_ads: true
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body >
|
||||
<aside>
|
||||
<div>
|
||||
<a href="http://flex.alxd.me/blog">
|
||||
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex">
|
||||
</a>
|
||||
|
||||
<h1>
|
||||
<a href="http://flex.alxd.me/blog">Flex</a>
|
||||
</h1>
|
||||
|
||||
<p>The minimalist Pelican theme</p>
|
||||
|
||||
<nav>
|
||||
<ul class="list">
|
||||
|
||||
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/about.html#about">
|
||||
About
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/contact.html#contact">
|
||||
Contact
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<ul class="social">
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-aside"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="8752710348"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
</aside>
|
||||
<main>
|
||||
|
||||
<nav>
|
||||
<a href="http://flex.alxd.me/blog">Home</a>
|
||||
|
||||
<a href="/archives.html">Archives</a>
|
||||
<a href="/categories.html">Categories</a>
|
||||
<a href="/tags.html">Tags</a>
|
||||
|
||||
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml">Atom</a>
|
||||
|
||||
</nav>
|
||||
|
||||
|
||||
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on June 24, 2018 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.2.0 comes with bug fixes and improvements.</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>Hope you enjoy this version.</p>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on November 16, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<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>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>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on September 13, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.0 comes with new features.
|
||||
In fact there are two new features.</p>
|
||||
<p>The biggest change is localization support.
|
||||
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>
|
||||
<p>The biggest challege was to create a way to translate without breaking old versions.
|
||||
If …</p>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on June 10, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> received some new features. Version 1.2.0 include new features and some updates.</p>
|
||||
<p>For developers there are new color styles for your code. For general purpose there is RUM support, related posts and browser color configuration.</p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/31">Update font-awesome</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/issues/38">More Pygments Styles …</a></li></ul>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on February 27, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p>Today, <a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> received a small update.</p>
|
||||
<p>Some bugs are now fixed. I think the most important fixes are:</p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/21">Bug in CSS with placement of "Newer Posts" button</a></li>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/14">Posts preview on main page</a></li>
|
||||
</ul>
|
||||
<p>Hope you enjoy this theme.</p>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on October 07, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<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>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>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<header>
|
||||
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme">Flex: Responsive Pelican theme</a></h2>
|
||||
<p>
|
||||
Posted on July 22, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<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>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>
|
||||
<a class="btn"
|
||||
href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme">
|
||||
Continue reading
|
||||
</a>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="pagination">
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-responsive"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="1124188687"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
© 2020 - 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>
|
||||
Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
|
||||
<span class="footer-separator">|</span>
|
||||
Switch to the <a href="javascript:void(0)" onclick="theme.switch(`dark`)">dark</a> | <a href="javascript:void(0)" onclick="theme.switch(`light`)">light</a> | <a href="javascript:void(0)" onclick="theme.switch(`browser`)">browser</a> theme
|
||||
<script id="dark-theme-script"
|
||||
src="http://flex.alxd.me/blog/theme/dark-theme/dark-theme.min.js"
|
||||
data-enable-auto-detect-theme="True"
|
||||
data-default-theme="light"
|
||||
type="text/javascript">
|
||||
</script>
|
||||
</p><p>
|
||||
<a rel="license"
|
||||
href="http://creativecommons.org/licenses/by-sa/4.0/"
|
||||
target="_blank">
|
||||
<img alt="Creative Commons License"
|
||||
title="Creative Commons License"
|
||||
style="border-width:0"
|
||||
src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png"
|
||||
width="80"
|
||||
height="15"/>
|
||||
</a>
|
||||
</p> </footer>
|
||||
</main>
|
||||
|
||||
|
||||
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-55adbb025d4f7e55" async="async"></script>
|
||||
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context" : "http://schema.org",
|
||||
"@type" : "Blog",
|
||||
"name": " Flex ",
|
||||
"url" : "http://flex.alxd.me/blog",
|
||||
"image": "",
|
||||
"description": "Flex - The minimalist Pelican theme."
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,351 +0,0 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="HandheldFriendly" content="True" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
|
||||
<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 id="dark-theme-style" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/stylesheet/dark-theme.min.css">
|
||||
|
||||
<link id="pygments-dark-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
<link id="pygments-light-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
|
||||
|
||||
|
||||
<link href="http://flex.alxd.me/blog/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 -->
|
||||
<meta name="theme-color" content="#333333">
|
||||
<!-- Windows Phone -->
|
||||
<meta name="msapplication-navbutton-color" content="#333333">
|
||||
<!-- iOS Safari -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<!-- Microsoft EDGE -->
|
||||
<meta name="msapplication-TileColor" content="#333333">
|
||||
|
||||
<meta name="author" content="Alexandre Vicenzi" />
|
||||
<meta name="description" content="Flex - The minimalist Pelican theme." />
|
||||
<meta property="og:site_name" content="Flex"/>
|
||||
<meta property="og:type" content="blog"/>
|
||||
<meta property="og:title" content="Flex"/>
|
||||
<meta property="og:description" content="Flex - The minimalist Pelican theme."/>
|
||||
<meta property="og:locale" content="en_US"/>
|
||||
<meta property="og:url" content="http://flex.alxd.me/blog"/>
|
||||
|
||||
<title>Flex – Tag python</title>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({
|
||||
google_ad_client: "ca-pub-6625957038449899",
|
||||
enable_page_level_ads: true
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body >
|
||||
<aside>
|
||||
<div>
|
||||
<a href="http://flex.alxd.me/blog">
|
||||
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex">
|
||||
</a>
|
||||
|
||||
<h1>
|
||||
<a href="http://flex.alxd.me/blog">Flex</a>
|
||||
</h1>
|
||||
|
||||
<p>The minimalist Pelican theme</p>
|
||||
|
||||
<nav>
|
||||
<ul class="list">
|
||||
|
||||
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/about.html#about">
|
||||
About
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/contact.html#contact">
|
||||
Contact
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<ul class="social">
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-aside"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="8752710348"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
</aside>
|
||||
<main>
|
||||
|
||||
<nav>
|
||||
<a href="http://flex.alxd.me/blog">Home</a>
|
||||
|
||||
<a href="/archives.html">Archives</a>
|
||||
<a href="/categories.html">Categories</a>
|
||||
<a href="/tags.html">Tags</a>
|
||||
|
||||
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml">Atom</a>
|
||||
|
||||
</nav>
|
||||
|
||||
|
||||
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on June 24, 2018 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.2.0 comes with bug fixes and improvements.</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>Hope you enjoy this version.</p>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on November 16, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<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>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>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on September 13, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.0 comes with new features.
|
||||
In fact there are two new features.</p>
|
||||
<p>The biggest change is localization support.
|
||||
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>
|
||||
<p>The biggest challege was to create a way to translate without breaking old versions.
|
||||
If …</p>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on June 10, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> received some new features. Version 1.2.0 include new features and some updates.</p>
|
||||
<p>For developers there are new color styles for your code. For general purpose there is RUM support, related posts and browser color configuration.</p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/31">Update font-awesome</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/issues/38">More Pygments Styles …</a></li></ul>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on February 27, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p>Today, <a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> received a small update.</p>
|
||||
<p>Some bugs are now fixed. I think the most important fixes are:</p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/21">Bug in CSS with placement of "Newer Posts" button</a></li>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/14">Posts preview on main page</a></li>
|
||||
</ul>
|
||||
<p>Hope you enjoy this theme.</p>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on October 07, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<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>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>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<header>
|
||||
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme">Flex: Responsive Pelican theme</a></h2>
|
||||
<p>
|
||||
Posted on July 22, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<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>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>
|
||||
<a class="btn"
|
||||
href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme">
|
||||
Continue reading
|
||||
</a>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="pagination">
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-responsive"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="1124188687"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
© 2020 - 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>
|
||||
Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
|
||||
<span class="footer-separator">|</span>
|
||||
Switch to the <a href="javascript:void(0)" onclick="theme.switch(`dark`)">dark</a> | <a href="javascript:void(0)" onclick="theme.switch(`light`)">light</a> | <a href="javascript:void(0)" onclick="theme.switch(`browser`)">browser</a> theme
|
||||
<script id="dark-theme-script"
|
||||
src="http://flex.alxd.me/blog/theme/dark-theme/dark-theme.min.js"
|
||||
data-enable-auto-detect-theme="True"
|
||||
data-default-theme="light"
|
||||
type="text/javascript">
|
||||
</script>
|
||||
</p><p>
|
||||
<a rel="license"
|
||||
href="http://creativecommons.org/licenses/by-sa/4.0/"
|
||||
target="_blank">
|
||||
<img alt="Creative Commons License"
|
||||
title="Creative Commons License"
|
||||
style="border-width:0"
|
||||
src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png"
|
||||
width="80"
|
||||
height="15"/>
|
||||
</a>
|
||||
</p> </footer>
|
||||
</main>
|
||||
|
||||
|
||||
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-55adbb025d4f7e55" async="async"></script>
|
||||
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context" : "http://schema.org",
|
||||
"@type" : "Blog",
|
||||
"name": " Flex ",
|
||||
"url" : "http://flex.alxd.me/blog",
|
||||
"image": "",
|
||||
"description": "Flex - The minimalist Pelican theme."
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,351 +0,0 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="HandheldFriendly" content="True" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
|
||||
<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 id="dark-theme-style" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/stylesheet/dark-theme.min.css">
|
||||
|
||||
<link id="pygments-dark-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
<link id="pygments-light-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
|
||||
|
||||
|
||||
<link href="http://flex.alxd.me/blog/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 -->
|
||||
<meta name="theme-color" content="#333333">
|
||||
<!-- Windows Phone -->
|
||||
<meta name="msapplication-navbutton-color" content="#333333">
|
||||
<!-- iOS Safari -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<!-- Microsoft EDGE -->
|
||||
<meta name="msapplication-TileColor" content="#333333">
|
||||
|
||||
<meta name="author" content="Alexandre Vicenzi" />
|
||||
<meta name="description" content="Flex - The minimalist Pelican theme." />
|
||||
<meta property="og:site_name" content="Flex"/>
|
||||
<meta property="og:type" content="blog"/>
|
||||
<meta property="og:title" content="Flex"/>
|
||||
<meta property="og:description" content="Flex - The minimalist Pelican theme."/>
|
||||
<meta property="og:locale" content="en_US"/>
|
||||
<meta property="og:url" content="http://flex.alxd.me/blog"/>
|
||||
|
||||
<title>Flex – Tag theme</title>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({
|
||||
google_ad_client: "ca-pub-6625957038449899",
|
||||
enable_page_level_ads: true
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body >
|
||||
<aside>
|
||||
<div>
|
||||
<a href="http://flex.alxd.me/blog">
|
||||
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex">
|
||||
</a>
|
||||
|
||||
<h1>
|
||||
<a href="http://flex.alxd.me/blog">Flex</a>
|
||||
</h1>
|
||||
|
||||
<p>The minimalist Pelican theme</p>
|
||||
|
||||
<nav>
|
||||
<ul class="list">
|
||||
|
||||
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/about.html#about">
|
||||
About
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/contact.html#contact">
|
||||
Contact
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<ul class="social">
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-aside"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="8752710348"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
</aside>
|
||||
<main>
|
||||
|
||||
<nav>
|
||||
<a href="http://flex.alxd.me/blog">Home</a>
|
||||
|
||||
<a href="/archives.html">Archives</a>
|
||||
<a href="/categories.html">Categories</a>
|
||||
<a href="/tags.html">Tags</a>
|
||||
|
||||
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml">Atom</a>
|
||||
|
||||
</nav>
|
||||
|
||||
|
||||
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on June 24, 2018 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.2.0 comes with bug fixes and improvements.</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>Hope you enjoy this version.</p>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on November 16, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<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>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>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on September 13, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> 2.0 comes with new features.
|
||||
In fact there are two new features.</p>
|
||||
<p>The biggest change is localization support.
|
||||
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>
|
||||
<p>The biggest challege was to create a way to translate without breaking old versions.
|
||||
If …</p>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on June 10, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p><a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> received some new features. Version 1.2.0 include new features and some updates.</p>
|
||||
<p>For developers there are new color styles for your code. For general purpose there is RUM support, related posts and browser color configuration.</p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/31">Update font-awesome</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/issues/38">More Pygments Styles …</a></li></ul>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on February 27, 2016 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<div>
|
||||
<p>Today, <a href="https://github.com/alexandrevicenzi/Flex">Flex theme</a> received a small update.</p>
|
||||
<p>Some bugs are now fixed. I think the most important fixes are:</p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/21">Bug in CSS with placement of "Newer Posts" button</a></li>
|
||||
<li><a href="https://github.com/alexandrevicenzi/Flex/issues/14">Posts preview on main page</a></li>
|
||||
</ul>
|
||||
<p>Hope you enjoy this theme.</p>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<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>
|
||||
<p>
|
||||
Posted on October 07, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<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>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>
|
||||
<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>
|
||||
</div>
|
||||
<hr />
|
||||
</article>
|
||||
<article>
|
||||
<header>
|
||||
<h2><a href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme">Flex: Responsive Pelican theme</a></h2>
|
||||
<p>
|
||||
Posted on July 22, 2015 in <a href="http://flex.alxd.me/blog/category/news.html">News</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<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>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>
|
||||
<a class="btn"
|
||||
href="http://flex.alxd.me/blog/flex-pelican-theme.html#flex-pelican-theme">
|
||||
Continue reading
|
||||
</a>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="pagination">
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-responsive"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="1124188687"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
© 2020 - 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>
|
||||
Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
|
||||
<span class="footer-separator">|</span>
|
||||
Switch to the <a href="javascript:void(0)" onclick="theme.switch(`dark`)">dark</a> | <a href="javascript:void(0)" onclick="theme.switch(`light`)">light</a> | <a href="javascript:void(0)" onclick="theme.switch(`browser`)">browser</a> theme
|
||||
<script id="dark-theme-script"
|
||||
src="http://flex.alxd.me/blog/theme/dark-theme/dark-theme.min.js"
|
||||
data-enable-auto-detect-theme="True"
|
||||
data-default-theme="light"
|
||||
type="text/javascript">
|
||||
</script>
|
||||
</p><p>
|
||||
<a rel="license"
|
||||
href="http://creativecommons.org/licenses/by-sa/4.0/"
|
||||
target="_blank">
|
||||
<img alt="Creative Commons License"
|
||||
title="Creative Commons License"
|
||||
style="border-width:0"
|
||||
src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png"
|
||||
width="80"
|
||||
height="15"/>
|
||||
</a>
|
||||
</p> </footer>
|
||||
</main>
|
||||
|
||||
|
||||
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-55adbb025d4f7e55" async="async"></script>
|
||||
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context" : "http://schema.org",
|
||||
"@type" : "Blog",
|
||||
"name": " Flex ",
|
||||
"url" : "http://flex.alxd.me/blog",
|
||||
"image": "",
|
||||
"description": "Flex - The minimalist Pelican theme."
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,201 +0,0 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="HandheldFriendly" content="True" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
|
||||
<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 id="dark-theme-style" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/stylesheet/dark-theme.min.css">
|
||||
|
||||
<link id="pygments-dark-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: dark)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
<link id="pygments-light-theme" rel="stylesheet" type="text/css"
|
||||
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
|
||||
href="http://flex.alxd.me/blog/theme/pygments/monokai.min.css">
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/fontawesome.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/brands.css">
|
||||
<link rel="stylesheet" type="text/css" href="http://flex.alxd.me/blog/theme/font-awesome/css/solid.css">
|
||||
|
||||
|
||||
<link href="http://flex.alxd.me/blog/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 -->
|
||||
<meta name="theme-color" content="#333333">
|
||||
<!-- Windows Phone -->
|
||||
<meta name="msapplication-navbutton-color" content="#333333">
|
||||
<!-- iOS Safari -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<!-- Microsoft EDGE -->
|
||||
<meta name="msapplication-TileColor" content="#333333">
|
||||
|
||||
<meta name="author" content="Alexandre Vicenzi" />
|
||||
<meta name="description" content="Flex - The minimalist Pelican theme." />
|
||||
<meta property="og:site_name" content="Flex"/>
|
||||
<meta property="og:type" content="blog"/>
|
||||
<meta property="og:title" content="Flex"/>
|
||||
<meta property="og:description" content="Flex - The minimalist Pelican theme."/>
|
||||
<meta property="og:locale" content="en_US"/>
|
||||
<meta property="og:url" content="http://flex.alxd.me/blog"/>
|
||||
|
||||
<title>Flex – Tags</title>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({
|
||||
google_ad_client: "ca-pub-6625957038449899",
|
||||
enable_page_level_ads: true
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body >
|
||||
<aside>
|
||||
<div>
|
||||
<a href="http://flex.alxd.me/blog">
|
||||
<img src="http://flex.alxd.me/blog/theme/img/profile.png" alt="Flex" title="Flex">
|
||||
</a>
|
||||
|
||||
<h1>
|
||||
<a href="http://flex.alxd.me/blog">Flex</a>
|
||||
</h1>
|
||||
|
||||
<p>The minimalist Pelican theme</p>
|
||||
|
||||
<nav>
|
||||
<ul class="list">
|
||||
|
||||
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/about.html#about">
|
||||
About
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_self"
|
||||
href="http://flex.alxd.me/blog/pages/contact.html#contact">
|
||||
Contact
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<ul class="social">
|
||||
<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>
|
||||
</div>
|
||||
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<ins class="adsbygoogle ads-aside"
|
||||
data-ad-client="ca-pub-6625957038449899"
|
||||
data-ad-slot="8752710348"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
</aside>
|
||||
<main>
|
||||
|
||||
<nav>
|
||||
<a href="http://flex.alxd.me/blog">Home</a>
|
||||
|
||||
<a href="/archives.html">Archives</a>
|
||||
<a href="/categories.html">Categories</a>
|
||||
<a href="/tags.html">Tags</a>
|
||||
|
||||
<a href="http://flex.alxd.me/blog/feeds/all.atom.xml">Atom</a>
|
||||
|
||||
</nav>
|
||||
|
||||
<article class="single">
|
||||
<header>
|
||||
<h1 id="tags">Tags</h1>
|
||||
</header>
|
||||
<div>
|
||||
<ul class="list"> <li><a href="http://flex.alxd.me/blog/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://flex.alxd.me/blog/tag/theme.html">theme</a> (7)</li>
|
||||
</ul>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
© 2020 - 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>
|
||||
Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
|
||||
<span class="footer-separator">|</span>
|
||||
Switch to the <a href="javascript:void(0)" onclick="theme.switch(`dark`)">dark</a> | <a href="javascript:void(0)" onclick="theme.switch(`light`)">light</a> | <a href="javascript:void(0)" onclick="theme.switch(`browser`)">browser</a> theme
|
||||
<script id="dark-theme-script"
|
||||
src="http://flex.alxd.me/blog/theme/dark-theme/dark-theme.min.js"
|
||||
data-enable-auto-detect-theme="True"
|
||||
data-default-theme="light"
|
||||
type="text/javascript">
|
||||
</script>
|
||||
</p><p>
|
||||
<a rel="license"
|
||||
href="http://creativecommons.org/licenses/by-sa/4.0/"
|
||||
target="_blank">
|
||||
<img alt="Creative Commons License"
|
||||
title="Creative Commons License"
|
||||
style="border-width:0"
|
||||
src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png"
|
||||
width="80"
|
||||
height="15"/>
|
||||
</a>
|
||||
</p> </footer>
|
||||
</main>
|
||||
|
||||
|
||||
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-55adbb025d4f7e55" async="async"></script>
|
||||
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context" : "http://schema.org",
|
||||
"@type" : "Blog",
|
||||
"name": " Flex ",
|
||||
"url" : "http://flex.alxd.me/blog",
|
||||
"image": "",
|
||||
"description": "Flex - The minimalist Pelican theme."
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,58 +0,0 @@
|
|||
function ThemeManager(options) {
|
||||
var defaultTheme = options.defaultTheme;
|
||||
var enableAutoDetectTheme = options.enableAutoDetectTheme.toLowerCase() === 'true';
|
||||
|
||||
var darkThemeMatch = window.matchMedia(
|
||||
defaultTheme === 'light' ?
|
||||
'(prefers-color-scheme: dark)' :
|
||||
'(prefers-color-scheme: dark), (prefers-color-scheme: no-preference)'
|
||||
);
|
||||
|
||||
function setEnabledAndDisableMediaQuery(elementId, enabled) {
|
||||
var element = document.getElementById(elementId);
|
||||
element.disabled = !enabled;
|
||||
element.media = '';
|
||||
}
|
||||
|
||||
function detectThemeAndSwitchStyle() {
|
||||
var theme = localStorage.getItem('themeOverride');
|
||||
if (theme !== 'light' && theme !== 'dark') {
|
||||
if (theme === 'browser' || enableAutoDetectTheme) {
|
||||
theme = darkThemeMatch.matches ? 'dark' : 'light';
|
||||
} else {
|
||||
theme = defaultTheme;
|
||||
}
|
||||
}
|
||||
|
||||
// (Dis|En)able the styles according to the user's desired theme. Get rid
|
||||
// of the media queries, since we are handling it in JS.
|
||||
setEnabledAndDisableMediaQuery('dark-theme-style', theme === 'dark');
|
||||
setEnabledAndDisableMediaQuery('pygments-dark-theme', theme === 'dark');
|
||||
setEnabledAndDisableMediaQuery('pygments-light-theme', theme === 'light');
|
||||
|
||||
if (theme === 'dark') {
|
||||
document.body.classList.add('dark-theme');
|
||||
document.body.classList.remove('light-theme');
|
||||
} else {
|
||||
document.body.classList.add('light-theme');
|
||||
document.body.classList.remove('dark-theme');
|
||||
}
|
||||
}
|
||||
|
||||
this.switch = function(themeOverride) {
|
||||
localStorage.setItem('themeOverride', themeOverride);
|
||||
detectThemeAndSwitchStyle();
|
||||
};
|
||||
|
||||
// If there's an override, then apply it, otherwise, don't incur the
|
||||
// overhead of determining whether or not to switch themes.
|
||||
var themeOverride = localStorage.getItem('themeOverride');
|
||||
if (themeOverride === 'light' || themeOverride === 'dark') {
|
||||
detectThemeAndSwitchStyle();
|
||||
}
|
||||
|
||||
// If theme auto-detection is enabled, then add a listenr on the matchMedia.
|
||||
darkThemeMatch.addListener(detectThemeAndSwitchStyle);
|
||||
}
|
||||
|
||||
window.theme = new ThemeManager(document.getElementById('dark-theme-script').dataset);
|
1
docs/blog/theme/dark-theme/dark-theme.min.js
vendored
|
@ -1 +0,0 @@
|
|||
function ThemeManager(e){var t=e.defaultTheme,r="true"===e.enableAutoDetectTheme.toLowerCase(),a=window.matchMedia("light"===t?"(prefers-color-scheme: dark)":"(prefers-color-scheme: dark), (prefers-color-scheme: no-preference)");function d(e,t){var r=document.getElementById(e);r.disabled=!t,r.media=""}function m(){var e=localStorage.getItem("themeOverride");"light"!==e&&"dark"!==e&&(e="browser"===e||r?a.matches?"dark":"light":t),d("dark-theme-style","dark"===e),d("pygments-dark-theme","dark"===e),d("pygments-light-theme","light"===e),"dark"===e?(document.body.classList.add("dark-theme"),document.body.classList.remove("light-theme")):(document.body.classList.add("light-theme"),document.body.classList.remove("dark-theme"))}this.switch=function(e){localStorage.setItem("themeOverride",e),m()};var o=localStorage.getItem("themeOverride");"light"!==o&&"dark"!==o||m(),a.addListener(m)}window.theme=new ThemeManager(document.getElementById("dark-theme-script").dataset);
|
15
docs/blog/theme/font-awesome/css/brands.css
vendored
|
@ -1,15 +0,0 @@
|
|||
/*!
|
||||
* Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
|
||||
* License - https://fontawesome.com/license/free (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: 400;
|
||||
font-display: block;
|
||||
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';
|
||||
font-weight: 400; }
|
4522
docs/blog/theme/font-awesome/css/fontawesome.css
vendored
16
docs/blog/theme/font-awesome/css/solid.css
vendored
|
@ -1,16 +0,0 @@
|
|||
/*!
|
||||
* Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
|
||||
* License - https://fontawesome.com/license/free (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;
|
||||
font-display: block;
|
||||
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; }
|
Before Width: | Height: | Size: 699 KiB |
Before Width: | Height: | Size: 876 KiB |
Before Width: | Height: | Size: 435 B |
Before Width: | Height: | Size: 444 B |
Before Width: | Height: | Size: 429 B |
Before Width: | Height: | Size: 428 B |
Before Width: | Height: | Size: 429 B |
Before Width: | Height: | Size: 410 B |
Before Width: | Height: | Size: 5.5 KiB |
|
@ -1 +0,0 @@
|
|||
https://www.iconfinder.com/icons/196742/account_boy_male_man_people_profile_user_icon
|
20
docs/blog/theme/isso/isso.min.js
vendored
|
@ -1,120 +0,0 @@
|
|||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #ffffff; }
|
||||
.highlight .c { color: #888888; font-style: italic } /* Comment */
|
||||
.highlight .err { color: #FF0000 } /* Error */
|
||||
.highlight .k { color: #0000ff } /* Keyword */
|
||||
.highlight .n { color: #000000 } /* Name */
|
||||
.highlight .ch { color: #888888; font-style: italic } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #888888; font-style: italic } /* Comment.Multiline */
|
||||
.highlight .cp { color: #888888; font-style: italic } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #888888; font-style: italic } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #888888; font-style: italic } /* Comment.Single */
|
||||
.highlight .cs { color: #888888; font-style: italic } /* Comment.Special */
|
||||
.highlight .kc { color: #0000ff } /* Keyword.Constant */
|
||||
.highlight .kd { color: #0000ff } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #0000ff } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #0000ff } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #0000ff } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #0000ff } /* Keyword.Type */
|
||||
.highlight .m { color: #33aaff } /* Literal.Number */
|
||||
.highlight .s { color: #55aa22 } /* Literal.String */
|
||||
.highlight .na { color: #000000 } /* Name.Attribute */
|
||||
.highlight .nb { color: #000000 } /* Name.Builtin */
|
||||
.highlight .nc { color: #000000 } /* Name.Class */
|
||||
.highlight .no { color: #000000 } /* Name.Constant */
|
||||
.highlight .nd { color: #000000 } /* Name.Decorator */
|
||||
.highlight .ni { color: #000000 } /* Name.Entity */
|
||||
.highlight .ne { color: #000000 } /* Name.Exception */
|
||||
.highlight .nf { color: #000000 } /* Name.Function */
|
||||
.highlight .nl { color: #000000 } /* Name.Label */
|
||||
.highlight .nn { color: #000000 } /* Name.Namespace */
|
||||
.highlight .nx { color: #000000 } /* Name.Other */
|
||||
.highlight .py { color: #000000 } /* Name.Property */
|
||||
.highlight .nt { color: #000000 } /* Name.Tag */
|
||||
.highlight .nv { color: #000000 } /* Name.Variable */
|
||||
.highlight .ow { color: #0000ff } /* Operator.Word */
|
||||
.highlight .mb { color: #33aaff } /* Literal.Number.Bin */
|
||||
.highlight .mf { color: #33aaff } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #33aaff } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #33aaff } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #33aaff } /* Literal.Number.Oct */
|
||||
.highlight .sa { color: #55aa22 } /* Literal.String.Affix */
|
||||
.highlight .sb { color: #55aa22 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #55aa22 } /* Literal.String.Char */
|
||||
.highlight .dl { color: #55aa22 } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #55aa22 } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #55aa22 } /* Literal.String.Double */
|
||||
.highlight .se { color: #55aa22 } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #55aa22 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #55aa22 } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #55aa22 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #55aa22 } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #55aa22 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #55aa22 } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #000000 } /* Name.Builtin.Pseudo */
|
||||
.highlight .fm { color: #000000 } /* Name.Function.Magic */
|
||||
.highlight .vc { color: #000000 } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #000000 } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #000000 } /* Name.Variable.Instance */
|
||||
.highlight .vm { color: #000000 } /* Name.Variable.Magic */
|
||||
.highlight .il { color: #33aaff } /* Literal.Number.Integer.Long */
|
||||
.literal-block .hll { background-color: #ffffcc }
|
||||
.literal-block { background: #ffffff; }
|
||||
.literal-block .c { color: #888888; font-style: italic } /* Comment */
|
||||
.literal-block .err { color: #FF0000 } /* Error */
|
||||
.literal-block .k { color: #0000ff } /* Keyword */
|
||||
.literal-block .n { color: #000000 } /* Name */
|
||||
.literal-block .ch { color: #888888; font-style: italic } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #888888; font-style: italic } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #888888; font-style: italic } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #888888; font-style: italic } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #888888; font-style: italic } /* Comment.Single */
|
||||
.literal-block .cs { color: #888888; font-style: italic } /* Comment.Special */
|
||||
.literal-block .kc { color: #0000ff } /* Keyword.Constant */
|
||||
.literal-block .kd { color: #0000ff } /* Keyword.Declaration */
|
||||
.literal-block .kn { color: #0000ff } /* Keyword.Namespace */
|
||||
.literal-block .kp { color: #0000ff } /* Keyword.Pseudo */
|
||||
.literal-block .kr { color: #0000ff } /* Keyword.Reserved */
|
||||
.literal-block .kt { color: #0000ff } /* Keyword.Type */
|
||||
.literal-block .m { color: #33aaff } /* Literal.Number */
|
||||
.literal-block .s { color: #55aa22 } /* Literal.String */
|
||||
.literal-block .na { color: #000000 } /* Name.Attribute */
|
||||
.literal-block .nb { color: #000000 } /* Name.Builtin */
|
||||
.literal-block .nc { color: #000000 } /* Name.Class */
|
||||
.literal-block .no { color: #000000 } /* Name.Constant */
|
||||
.literal-block .nd { color: #000000 } /* Name.Decorator */
|
||||
.literal-block .ni { color: #000000 } /* Name.Entity */
|
||||
.literal-block .ne { color: #000000 } /* Name.Exception */
|
||||
.literal-block .nf { color: #000000 } /* Name.Function */
|
||||
.literal-block .nl { color: #000000 } /* Name.Label */
|
||||
.literal-block .nn { color: #000000 } /* Name.Namespace */
|
||||
.literal-block .nx { color: #000000 } /* Name.Other */
|
||||
.literal-block .py { color: #000000 } /* Name.Property */
|
||||
.literal-block .nt { color: #000000 } /* Name.Tag */
|
||||
.literal-block .nv { color: #000000 } /* Name.Variable */
|
||||
.literal-block .ow { color: #0000ff } /* Operator.Word */
|
||||
.literal-block .mb { color: #33aaff } /* Literal.Number.Bin */
|
||||
.literal-block .mf { color: #33aaff } /* Literal.Number.Float */
|
||||
.literal-block .mh { color: #33aaff } /* Literal.Number.Hex */
|
||||
.literal-block .mi { color: #33aaff } /* Literal.Number.Integer */
|
||||
.literal-block .mo { color: #33aaff } /* Literal.Number.Oct */
|
||||
.literal-block .sa { color: #55aa22 } /* Literal.String.Affix */
|
||||
.literal-block .sb { color: #55aa22 } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #55aa22 } /* Literal.String.Char */
|
||||
.literal-block .dl { color: #55aa22 } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #55aa22 } /* Literal.String.Doc */
|
||||
.literal-block .s2 { color: #55aa22 } /* Literal.String.Double */
|
||||
.literal-block .se { color: #55aa22 } /* Literal.String.Escape */
|
||||
.literal-block .sh { color: #55aa22 } /* Literal.String.Heredoc */
|
||||
.literal-block .si { color: #55aa22 } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #55aa22 } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #55aa22 } /* Literal.String.Regex */
|
||||
.literal-block .s1 { color: #55aa22 } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #55aa22 } /* Literal.String.Symbol */
|
||||
.literal-block .bp { color: #000000 } /* Name.Builtin.Pseudo */
|
||||
.literal-block .fm { color: #000000 } /* Name.Function.Magic */
|
||||
.literal-block .vc { color: #000000 } /* Name.Variable.Class */
|
||||
.literal-block .vg { color: #000000 } /* Name.Variable.Global */
|
||||
.literal-block .vi { color: #000000 } /* Name.Variable.Instance */
|
||||
.literal-block .vm { color: #000000 } /* Name.Variable.Magic */
|
||||
.literal-block .il { color: #33aaff } /* Literal.Number.Integer.Long */
|
1
docs/blog/theme/pygments/abap.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.highlight .hll{background-color:#ffc}.highlight{background:#fff}.highlight .c{color:#888;font-style:italic}.highlight .err{color:red}.highlight .k{color:#00f}.highlight .n{color:#000}.highlight .c1,.highlight .ch,.highlight .cm,.highlight .cp,.highlight .cpf,.highlight .cs{color:#888;font-style:italic}.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr,.highlight .kt{color:#00f}.highlight .m{color:#3af}.highlight .s{color:#5a2}.highlight .na,.highlight .nb,.highlight .nc,.highlight .nd,.highlight .ne,.highlight .nf,.highlight .ni,.highlight .nl,.highlight .nn,.highlight .no,.highlight .nt,.highlight .nv,.highlight .nx,.highlight .py{color:#000}.highlight .ow{color:#00f}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#3af}.highlight .dl,.highlight .s1,.highlight .s2,.highlight .sa,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si,.highlight .sr,.highlight .ss,.highlight .sx{color:#5a2}.highlight .bp,.highlight .fm,.highlight .vc,.highlight .vg,.highlight .vi,.highlight .vm{color:#000}.highlight .il{color:#3af}.literal-block .hll{background-color:#ffc}.literal-block{background:#fff}.literal-block .c{color:#888;font-style:italic}.literal-block .err{color:red}.literal-block .k{color:#00f}.literal-block .n{color:#000}.literal-block .c1,.literal-block .ch,.literal-block .cm,.literal-block .cp,.literal-block .cpf,.literal-block .cs{color:#888;font-style:italic}.literal-block .kc,.literal-block .kd,.literal-block .kn,.literal-block .kp,.literal-block .kr,.literal-block .kt{color:#00f}.literal-block .m{color:#3af}.literal-block .s{color:#5a2}.literal-block .na,.literal-block .nb,.literal-block .nc,.literal-block .nd,.literal-block .ne,.literal-block .nf,.literal-block .ni,.literal-block .nl,.literal-block .nn,.literal-block .no,.literal-block .nt,.literal-block .nv,.literal-block .nx,.literal-block .py{color:#000}.literal-block .ow{color:#00f}.literal-block .mb,.literal-block .mf,.literal-block .mh,.literal-block .mi,.literal-block .mo{color:#3af}.literal-block .dl,.literal-block .s1,.literal-block .s2,.literal-block .sa,.literal-block .sb,.literal-block .sc,.literal-block .sd,.literal-block .se,.literal-block .sh,.literal-block .si,.literal-block .sr,.literal-block .ss,.literal-block .sx{color:#5a2}.literal-block .bp,.literal-block .fm,.literal-block .vc,.literal-block .vg,.literal-block .vi,.literal-block .vm{color:#000}.literal-block .il{color:#3af}
|
|
@ -1,88 +0,0 @@
|
|||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #ffffff; }
|
||||
.highlight .c { color: #888888; font-style: italic } /* Comment */
|
||||
.highlight .err { border: 1px solid #FF0000 } /* Error */
|
||||
.highlight .k { font-weight: bold; text-decoration: underline } /* Keyword */
|
||||
.highlight .ch { color: #888888; font-style: italic } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #888888; font-style: italic } /* Comment.Multiline */
|
||||
.highlight .cp { color: #888888; font-weight: bold } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #888888; font-style: italic } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #888888; font-style: italic } /* Comment.Single */
|
||||
.highlight .cs { color: #888888; font-weight: bold } /* Comment.Special */
|
||||
.highlight .kc { font-weight: bold; text-decoration: underline } /* Keyword.Constant */
|
||||
.highlight .kd { font-weight: bold; font-style: italic; text-decoration: underline } /* Keyword.Declaration */
|
||||
.highlight .kn { font-weight: bold; text-decoration: underline } /* Keyword.Namespace */
|
||||
.highlight .kp { font-weight: bold; text-decoration: underline } /* Keyword.Pseudo */
|
||||
.highlight .kr { font-weight: bold; text-decoration: underline } /* Keyword.Reserved */
|
||||
.highlight .kt { font-weight: bold; text-decoration: underline } /* Keyword.Type */
|
||||
.highlight .s { color: #666666; font-style: italic } /* Literal.String */
|
||||
.highlight .nb { font-weight: bold; font-style: italic } /* Name.Builtin */
|
||||
.highlight .nc { color: #666666; font-weight: bold; font-style: italic } /* Name.Class */
|
||||
.highlight .no { color: #666666; font-weight: bold; font-style: italic } /* Name.Constant */
|
||||
.highlight .nf { color: #666666; font-weight: bold; font-style: italic } /* Name.Function */
|
||||
.highlight .nn { color: #666666; font-weight: bold; font-style: italic } /* Name.Namespace */
|
||||
.highlight .nv { color: #666666; font-weight: bold; font-style: italic } /* Name.Variable */
|
||||
.highlight .ow { font-weight: bold } /* Operator.Word */
|
||||
.highlight .sa { color: #666666; font-style: italic } /* Literal.String.Affix */
|
||||
.highlight .sb { color: #666666; font-style: italic } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #666666; font-style: italic } /* Literal.String.Char */
|
||||
.highlight .dl { color: #666666; font-style: italic } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #666666; font-style: italic } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #666666; font-style: italic } /* Literal.String.Double */
|
||||
.highlight .se { color: #666666; font-style: italic } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #666666; font-style: italic } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #666666; font-style: italic } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #666666; font-style: italic } /* Literal.String.Other */
|
||||
.highlight .sr { color: #666666; font-style: italic } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #666666; font-style: italic } /* Literal.String.Single */
|
||||
.highlight .ss { color: #666666; font-style: italic } /* Literal.String.Symbol */
|
||||
.highlight .bp { font-weight: bold; font-style: italic } /* Name.Builtin.Pseudo */
|
||||
.highlight .fm { color: #666666; font-weight: bold; font-style: italic } /* Name.Function.Magic */
|
||||
.highlight .vc { color: #666666; font-weight: bold; font-style: italic } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #666666; font-weight: bold; font-style: italic } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #666666; font-weight: bold; font-style: italic } /* Name.Variable.Instance */
|
||||
.highlight .vm { color: #666666; font-weight: bold; font-style: italic } /* Name.Variable.Magic */
|
||||
.literal-block .hll { background-color: #ffffcc }
|
||||
.literal-block { background: #ffffff; }
|
||||
.literal-block .c { color: #888888; font-style: italic } /* Comment */
|
||||
.literal-block .err { border: 1px solid #FF0000 } /* Error */
|
||||
.literal-block .k { font-weight: bold; text-decoration: underline } /* Keyword */
|
||||
.literal-block .ch { color: #888888; font-style: italic } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #888888; font-style: italic } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #888888; font-weight: bold } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #888888; font-style: italic } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #888888; font-style: italic } /* Comment.Single */
|
||||
.literal-block .cs { color: #888888; font-weight: bold } /* Comment.Special */
|
||||
.literal-block .kc { font-weight: bold; text-decoration: underline } /* Keyword.Constant */
|
||||
.literal-block .kd { font-weight: bold; font-style: italic; text-decoration: underline } /* Keyword.Declaration */
|
||||
.literal-block .kn { font-weight: bold; text-decoration: underline } /* Keyword.Namespace */
|
||||
.literal-block .kp { font-weight: bold; text-decoration: underline } /* Keyword.Pseudo */
|
||||
.literal-block .kr { font-weight: bold; text-decoration: underline } /* Keyword.Reserved */
|
||||
.literal-block .kt { font-weight: bold; text-decoration: underline } /* Keyword.Type */
|
||||
.literal-block .s { color: #666666; font-style: italic } /* Literal.String */
|
||||
.literal-block .nb { font-weight: bold; font-style: italic } /* Name.Builtin */
|
||||
.literal-block .nc { color: #666666; font-weight: bold; font-style: italic } /* Name.Class */
|
||||
.literal-block .no { color: #666666; font-weight: bold; font-style: italic } /* Name.Constant */
|
||||
.literal-block .nf { color: #666666; font-weight: bold; font-style: italic } /* Name.Function */
|
||||
.literal-block .nn { color: #666666; font-weight: bold; font-style: italic } /* Name.Namespace */
|
||||
.literal-block .nv { color: #666666; font-weight: bold; font-style: italic } /* Name.Variable */
|
||||
.literal-block .ow { font-weight: bold } /* Operator.Word */
|
||||
.literal-block .sa { color: #666666; font-style: italic } /* Literal.String.Affix */
|
||||
.literal-block .sb { color: #666666; font-style: italic } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #666666; font-style: italic } /* Literal.String.Char */
|
||||
.literal-block .dl { color: #666666; font-style: italic } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #666666; font-style: italic } /* Literal.String.Doc */
|
||||
.literal-block .s2 { color: #666666; font-style: italic } /* Literal.String.Double */
|
||||
.literal-block .se { color: #666666; font-style: italic } /* Literal.String.Escape */
|
||||
.literal-block .sh { color: #666666; font-style: italic } /* Literal.String.Heredoc */
|
||||
.literal-block .si { color: #666666; font-style: italic } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #666666; font-style: italic } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #666666; font-style: italic } /* Literal.String.Regex */
|
||||
.literal-block .s1 { color: #666666; font-style: italic } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #666666; font-style: italic } /* Literal.String.Symbol */
|
||||
.literal-block .bp { font-weight: bold; font-style: italic } /* Name.Builtin.Pseudo */
|
||||
.literal-block .fm { color: #666666; font-weight: bold; font-style: italic } /* Name.Function.Magic */
|
||||
.literal-block .vc { color: #666666; font-weight: bold; font-style: italic } /* Name.Variable.Class */
|
||||
.literal-block .vg { color: #666666; font-weight: bold; font-style: italic } /* Name.Variable.Global */
|
||||
.literal-block .vi { color: #666666; font-weight: bold; font-style: italic } /* Name.Variable.Instance */
|
||||
.literal-block .vm { color: #666666; font-weight: bold; font-style: italic } /* Name.Variable.Magic */
|
1
docs/blog/theme/pygments/algol.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.highlight .hll{background-color:#ffc}.highlight{background:#fff}.highlight .c{color:#888;font-style:italic}.highlight .err{border:1px solid red}.highlight .k{font-weight:700;text-decoration:underline}.highlight .ch,.highlight .cm{color:#888;font-style:italic}.highlight .cp{color:#888;font-weight:700}.highlight .c1,.highlight .cpf{color:#888;font-style:italic}.highlight .cs{color:#888;font-weight:700}.highlight .kc,.highlight .kd{font-weight:700;text-decoration:underline}.highlight .kd{font-style:italic}.highlight .kn,.highlight .kp,.highlight .kr,.highlight .kt{font-weight:700;text-decoration:underline}.highlight .s{color:#666;font-style:italic}.highlight .nb,.highlight .nc{font-weight:700;font-style:italic}.highlight .nc{color:#666}.highlight .nf,.highlight .nn,.highlight .no,.highlight .nv{color:#666;font-weight:700;font-style:italic}.highlight .ow{font-weight:700}.highlight .dl,.highlight .s1,.highlight .s2,.highlight .sa,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si,.highlight .sr,.highlight .ss,.highlight .sx{color:#666;font-style:italic}.highlight .bp,.highlight .fm{font-weight:700;font-style:italic}.highlight .fm{color:#666}.highlight .vc,.highlight .vg,.highlight .vi,.highlight .vm{color:#666;font-weight:700;font-style:italic}.literal-block .hll{background-color:#ffc}.literal-block{background:#fff}.literal-block .c{color:#888;font-style:italic}.literal-block .err{border:1px solid red}.literal-block .k{font-weight:700;text-decoration:underline}.literal-block .ch,.literal-block .cm{color:#888;font-style:italic}.literal-block .cp{color:#888;font-weight:700}.literal-block .c1,.literal-block .cpf{color:#888;font-style:italic}.literal-block .cs{color:#888;font-weight:700}.literal-block .kc,.literal-block .kd{font-weight:700;text-decoration:underline}.literal-block .kd{font-style:italic}.literal-block .kn,.literal-block .kp,.literal-block .kr,.literal-block .kt{font-weight:700;text-decoration:underline}.literal-block .s{color:#666;font-style:italic}.literal-block .nb,.literal-block .nc{font-weight:700;font-style:italic}.literal-block .nc{color:#666}.literal-block .nf,.literal-block .nn,.literal-block .no,.literal-block .nv{color:#666;font-weight:700;font-style:italic}.literal-block .ow{font-weight:700}.literal-block .dl,.literal-block .s1,.literal-block .s2,.literal-block .sa,.literal-block .sb,.literal-block .sc,.literal-block .sd,.literal-block .se,.literal-block .sh,.literal-block .si,.literal-block .sr,.literal-block .ss,.literal-block .sx{color:#666;font-style:italic}.literal-block .bp,.literal-block .fm{font-weight:700;font-style:italic}.literal-block .fm{color:#666}.literal-block .vc,.literal-block .vg,.literal-block .vi,.literal-block .vm{color:#666;font-weight:700;font-style:italic}
|
|
@ -1,88 +0,0 @@
|
|||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #ffffff; }
|
||||
.highlight .c { color: #888888; font-style: italic } /* Comment */
|
||||
.highlight .err { border: 1px solid #FF0000 } /* Error */
|
||||
.highlight .k { font-weight: bold } /* Keyword */
|
||||
.highlight .ch { color: #888888; font-style: italic } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #888888; font-style: italic } /* Comment.Multiline */
|
||||
.highlight .cp { color: #888888; font-weight: bold } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #888888; font-style: italic } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #888888; font-style: italic } /* Comment.Single */
|
||||
.highlight .cs { color: #888888; font-weight: bold } /* Comment.Special */
|
||||
.highlight .kc { font-weight: bold } /* Keyword.Constant */
|
||||
.highlight .kd { font-weight: bold; font-style: italic } /* Keyword.Declaration */
|
||||
.highlight .kn { font-weight: bold } /* Keyword.Namespace */
|
||||
.highlight .kp { font-weight: bold } /* Keyword.Pseudo */
|
||||
.highlight .kr { font-weight: bold } /* Keyword.Reserved */
|
||||
.highlight .kt { font-weight: bold } /* Keyword.Type */
|
||||
.highlight .s { color: #666666; font-style: italic } /* Literal.String */
|
||||
.highlight .nb { font-weight: bold; font-style: italic } /* Name.Builtin */
|
||||
.highlight .nc { color: #666666; font-weight: bold; font-style: italic } /* Name.Class */
|
||||
.highlight .no { color: #666666; font-weight: bold; font-style: italic } /* Name.Constant */
|
||||
.highlight .nf { color: #666666; font-weight: bold; font-style: italic } /* Name.Function */
|
||||
.highlight .nn { color: #666666; font-weight: bold; font-style: italic } /* Name.Namespace */
|
||||
.highlight .nv { color: #666666; font-weight: bold; font-style: italic } /* Name.Variable */
|
||||
.highlight .ow { font-weight: bold } /* Operator.Word */
|
||||
.highlight .sa { color: #666666; font-style: italic } /* Literal.String.Affix */
|
||||
.highlight .sb { color: #666666; font-style: italic } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #666666; font-style: italic } /* Literal.String.Char */
|
||||
.highlight .dl { color: #666666; font-style: italic } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #666666; font-style: italic } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #666666; font-style: italic } /* Literal.String.Double */
|
||||
.highlight .se { color: #666666; font-style: italic } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #666666; font-style: italic } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #666666; font-style: italic } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #666666; font-style: italic } /* Literal.String.Other */
|
||||
.highlight .sr { color: #666666; font-style: italic } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #666666; font-style: italic } /* Literal.String.Single */
|
||||
.highlight .ss { color: #666666; font-style: italic } /* Literal.String.Symbol */
|
||||
.highlight .bp { font-weight: bold; font-style: italic } /* Name.Builtin.Pseudo */
|
||||
.highlight .fm { color: #666666; font-weight: bold; font-style: italic } /* Name.Function.Magic */
|
||||
.highlight .vc { color: #666666; font-weight: bold; font-style: italic } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #666666; font-weight: bold; font-style: italic } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #666666; font-weight: bold; font-style: italic } /* Name.Variable.Instance */
|
||||
.highlight .vm { color: #666666; font-weight: bold; font-style: italic } /* Name.Variable.Magic */
|
||||
.literal-block .hll { background-color: #ffffcc }
|
||||
.literal-block { background: #ffffff; }
|
||||
.literal-block .c { color: #888888; font-style: italic } /* Comment */
|
||||
.literal-block .err { border: 1px solid #FF0000 } /* Error */
|
||||
.literal-block .k { font-weight: bold } /* Keyword */
|
||||
.literal-block .ch { color: #888888; font-style: italic } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #888888; font-style: italic } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #888888; font-weight: bold } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #888888; font-style: italic } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #888888; font-style: italic } /* Comment.Single */
|
||||
.literal-block .cs { color: #888888; font-weight: bold } /* Comment.Special */
|
||||
.literal-block .kc { font-weight: bold } /* Keyword.Constant */
|
||||
.literal-block .kd { font-weight: bold; font-style: italic } /* Keyword.Declaration */
|
||||
.literal-block .kn { font-weight: bold } /* Keyword.Namespace */
|
||||
.literal-block .kp { font-weight: bold } /* Keyword.Pseudo */
|
||||
.literal-block .kr { font-weight: bold } /* Keyword.Reserved */
|
||||
.literal-block .kt { font-weight: bold } /* Keyword.Type */
|
||||
.literal-block .s { color: #666666; font-style: italic } /* Literal.String */
|
||||
.literal-block .nb { font-weight: bold; font-style: italic } /* Name.Builtin */
|
||||
.literal-block .nc { color: #666666; font-weight: bold; font-style: italic } /* Name.Class */
|
||||
.literal-block .no { color: #666666; font-weight: bold; font-style: italic } /* Name.Constant */
|
||||
.literal-block .nf { color: #666666; font-weight: bold; font-style: italic } /* Name.Function */
|
||||
.literal-block .nn { color: #666666; font-weight: bold; font-style: italic } /* Name.Namespace */
|
||||
.literal-block .nv { color: #666666; font-weight: bold; font-style: italic } /* Name.Variable */
|
||||
.literal-block .ow { font-weight: bold } /* Operator.Word */
|
||||
.literal-block .sa { color: #666666; font-style: italic } /* Literal.String.Affix */
|
||||
.literal-block .sb { color: #666666; font-style: italic } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #666666; font-style: italic } /* Literal.String.Char */
|
||||
.literal-block .dl { color: #666666; font-style: italic } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #666666; font-style: italic } /* Literal.String.Doc */
|
||||
.literal-block .s2 { color: #666666; font-style: italic } /* Literal.String.Double */
|
||||
.literal-block .se { color: #666666; font-style: italic } /* Literal.String.Escape */
|
||||
.literal-block .sh { color: #666666; font-style: italic } /* Literal.String.Heredoc */
|
||||
.literal-block .si { color: #666666; font-style: italic } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #666666; font-style: italic } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #666666; font-style: italic } /* Literal.String.Regex */
|
||||
.literal-block .s1 { color: #666666; font-style: italic } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #666666; font-style: italic } /* Literal.String.Symbol */
|
||||
.literal-block .bp { font-weight: bold; font-style: italic } /* Name.Builtin.Pseudo */
|
||||
.literal-block .fm { color: #666666; font-weight: bold; font-style: italic } /* Name.Function.Magic */
|
||||
.literal-block .vc { color: #666666; font-weight: bold; font-style: italic } /* Name.Variable.Class */
|
||||
.literal-block .vg { color: #666666; font-weight: bold; font-style: italic } /* Name.Variable.Global */
|
||||
.literal-block .vi { color: #666666; font-weight: bold; font-style: italic } /* Name.Variable.Instance */
|
||||
.literal-block .vm { color: #666666; font-weight: bold; font-style: italic } /* Name.Variable.Magic */
|
1
docs/blog/theme/pygments/algol_nu.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.highlight .hll{background-color:#ffc}.highlight{background:#fff}.highlight .c{color:#888;font-style:italic}.highlight .err{border:1px solid red}.highlight .k{font-weight:700}.highlight .ch,.highlight .cm{color:#888;font-style:italic}.highlight .cp{color:#888;font-weight:700}.highlight .c1,.highlight .cpf{color:#888;font-style:italic}.highlight .cs{color:#888}.highlight .cs,.highlight .kc,.highlight .kd{font-weight:700}.highlight .kd{font-style:italic}.highlight .kn,.highlight .kp,.highlight .kr,.highlight .kt{font-weight:700}.highlight .s{color:#666;font-style:italic}.highlight .nb,.highlight .nc{font-weight:700;font-style:italic}.highlight .nc{color:#666}.highlight .nf,.highlight .nn,.highlight .no,.highlight .nv{color:#666;font-weight:700;font-style:italic}.highlight .ow{font-weight:700}.highlight .dl,.highlight .s1,.highlight .s2,.highlight .sa,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si,.highlight .sr,.highlight .ss,.highlight .sx{color:#666;font-style:italic}.highlight .bp,.highlight .fm{font-weight:700;font-style:italic}.highlight .fm{color:#666}.highlight .vc,.highlight .vg,.highlight .vi,.highlight .vm{color:#666;font-weight:700;font-style:italic}.literal-block .hll{background-color:#ffc}.literal-block{background:#fff}.literal-block .c{color:#888;font-style:italic}.literal-block .err{border:1px solid red}.literal-block .k{font-weight:700}.literal-block .ch,.literal-block .cm{color:#888;font-style:italic}.literal-block .cp{color:#888;font-weight:700}.literal-block .c1,.literal-block .cpf{color:#888;font-style:italic}.literal-block .cs{color:#888;font-weight:700}.literal-block .kc{font-weight:700}.literal-block .kd{font-weight:700;font-style:italic}.literal-block .kn,.literal-block .kp,.literal-block .kr,.literal-block .kt{font-weight:700}.literal-block .s{color:#666;font-style:italic}.literal-block .nb,.literal-block .nc{font-weight:700;font-style:italic}.literal-block .nc{color:#666}.literal-block .nf,.literal-block .nn,.literal-block .no,.literal-block .nv{color:#666;font-weight:700;font-style:italic}.literal-block .ow{font-weight:700}.literal-block .dl,.literal-block .s1,.literal-block .s2,.literal-block .sa,.literal-block .sb,.literal-block .sc,.literal-block .sd,.literal-block .se,.literal-block .sh,.literal-block .si,.literal-block .sr,.literal-block .ss,.literal-block .sx{color:#666;font-style:italic}.literal-block .bp,.literal-block .fm{font-weight:700;font-style:italic}.literal-block .fm{color:#666}.literal-block .vc,.literal-block .vg,.literal-block .vi,.literal-block .vm{color:#666;font-weight:700;font-style:italic}
|
|
@ -1,122 +0,0 @@
|
|||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #ffffff; }
|
||||
.highlight .c { color: #95a5a6 } /* Comment */
|
||||
.highlight .err { color: #a61717 } /* Error */
|
||||
.highlight .k { color: #728E00 } /* Keyword */
|
||||
.highlight .n { color: #434f54 } /* Name */
|
||||
.highlight .o { color: #728E00 } /* Operator */
|
||||
.highlight .ch { color: #95a5a6 } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #95a5a6 } /* Comment.Multiline */
|
||||
.highlight .cp { color: #728E00 } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #95a5a6 } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #95a5a6 } /* Comment.Single */
|
||||
.highlight .cs { color: #95a5a6 } /* Comment.Special */
|
||||
.highlight .kc { color: #00979D } /* Keyword.Constant */
|
||||
.highlight .kd { color: #728E00 } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #728E00 } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #00979D } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #00979D } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #00979D } /* Keyword.Type */
|
||||
.highlight .m { color: #8A7B52 } /* Literal.Number */
|
||||
.highlight .s { color: #7F8C8D } /* Literal.String */
|
||||
.highlight .na { color: #434f54 } /* Name.Attribute */
|
||||
.highlight .nb { color: #728E00 } /* Name.Builtin */
|
||||
.highlight .nc { color: #434f54 } /* Name.Class */
|
||||
.highlight .no { color: #434f54 } /* Name.Constant */
|
||||
.highlight .nd { color: #434f54 } /* Name.Decorator */
|
||||
.highlight .ni { color: #434f54 } /* Name.Entity */
|
||||
.highlight .ne { color: #434f54 } /* Name.Exception */
|
||||
.highlight .nf { color: #D35400 } /* Name.Function */
|
||||
.highlight .nl { color: #434f54 } /* Name.Label */
|
||||
.highlight .nn { color: #434f54 } /* Name.Namespace */
|
||||
.highlight .nx { color: #728E00 } /* Name.Other */
|
||||
.highlight .py { color: #434f54 } /* Name.Property */
|
||||
.highlight .nt { color: #434f54 } /* Name.Tag */
|
||||
.highlight .nv { color: #434f54 } /* Name.Variable */
|
||||
.highlight .ow { color: #728E00 } /* Operator.Word */
|
||||
.highlight .mb { color: #8A7B52 } /* Literal.Number.Bin */
|
||||
.highlight .mf { color: #8A7B52 } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #8A7B52 } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #8A7B52 } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #8A7B52 } /* Literal.Number.Oct */
|
||||
.highlight .sa { color: #7F8C8D } /* Literal.String.Affix */
|
||||
.highlight .sb { color: #7F8C8D } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #7F8C8D } /* Literal.String.Char */
|
||||
.highlight .dl { color: #7F8C8D } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #7F8C8D } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #7F8C8D } /* Literal.String.Double */
|
||||
.highlight .se { color: #7F8C8D } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #7F8C8D } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #7F8C8D } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #7F8C8D } /* Literal.String.Other */
|
||||
.highlight .sr { color: #7F8C8D } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #7F8C8D } /* Literal.String.Single */
|
||||
.highlight .ss { color: #7F8C8D } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #728E00 } /* Name.Builtin.Pseudo */
|
||||
.highlight .fm { color: #D35400 } /* Name.Function.Magic */
|
||||
.highlight .vc { color: #434f54 } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #434f54 } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #434f54 } /* Name.Variable.Instance */
|
||||
.highlight .vm { color: #434f54 } /* Name.Variable.Magic */
|
||||
.highlight .il { color: #8A7B52 } /* Literal.Number.Integer.Long */
|
||||
.literal-block .hll { background-color: #ffffcc }
|
||||
.literal-block { background: #ffffff; }
|
||||
.literal-block .c { color: #95a5a6 } /* Comment */
|
||||
.literal-block .err { color: #a61717 } /* Error */
|
||||
.literal-block .k { color: #728E00 } /* Keyword */
|
||||
.literal-block .n { color: #434f54 } /* Name */
|
||||
.literal-block .o { color: #728E00 } /* Operator */
|
||||
.literal-block .ch { color: #95a5a6 } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #95a5a6 } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #728E00 } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #95a5a6 } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #95a5a6 } /* Comment.Single */
|
||||
.literal-block .cs { color: #95a5a6 } /* Comment.Special */
|
||||
.literal-block .kc { color: #00979D } /* Keyword.Constant */
|
||||
.literal-block .kd { color: #728E00 } /* Keyword.Declaration */
|
||||
.literal-block .kn { color: #728E00 } /* Keyword.Namespace */
|
||||
.literal-block .kp { color: #00979D } /* Keyword.Pseudo */
|
||||
.literal-block .kr { color: #00979D } /* Keyword.Reserved */
|
||||
.literal-block .kt { color: #00979D } /* Keyword.Type */
|
||||
.literal-block .m { color: #8A7B52 } /* Literal.Number */
|
||||
.literal-block .s { color: #7F8C8D } /* Literal.String */
|
||||
.literal-block .na { color: #434f54 } /* Name.Attribute */
|
||||
.literal-block .nb { color: #728E00 } /* Name.Builtin */
|
||||
.literal-block .nc { color: #434f54 } /* Name.Class */
|
||||
.literal-block .no { color: #434f54 } /* Name.Constant */
|
||||
.literal-block .nd { color: #434f54 } /* Name.Decorator */
|
||||
.literal-block .ni { color: #434f54 } /* Name.Entity */
|
||||
.literal-block .ne { color: #434f54 } /* Name.Exception */
|
||||
.literal-block .nf { color: #D35400 } /* Name.Function */
|
||||
.literal-block .nl { color: #434f54 } /* Name.Label */
|
||||
.literal-block .nn { color: #434f54 } /* Name.Namespace */
|
||||
.literal-block .nx { color: #728E00 } /* Name.Other */
|
||||
.literal-block .py { color: #434f54 } /* Name.Property */
|
||||
.literal-block .nt { color: #434f54 } /* Name.Tag */
|
||||
.literal-block .nv { color: #434f54 } /* Name.Variable */
|
||||
.literal-block .ow { color: #728E00 } /* Operator.Word */
|
||||
.literal-block .mb { color: #8A7B52 } /* Literal.Number.Bin */
|
||||
.literal-block .mf { color: #8A7B52 } /* Literal.Number.Float */
|
||||
.literal-block .mh { color: #8A7B52 } /* Literal.Number.Hex */
|
||||
.literal-block .mi { color: #8A7B52 } /* Literal.Number.Integer */
|
||||
.literal-block .mo { color: #8A7B52 } /* Literal.Number.Oct */
|
||||
.literal-block .sa { color: #7F8C8D } /* Literal.String.Affix */
|
||||
.literal-block .sb { color: #7F8C8D } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #7F8C8D } /* Literal.String.Char */
|
||||
.literal-block .dl { color: #7F8C8D } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #7F8C8D } /* Literal.String.Doc */
|
||||
.literal-block .s2 { color: #7F8C8D } /* Literal.String.Double */
|
||||
.literal-block .se { color: #7F8C8D } /* Literal.String.Escape */
|
||||
.literal-block .sh { color: #7F8C8D } /* Literal.String.Heredoc */
|
||||
.literal-block .si { color: #7F8C8D } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #7F8C8D } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #7F8C8D } /* Literal.String.Regex */
|
||||
.literal-block .s1 { color: #7F8C8D } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #7F8C8D } /* Literal.String.Symbol */
|
||||
.literal-block .bp { color: #728E00 } /* Name.Builtin.Pseudo */
|
||||
.literal-block .fm { color: #D35400 } /* Name.Function.Magic */
|
||||
.literal-block .vc { color: #434f54 } /* Name.Variable.Class */
|
||||
.literal-block .vg { color: #434f54 } /* Name.Variable.Global */
|
||||
.literal-block .vi { color: #434f54 } /* Name.Variable.Instance */
|
||||
.literal-block .vm { color: #434f54 } /* Name.Variable.Magic */
|
||||
.literal-block .il { color: #8A7B52 } /* Literal.Number.Integer.Long */
|
1
docs/blog/theme/pygments/arduino.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.highlight .hll{background-color:#ffc}.highlight{background:#fff}.highlight .c{color:#95a5a6}.highlight .err{color:#a61717}.highlight .k{color:#728e00}.highlight .n{color:#434f54}.highlight .o{color:#728e00}.highlight .ch,.highlight .cm{color:#95a5a6}.highlight .cp{color:#728e00}.highlight .c1,.highlight .cpf,.highlight .cs{color:#95a5a6}.highlight .kc{color:#00979d}.highlight .kd,.highlight .kn{color:#728e00}.highlight .kp,.highlight .kr,.highlight .kt{color:#00979d}.highlight .m{color:#8a7b52}.highlight .s{color:#7f8c8d}.highlight .na{color:#434f54}.highlight .nb{color:#728e00}.highlight .nc,.highlight .nd,.highlight .ne,.highlight .ni,.highlight .no{color:#434f54}.highlight .nf{color:#d35400}.highlight .nl,.highlight .nn{color:#434f54}.highlight .nx{color:#728e00}.highlight .nt,.highlight .nv,.highlight .py{color:#434f54}.highlight .ow{color:#728e00}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#8a7b52}.highlight .dl,.highlight .s1,.highlight .s2,.highlight .sa,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si,.highlight .sr,.highlight .ss,.highlight .sx{color:#7f8c8d}.highlight .bp{color:#728e00}.highlight .fm{color:#d35400}.highlight .vc,.highlight .vg,.highlight .vi,.highlight .vm{color:#434f54}.highlight .il{color:#8a7b52}.literal-block .hll{background-color:#ffc}.literal-block{background:#fff}.literal-block .c{color:#95a5a6}.literal-block .err{color:#a61717}.literal-block .k{color:#728e00}.literal-block .n{color:#434f54}.literal-block .o{color:#728e00}.literal-block .ch,.literal-block .cm{color:#95a5a6}.literal-block .cp{color:#728e00}.literal-block .c1,.literal-block .cpf,.literal-block .cs{color:#95a5a6}.literal-block .kc{color:#00979d}.literal-block .kd,.literal-block .kn{color:#728e00}.literal-block .kp,.literal-block .kr,.literal-block .kt{color:#00979d}.literal-block .m{color:#8a7b52}.literal-block .s{color:#7f8c8d}.literal-block .na{color:#434f54}.literal-block .nb{color:#728e00}.literal-block .nc,.literal-block .nd,.literal-block .ne,.literal-block .ni,.literal-block .no{color:#434f54}.literal-block .nf{color:#d35400}.literal-block .nl,.literal-block .nn{color:#434f54}.literal-block .nx{color:#728e00}.literal-block .nt,.literal-block .nv,.literal-block .py{color:#434f54}.literal-block .ow{color:#728e00}.literal-block .mb,.literal-block .mf,.literal-block .mh,.literal-block .mi,.literal-block .mo{color:#8a7b52}.literal-block .dl,.literal-block .s1,.literal-block .s2,.literal-block .sa,.literal-block .sb,.literal-block .sc,.literal-block .sd,.literal-block .se,.literal-block .sh,.literal-block .si,.literal-block .sr,.literal-block .ss,.literal-block .sx{color:#7f8c8d}.literal-block .bp{color:#728e00}.literal-block .fm{color:#d35400}.literal-block .vc,.literal-block .vg,.literal-block .vi,.literal-block .vm{color:#434f54}.literal-block .il{color:#8a7b52}
|
|
@ -1,132 +0,0 @@
|
|||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #ffffff; }
|
||||
.highlight .c { color: #aaaaaa; font-style: italic } /* Comment */
|
||||
.highlight .err { color: #FF0000; background-color: #FFAAAA } /* Error */
|
||||
.highlight .k { color: #0000aa } /* Keyword */
|
||||
.highlight .ch { color: #aaaaaa; font-style: italic } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #aaaaaa; font-style: italic } /* Comment.Multiline */
|
||||
.highlight .cp { color: #4c8317 } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #aaaaaa; font-style: italic } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #aaaaaa; font-style: italic } /* Comment.Single */
|
||||
.highlight .cs { color: #0000aa; font-style: italic } /* Comment.Special */
|
||||
.highlight .gd { color: #aa0000 } /* Generic.Deleted */
|
||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||
.highlight .gr { color: #aa0000 } /* Generic.Error */
|
||||
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
||||
.highlight .gi { color: #00aa00 } /* Generic.Inserted */
|
||||
.highlight .go { color: #888888 } /* Generic.Output */
|
||||
.highlight .gp { color: #555555 } /* Generic.Prompt */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
||||
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
|
||||
.highlight .kc { color: #0000aa } /* Keyword.Constant */
|
||||
.highlight .kd { color: #0000aa } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #0000aa } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #0000aa } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #0000aa } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #00aaaa } /* Keyword.Type */
|
||||
.highlight .m { color: #009999 } /* Literal.Number */
|
||||
.highlight .s { color: #aa5500 } /* Literal.String */
|
||||
.highlight .na { color: #1e90ff } /* Name.Attribute */
|
||||
.highlight .nb { color: #00aaaa } /* Name.Builtin */
|
||||
.highlight .nc { color: #00aa00; text-decoration: underline } /* Name.Class */
|
||||
.highlight .no { color: #aa0000 } /* Name.Constant */
|
||||
.highlight .nd { color: #888888 } /* Name.Decorator */
|
||||
.highlight .ni { color: #880000; font-weight: bold } /* Name.Entity */
|
||||
.highlight .nf { color: #00aa00 } /* Name.Function */
|
||||
.highlight .nn { color: #00aaaa; text-decoration: underline } /* Name.Namespace */
|
||||
.highlight .nt { color: #1e90ff; font-weight: bold } /* Name.Tag */
|
||||
.highlight .nv { color: #aa0000 } /* Name.Variable */
|
||||
.highlight .ow { color: #0000aa } /* Operator.Word */
|
||||
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.highlight .mb { color: #009999 } /* Literal.Number.Bin */
|
||||
.highlight .mf { color: #009999 } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
|
||||
.highlight .sa { color: #aa5500 } /* Literal.String.Affix */
|
||||
.highlight .sb { color: #aa5500 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #aa5500 } /* Literal.String.Char */
|
||||
.highlight .dl { color: #aa5500 } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #aa5500 } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #aa5500 } /* Literal.String.Double */
|
||||
.highlight .se { color: #aa5500 } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #aa5500 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #aa5500 } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #aa5500 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #009999 } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #aa5500 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #0000aa } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #00aaaa } /* Name.Builtin.Pseudo */
|
||||
.highlight .fm { color: #00aa00 } /* Name.Function.Magic */
|
||||
.highlight .vc { color: #aa0000 } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #aa0000 } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #aa0000 } /* Name.Variable.Instance */
|
||||
.highlight .vm { color: #aa0000 } /* Name.Variable.Magic */
|
||||
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
|
||||
.literal-block .hll { background-color: #ffffcc }
|
||||
.literal-block { background: #ffffff; }
|
||||
.literal-block .c { color: #aaaaaa; font-style: italic } /* Comment */
|
||||
.literal-block .err { color: #FF0000; background-color: #FFAAAA } /* Error */
|
||||
.literal-block .k { color: #0000aa } /* Keyword */
|
||||
.literal-block .ch { color: #aaaaaa; font-style: italic } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #aaaaaa; font-style: italic } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #4c8317 } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #aaaaaa; font-style: italic } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #aaaaaa; font-style: italic } /* Comment.Single */
|
||||
.literal-block .cs { color: #0000aa; font-style: italic } /* Comment.Special */
|
||||
.literal-block .gd { color: #aa0000 } /* Generic.Deleted */
|
||||
.literal-block .ge { font-style: italic } /* Generic.Emph */
|
||||
.literal-block .gr { color: #aa0000 } /* Generic.Error */
|
||||
.literal-block .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
||||
.literal-block .gi { color: #00aa00 } /* Generic.Inserted */
|
||||
.literal-block .go { color: #888888 } /* Generic.Output */
|
||||
.literal-block .gp { color: #555555 } /* Generic.Prompt */
|
||||
.literal-block .gs { font-weight: bold } /* Generic.Strong */
|
||||
.literal-block .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
||||
.literal-block .gt { color: #aa0000 } /* Generic.Traceback */
|
||||
.literal-block .kc { color: #0000aa } /* Keyword.Constant */
|
||||
.literal-block .kd { color: #0000aa } /* Keyword.Declaration */
|
||||
.literal-block .kn { color: #0000aa } /* Keyword.Namespace */
|
||||
.literal-block .kp { color: #0000aa } /* Keyword.Pseudo */
|
||||
.literal-block .kr { color: #0000aa } /* Keyword.Reserved */
|
||||
.literal-block .kt { color: #00aaaa } /* Keyword.Type */
|
||||
.literal-block .m { color: #009999 } /* Literal.Number */
|
||||
.literal-block .s { color: #aa5500 } /* Literal.String */
|
||||
.literal-block .na { color: #1e90ff } /* Name.Attribute */
|
||||
.literal-block .nb { color: #00aaaa } /* Name.Builtin */
|
||||
.literal-block .nc { color: #00aa00; text-decoration: underline } /* Name.Class */
|
||||
.literal-block .no { color: #aa0000 } /* Name.Constant */
|
||||
.literal-block .nd { color: #888888 } /* Name.Decorator */
|
||||
.literal-block .ni { color: #880000; font-weight: bold } /* Name.Entity */
|
||||
.literal-block .nf { color: #00aa00 } /* Name.Function */
|
||||
.literal-block .nn { color: #00aaaa; text-decoration: underline } /* Name.Namespace */
|
||||
.literal-block .nt { color: #1e90ff; font-weight: bold } /* Name.Tag */
|
||||
.literal-block .nv { color: #aa0000 } /* Name.Variable */
|
||||
.literal-block .ow { color: #0000aa } /* Operator.Word */
|
||||
.literal-block .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.literal-block .mb { color: #009999 } /* Literal.Number.Bin */
|
||||
.literal-block .mf { color: #009999 } /* Literal.Number.Float */
|
||||
.literal-block .mh { color: #009999 } /* Literal.Number.Hex */
|
||||
.literal-block .mi { color: #009999 } /* Literal.Number.Integer */
|
||||
.literal-block .mo { color: #009999 } /* Literal.Number.Oct */
|
||||
.literal-block .sa { color: #aa5500 } /* Literal.String.Affix */
|
||||
.literal-block .sb { color: #aa5500 } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #aa5500 } /* Literal.String.Char */
|
||||
.literal-block .dl { color: #aa5500 } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #aa5500 } /* Literal.String.Doc */
|
||||
.literal-block .s2 { color: #aa5500 } /* Literal.String.Double */
|
||||
.literal-block .se { color: #aa5500 } /* Literal.String.Escape */
|
||||
.literal-block .sh { color: #aa5500 } /* Literal.String.Heredoc */
|
||||
.literal-block .si { color: #aa5500 } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #aa5500 } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #009999 } /* Literal.String.Regex */
|
||||
.literal-block .s1 { color: #aa5500 } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #0000aa } /* Literal.String.Symbol */
|
||||
.literal-block .bp { color: #00aaaa } /* Name.Builtin.Pseudo */
|
||||
.literal-block .fm { color: #00aa00 } /* Name.Function.Magic */
|
||||
.literal-block .vc { color: #aa0000 } /* Name.Variable.Class */
|
||||
.literal-block .vg { color: #aa0000 } /* Name.Variable.Global */
|
||||
.literal-block .vi { color: #aa0000 } /* Name.Variable.Instance */
|
||||
.literal-block .vm { color: #aa0000 } /* Name.Variable.Magic */
|
||||
.literal-block .il { color: #009999 } /* Literal.Number.Integer.Long */
|
1
docs/blog/theme/pygments/autumn.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.highlight .hll{background-color:#ffc}.highlight{background:#fff}.highlight .c{color:#aaa;font-style:italic}.highlight .err{color:red;background-color:#faa}.highlight .k{color:#00a}.highlight .ch,.highlight .cm{color:#aaa;font-style:italic}.highlight .cp{color:#4c8317}.highlight .c1,.highlight .cpf{color:#aaa;font-style:italic}.highlight .cs{color:#00a;font-style:italic}.highlight .gd{color:#a00}.highlight .ge{font-style:italic}.highlight .gr{color:#a00}.highlight .gh{color:navy;font-weight:700}.highlight .gi{color:#0a0}.highlight .go{color:#888}.highlight .gp{color:#555}.highlight .gs,.highlight .gu{font-weight:700}.highlight .gu{color:purple}.highlight .gt{color:#a00}.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr{color:#00a}.highlight .kt{color:#0aa}.highlight .m{color:#099}.highlight .s{color:#a50}.highlight .na{color:#1e90ff}.highlight .nb{color:#0aa}.highlight .nc{color:#0a0;text-decoration:underline}.highlight .no{color:#a00}.highlight .nd{color:#888}.highlight .ni{color:#800;font-weight:700}.highlight .nf{color:#0a0}.highlight .nn{color:#0aa;text-decoration:underline}.highlight .nt{color:#1e90ff;font-weight:700}.highlight .nv{color:#a00}.highlight .ow{color:#00a}.highlight .w{color:#bbb}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#099}.highlight .dl,.highlight .s2,.highlight .sa,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si,.highlight .sx{color:#a50}.highlight .sr{color:#099}.highlight .s1{color:#a50}.highlight .ss{color:#00a}.highlight .bp{color:#0aa}.highlight .fm{color:#0a0}.highlight .vc,.highlight .vg,.highlight .vi,.highlight .vm{color:#a00}.highlight .il{color:#099}.literal-block .hll{background-color:#ffc}.literal-block{background:#fff}.literal-block .c{color:#aaa;font-style:italic}.literal-block .err{color:red;background-color:#faa}.literal-block .k{color:#00a}.literal-block .ch,.literal-block .cm{color:#aaa;font-style:italic}.literal-block .cp{color:#4c8317}.literal-block .c1,.literal-block .cpf{color:#aaa;font-style:italic}.literal-block .cs{color:#00a;font-style:italic}.literal-block .gd{color:#a00}.literal-block .ge{font-style:italic}.literal-block .gr{color:#a00}.literal-block .gh{color:navy;font-weight:700}.literal-block .gi{color:#0a0}.literal-block .go{color:#888}.literal-block .gp{color:#555}.literal-block .gs{font-weight:700}.literal-block .gu{color:purple;font-weight:700}.literal-block .gt{color:#a00}.literal-block .kc,.literal-block .kd,.literal-block .kn,.literal-block .kp,.literal-block .kr{color:#00a}.literal-block .kt{color:#0aa}.literal-block .m{color:#099}.literal-block .s{color:#a50}.literal-block .na{color:#1e90ff}.literal-block .nb{color:#0aa}.literal-block .nc{color:#0a0;text-decoration:underline}.literal-block .no{color:#a00}.literal-block .nd{color:#888}.literal-block .ni{color:#800;font-weight:700}.literal-block .nf{color:#0a0}.literal-block .nn{color:#0aa;text-decoration:underline}.literal-block .nt{color:#1e90ff;font-weight:700}.literal-block .nv{color:#a00}.literal-block .ow{color:#00a}.literal-block .w{color:#bbb}.literal-block .mb,.literal-block .mf,.literal-block .mh,.literal-block .mi,.literal-block .mo{color:#099}.literal-block .dl,.literal-block .s2,.literal-block .sa,.literal-block .sb,.literal-block .sc,.literal-block .sd,.literal-block .se,.literal-block .sh,.literal-block .si,.literal-block .sx{color:#a50}.literal-block .sr{color:#099}.literal-block .s1{color:#a50}.literal-block .ss{color:#00a}.literal-block .bp{color:#0aa}.literal-block .fm{color:#0a0}.literal-block .vc,.literal-block .vg,.literal-block .vi,.literal-block .vm{color:#a00}.literal-block .il{color:#099}
|
|
@ -1,104 +0,0 @@
|
|||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #ffffff; }
|
||||
.highlight .c { color: #008800; font-style: italic } /* Comment */
|
||||
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
||||
.highlight .k { color: #000080; font-weight: bold } /* Keyword */
|
||||
.highlight .ch { color: #008800; font-style: italic } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #008800; font-style: italic } /* Comment.Multiline */
|
||||
.highlight .cp { color: #008080 } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #008800; font-style: italic } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #008800; font-style: italic } /* Comment.Single */
|
||||
.highlight .cs { color: #008800; font-weight: bold } /* Comment.Special */
|
||||
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
|
||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||
.highlight .gr { color: #aa0000 } /* Generic.Error */
|
||||
.highlight .gh { color: #999999 } /* Generic.Heading */
|
||||
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
|
||||
.highlight .go { color: #888888 } /* Generic.Output */
|
||||
.highlight .gp { color: #555555 } /* Generic.Prompt */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { color: #aaaaaa } /* Generic.Subheading */
|
||||
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
|
||||
.highlight .kc { color: #000080; font-weight: bold } /* Keyword.Constant */
|
||||
.highlight .kd { color: #000080; font-weight: bold } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #000080; font-weight: bold } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #000080; font-weight: bold } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #000080; font-weight: bold } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #000080; font-weight: bold } /* Keyword.Type */
|
||||
.highlight .m { color: #0000FF } /* Literal.Number */
|
||||
.highlight .s { color: #0000FF } /* Literal.String */
|
||||
.highlight .na { color: #FF0000 } /* Name.Attribute */
|
||||
.highlight .nt { color: #000080; font-weight: bold } /* Name.Tag */
|
||||
.highlight .ow { font-weight: bold } /* Operator.Word */
|
||||
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.highlight .mb { color: #0000FF } /* Literal.Number.Bin */
|
||||
.highlight .mf { color: #0000FF } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #0000FF } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #0000FF } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #0000FF } /* Literal.Number.Oct */
|
||||
.highlight .sa { color: #0000FF } /* Literal.String.Affix */
|
||||
.highlight .sb { color: #0000FF } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #800080 } /* Literal.String.Char */
|
||||
.highlight .dl { color: #0000FF } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #0000FF } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #0000FF } /* Literal.String.Double */
|
||||
.highlight .se { color: #0000FF } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #0000FF } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #0000FF } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #0000FF } /* Literal.String.Other */
|
||||
.highlight .sr { color: #0000FF } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #0000FF } /* Literal.String.Single */
|
||||
.highlight .ss { color: #0000FF } /* Literal.String.Symbol */
|
||||
.highlight .il { color: #0000FF } /* Literal.Number.Integer.Long */
|
||||
.literal-block .hll { background-color: #ffffcc }
|
||||
.literal-block { background: #ffffff; }
|
||||
.literal-block .c { color: #008800; font-style: italic } /* Comment */
|
||||
.literal-block .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
||||
.literal-block .k { color: #000080; font-weight: bold } /* Keyword */
|
||||
.literal-block .ch { color: #008800; font-style: italic } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #008800; font-style: italic } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #008080 } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #008800; font-style: italic } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #008800; font-style: italic } /* Comment.Single */
|
||||
.literal-block .cs { color: #008800; font-weight: bold } /* Comment.Special */
|
||||
.literal-block .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
|
||||
.literal-block .ge { font-style: italic } /* Generic.Emph */
|
||||
.literal-block .gr { color: #aa0000 } /* Generic.Error */
|
||||
.literal-block .gh { color: #999999 } /* Generic.Heading */
|
||||
.literal-block .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
|
||||
.literal-block .go { color: #888888 } /* Generic.Output */
|
||||
.literal-block .gp { color: #555555 } /* Generic.Prompt */
|
||||
.literal-block .gs { font-weight: bold } /* Generic.Strong */
|
||||
.literal-block .gu { color: #aaaaaa } /* Generic.Subheading */
|
||||
.literal-block .gt { color: #aa0000 } /* Generic.Traceback */
|
||||
.literal-block .kc { color: #000080; font-weight: bold } /* Keyword.Constant */
|
||||
.literal-block .kd { color: #000080; font-weight: bold } /* Keyword.Declaration */
|
||||
.literal-block .kn { color: #000080; font-weight: bold } /* Keyword.Namespace */
|
||||
.literal-block .kp { color: #000080; font-weight: bold } /* Keyword.Pseudo */
|
||||
.literal-block .kr { color: #000080; font-weight: bold } /* Keyword.Reserved */
|
||||
.literal-block .kt { color: #000080; font-weight: bold } /* Keyword.Type */
|
||||
.literal-block .m { color: #0000FF } /* Literal.Number */
|
||||
.literal-block .s { color: #0000FF } /* Literal.String */
|
||||
.literal-block .na { color: #FF0000 } /* Name.Attribute */
|
||||
.literal-block .nt { color: #000080; font-weight: bold } /* Name.Tag */
|
||||
.literal-block .ow { font-weight: bold } /* Operator.Word */
|
||||
.literal-block .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.literal-block .mb { color: #0000FF } /* Literal.Number.Bin */
|
||||
.literal-block .mf { color: #0000FF } /* Literal.Number.Float */
|
||||
.literal-block .mh { color: #0000FF } /* Literal.Number.Hex */
|
||||
.literal-block .mi { color: #0000FF } /* Literal.Number.Integer */
|
||||
.literal-block .mo { color: #0000FF } /* Literal.Number.Oct */
|
||||
.literal-block .sa { color: #0000FF } /* Literal.String.Affix */
|
||||
.literal-block .sb { color: #0000FF } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #800080 } /* Literal.String.Char */
|
||||
.literal-block .dl { color: #0000FF } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #0000FF } /* Literal.String.Doc */
|
||||
.literal-block .s2 { color: #0000FF } /* Literal.String.Double */
|
||||
.literal-block .se { color: #0000FF } /* Literal.String.Escape */
|
||||
.literal-block .sh { color: #0000FF } /* Literal.String.Heredoc */
|
||||
.literal-block .si { color: #0000FF } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #0000FF } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #0000FF } /* Literal.String.Regex */
|
||||
.literal-block .s1 { color: #0000FF } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #0000FF } /* Literal.String.Symbol */
|
||||
.literal-block .il { color: #0000FF } /* Literal.Number.Integer.Long */
|
1
docs/blog/theme/pygments/borland.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.highlight .hll{background-color:#ffc}.highlight{background:#fff}.highlight .c{color:#080;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .k{color:navy;font-weight:700}.highlight .ch,.highlight .cm{color:#080;font-style:italic}.highlight .cp{color:teal}.highlight .c1,.highlight .cpf{color:#080;font-style:italic}.highlight .cs{color:#080;font-weight:700}.highlight .gd{color:#000;background-color:#fdd}.highlight .ge{font-style:italic}.highlight .gr{color:#a00}.highlight .gh{color:#999}.highlight .gi{color:#000;background-color:#dfd}.highlight .go{color:#888}.highlight .gp{color:#555}.highlight .gs{font-weight:700}.highlight .gu{color:#aaa}.highlight .gt{color:#a00}.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr,.highlight .kt{color:navy;font-weight:700}.highlight .m,.highlight .s{color:#00f}.highlight .na{color:red}.highlight .nt{color:navy}.highlight .nt,.highlight .ow{font-weight:700}.highlight .w{color:#bbb}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo,.highlight .sa,.highlight .sb{color:#00f}.highlight .sc{color:purple}.highlight .dl,.highlight .il,.highlight .s1,.highlight .s2,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si,.highlight .sr,.highlight .ss,.highlight .sx{color:#00f}.literal-block .hll{background-color:#ffc}.literal-block{background:#fff}.literal-block .c{color:#080;font-style:italic}.literal-block .err{color:#a61717;background-color:#e3d2d2}.literal-block .k{color:navy;font-weight:700}.literal-block .ch,.literal-block .cm{color:#080;font-style:italic}.literal-block .cp{color:teal}.literal-block .c1,.literal-block .cpf{color:#080;font-style:italic}.literal-block .cs{color:#080;font-weight:700}.literal-block .gd{color:#000;background-color:#fdd}.literal-block .ge{font-style:italic}.literal-block .gr{color:#a00}.literal-block .gh{color:#999}.literal-block .gi{color:#000;background-color:#dfd}.literal-block .go{color:#888}.literal-block .gp{color:#555}.literal-block .gs{font-weight:700}.literal-block .gu{color:#aaa}.literal-block .gt{color:#a00}.literal-block .kc,.literal-block .kd,.literal-block .kn,.literal-block .kp,.literal-block .kr,.literal-block .kt{color:navy;font-weight:700}.literal-block .m,.literal-block .s{color:#00f}.literal-block .na{color:red}.literal-block .nt{color:navy;font-weight:700}.literal-block .ow{font-weight:700}.literal-block .w{color:#bbb}.literal-block .mb,.literal-block .mf,.literal-block .mh,.literal-block .mi,.literal-block .mo,.literal-block .sa,.literal-block .sb{color:#00f}.literal-block .sc{color:purple}.literal-block .dl,.literal-block .il,.literal-block .s1,.literal-block .s2,.literal-block .sd,.literal-block .se,.literal-block .sh,.literal-block .si,.literal-block .sr,.literal-block .ss,.literal-block .sx{color:#00f}
|
|
@ -1,78 +0,0 @@
|
|||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #ffffff; }
|
||||
.highlight .c { font-style: italic } /* Comment */
|
||||
.highlight .err { border: 1px solid #FF0000 } /* Error */
|
||||
.highlight .k { font-weight: bold } /* Keyword */
|
||||
.highlight .ch { font-style: italic } /* Comment.Hashbang */
|
||||
.highlight .cm { font-style: italic } /* Comment.Multiline */
|
||||
.highlight .cpf { font-style: italic } /* Comment.PreprocFile */
|
||||
.highlight .c1 { font-style: italic } /* Comment.Single */
|
||||
.highlight .cs { font-style: italic } /* Comment.Special */
|
||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||
.highlight .gh { font-weight: bold } /* Generic.Heading */
|
||||
.highlight .gp { font-weight: bold } /* Generic.Prompt */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { font-weight: bold } /* Generic.Subheading */
|
||||
.highlight .kc { font-weight: bold } /* Keyword.Constant */
|
||||
.highlight .kd { font-weight: bold } /* Keyword.Declaration */
|
||||
.highlight .kn { font-weight: bold } /* Keyword.Namespace */
|
||||
.highlight .kr { font-weight: bold } /* Keyword.Reserved */
|
||||
.highlight .s { font-style: italic } /* Literal.String */
|
||||
.highlight .nc { font-weight: bold } /* Name.Class */
|
||||
.highlight .ni { font-weight: bold } /* Name.Entity */
|
||||
.highlight .ne { font-weight: bold } /* Name.Exception */
|
||||
.highlight .nn { font-weight: bold } /* Name.Namespace */
|
||||
.highlight .nt { font-weight: bold } /* Name.Tag */
|
||||
.highlight .ow { font-weight: bold } /* Operator.Word */
|
||||
.highlight .sa { font-style: italic } /* Literal.String.Affix */
|
||||
.highlight .sb { font-style: italic } /* Literal.String.Backtick */
|
||||
.highlight .sc { font-style: italic } /* Literal.String.Char */
|
||||
.highlight .dl { font-style: italic } /* Literal.String.Delimiter */
|
||||
.highlight .sd { font-style: italic } /* Literal.String.Doc */
|
||||
.highlight .s2 { font-style: italic } /* Literal.String.Double */
|
||||
.highlight .se { font-weight: bold; font-style: italic } /* Literal.String.Escape */
|
||||
.highlight .sh { font-style: italic } /* Literal.String.Heredoc */
|
||||
.highlight .si { font-weight: bold; font-style: italic } /* Literal.String.Interpol */
|
||||
.highlight .sx { font-style: italic } /* Literal.String.Other */
|
||||
.highlight .sr { font-style: italic } /* Literal.String.Regex */
|
||||
.highlight .s1 { font-style: italic } /* Literal.String.Single */
|
||||
.highlight .ss { font-style: italic } /* Literal.String.Symbol */
|
||||
.literal-block .hll { background-color: #ffffcc }
|
||||
.literal-block { background: #ffffff; }
|
||||
.literal-block .c { font-style: italic } /* Comment */
|
||||
.literal-block .err { border: 1px solid #FF0000 } /* Error */
|
||||
.literal-block .k { font-weight: bold } /* Keyword */
|
||||
.literal-block .ch { font-style: italic } /* Comment.Hashbang */
|
||||
.literal-block .cm { font-style: italic } /* Comment.Multiline */
|
||||
.literal-block .cpf { font-style: italic } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { font-style: italic } /* Comment.Single */
|
||||
.literal-block .cs { font-style: italic } /* Comment.Special */
|
||||
.literal-block .ge { font-style: italic } /* Generic.Emph */
|
||||
.literal-block .gh { font-weight: bold } /* Generic.Heading */
|
||||
.literal-block .gp { font-weight: bold } /* Generic.Prompt */
|
||||
.literal-block .gs { font-weight: bold } /* Generic.Strong */
|
||||
.literal-block .gu { font-weight: bold } /* Generic.Subheading */
|
||||
.literal-block .kc { font-weight: bold } /* Keyword.Constant */
|
||||
.literal-block .kd { font-weight: bold } /* Keyword.Declaration */
|
||||
.literal-block .kn { font-weight: bold } /* Keyword.Namespace */
|
||||
.literal-block .kr { font-weight: bold } /* Keyword.Reserved */
|
||||
.literal-block .s { font-style: italic } /* Literal.String */
|
||||
.literal-block .nc { font-weight: bold } /* Name.Class */
|
||||
.literal-block .ni { font-weight: bold } /* Name.Entity */
|
||||
.literal-block .ne { font-weight: bold } /* Name.Exception */
|
||||
.literal-block .nn { font-weight: bold } /* Name.Namespace */
|
||||
.literal-block .nt { font-weight: bold } /* Name.Tag */
|
||||
.literal-block .ow { font-weight: bold } /* Operator.Word */
|
||||
.literal-block .sa { font-style: italic } /* Literal.String.Affix */
|
||||
.literal-block .sb { font-style: italic } /* Literal.String.Backtick */
|
||||
.literal-block .sc { font-style: italic } /* Literal.String.Char */
|
||||
.literal-block .dl { font-style: italic } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { font-style: italic } /* Literal.String.Doc */
|
||||
.literal-block .s2 { font-style: italic } /* Literal.String.Double */
|
||||
.literal-block .se { font-weight: bold; font-style: italic } /* Literal.String.Escape */
|
||||
.literal-block .sh { font-style: italic } /* Literal.String.Heredoc */
|
||||
.literal-block .si { font-weight: bold; font-style: italic } /* Literal.String.Interpol */
|
||||
.literal-block .sx { font-style: italic } /* Literal.String.Other */
|
||||
.literal-block .sr { font-style: italic } /* Literal.String.Regex */
|
||||
.literal-block .s1 { font-style: italic } /* Literal.String.Single */
|
||||
.literal-block .ss { font-style: italic } /* Literal.String.Symbol */
|
1
docs/blog/theme/pygments/bw.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.highlight .hll{background-color:#ffc}.highlight{background:#fff}.highlight .c{font-style:italic}.highlight .err{border:1px solid red}.highlight .k{font-weight:700}.highlight .c1,.highlight .ch,.highlight .cm,.highlight .cpf,.highlight .cs,.highlight .ge{font-style:italic}.highlight .gh,.highlight .gp,.highlight .gs,.highlight .gu,.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kr{font-weight:700}.highlight .s{font-style:italic}.highlight .nc,.highlight .ne,.highlight .ni,.highlight .nn,.highlight .nt,.highlight .ow{font-weight:700}.highlight .dl,.highlight .s2,.highlight .sa,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se{font-style:italic}.highlight .se{font-weight:700}.highlight .sh,.highlight .si{font-style:italic}.highlight .si{font-weight:700}.highlight .s1,.highlight .sr,.highlight .ss,.highlight .sx{font-style:italic}.literal-block .hll{background-color:#ffc}.literal-block{background:#fff}.literal-block .c{font-style:italic}.literal-block .err{border:1px solid red}.literal-block .k{font-weight:700}.literal-block .c1,.literal-block .ch,.literal-block .cm,.literal-block .cpf,.literal-block .cs,.literal-block .ge{font-style:italic}.literal-block .gh,.literal-block .gp,.literal-block .gs,.literal-block .gu,.literal-block .kc,.literal-block .kd,.literal-block .kn,.literal-block .kr{font-weight:700}.literal-block .s{font-style:italic}.literal-block .nc,.literal-block .ne,.literal-block .ni,.literal-block .nn,.literal-block .nt,.literal-block .ow{font-weight:700}.literal-block .dl,.literal-block .s2,.literal-block .sa,.literal-block .sb,.literal-block .sc,.literal-block .sd{font-style:italic}.literal-block .se{font-weight:700;font-style:italic}.literal-block .sh{font-style:italic}.literal-block .si{font-weight:700;font-style:italic}.literal-block .s1,.literal-block .sr,.literal-block .ss,.literal-block .sx{font-style:italic}
|
|
@ -1,138 +0,0 @@
|
|||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #ffffff; }
|
||||
.highlight .c { color: #888888 } /* Comment */
|
||||
.highlight .err { color: #FF0000; background-color: #FFAAAA } /* Error */
|
||||
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
|
||||
.highlight .o { color: #333333 } /* Operator */
|
||||
.highlight .ch { color: #888888 } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #888888 } /* Comment.Multiline */
|
||||
.highlight .cp { color: #557799 } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #888888 } /* Comment.Single */
|
||||
.highlight .cs { color: #cc0000; font-weight: bold } /* Comment.Special */
|
||||
.highlight .gd { color: #A00000 } /* Generic.Deleted */
|
||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||
.highlight .gr { color: #FF0000 } /* Generic.Error */
|
||||
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
||||
.highlight .gi { color: #00A000 } /* Generic.Inserted */
|
||||
.highlight .go { color: #888888 } /* Generic.Output */
|
||||
.highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
||||
.highlight .gt { color: #0044DD } /* Generic.Traceback */
|
||||
.highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
|
||||
.highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #003388; font-weight: bold } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #333399; font-weight: bold } /* Keyword.Type */
|
||||
.highlight .m { color: #6600EE; font-weight: bold } /* Literal.Number */
|
||||
.highlight .s { background-color: #fff0f0 } /* Literal.String */
|
||||
.highlight .na { color: #0000CC } /* Name.Attribute */
|
||||
.highlight .nb { color: #007020 } /* Name.Builtin */
|
||||
.highlight .nc { color: #BB0066; font-weight: bold } /* Name.Class */
|
||||
.highlight .no { color: #003366; font-weight: bold } /* Name.Constant */
|
||||
.highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */
|
||||
.highlight .ni { color: #880000; font-weight: bold } /* Name.Entity */
|
||||
.highlight .ne { color: #FF0000; font-weight: bold } /* Name.Exception */
|
||||
.highlight .nf { color: #0066BB; font-weight: bold } /* Name.Function */
|
||||
.highlight .nl { color: #997700; font-weight: bold } /* Name.Label */
|
||||
.highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
|
||||
.highlight .nt { color: #007700 } /* Name.Tag */
|
||||
.highlight .nv { color: #996633 } /* Name.Variable */
|
||||
.highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
|
||||
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.highlight .mb { color: #6600EE; font-weight: bold } /* Literal.Number.Bin */
|
||||
.highlight .mf { color: #6600EE; font-weight: bold } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #005588; font-weight: bold } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #4400EE; font-weight: bold } /* Literal.Number.Oct */
|
||||
.highlight .sa { background-color: #fff0f0 } /* Literal.String.Affix */
|
||||
.highlight .sb { background-color: #fff0f0 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #0044DD } /* Literal.String.Char */
|
||||
.highlight .dl { background-color: #fff0f0 } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #DD4422 } /* Literal.String.Doc */
|
||||
.highlight .s2 { background-color: #fff0f0 } /* Literal.String.Double */
|
||||
.highlight .se { color: #666666; font-weight: bold; background-color: #fff0f0 } /* Literal.String.Escape */
|
||||
.highlight .sh { background-color: #fff0f0 } /* Literal.String.Heredoc */
|
||||
.highlight .si { background-color: #eeeeee } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #DD2200; background-color: #fff0f0 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #000000; background-color: #fff0ff } /* Literal.String.Regex */
|
||||
.highlight .s1 { background-color: #fff0f0 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #AA6600 } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */
|
||||
.highlight .fm { color: #0066BB; font-weight: bold } /* Name.Function.Magic */
|
||||
.highlight .vc { color: #336699 } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #dd7700; font-weight: bold } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #3333BB } /* Name.Variable.Instance */
|
||||
.highlight .vm { color: #996633 } /* Name.Variable.Magic */
|
||||
.highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
|
||||
.literal-block .hll { background-color: #ffffcc }
|
||||
.literal-block { background: #ffffff; }
|
||||
.literal-block .c { color: #888888 } /* Comment */
|
||||
.literal-block .err { color: #FF0000; background-color: #FFAAAA } /* Error */
|
||||
.literal-block .k { color: #008800; font-weight: bold } /* Keyword */
|
||||
.literal-block .o { color: #333333 } /* Operator */
|
||||
.literal-block .ch { color: #888888 } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #888888 } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #557799 } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #888888 } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #888888 } /* Comment.Single */
|
||||
.literal-block .cs { color: #cc0000; font-weight: bold } /* Comment.Special */
|
||||
.literal-block .gd { color: #A00000 } /* Generic.Deleted */
|
||||
.literal-block .ge { font-style: italic } /* Generic.Emph */
|
||||
.literal-block .gr { color: #FF0000 } /* Generic.Error */
|
||||
.literal-block .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
||||
.literal-block .gi { color: #00A000 } /* Generic.Inserted */
|
||||
.literal-block .go { color: #888888 } /* Generic.Output */
|
||||
.literal-block .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
|
||||
.literal-block .gs { font-weight: bold } /* Generic.Strong */
|
||||
.literal-block .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
||||
.literal-block .gt { color: #0044DD } /* Generic.Traceback */
|
||||
.literal-block .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
|
||||
.literal-block .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
|
||||
.literal-block .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
|
||||
.literal-block .kp { color: #003388; font-weight: bold } /* Keyword.Pseudo */
|
||||
.literal-block .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
|
||||
.literal-block .kt { color: #333399; font-weight: bold } /* Keyword.Type */
|
||||
.literal-block .m { color: #6600EE; font-weight: bold } /* Literal.Number */
|
||||
.literal-block .s { background-color: #fff0f0 } /* Literal.String */
|
||||
.literal-block .na { color: #0000CC } /* Name.Attribute */
|
||||
.literal-block .nb { color: #007020 } /* Name.Builtin */
|
||||
.literal-block .nc { color: #BB0066; font-weight: bold } /* Name.Class */
|
||||
.literal-block .no { color: #003366; font-weight: bold } /* Name.Constant */
|
||||
.literal-block .nd { color: #555555; font-weight: bold } /* Name.Decorator */
|
||||
.literal-block .ni { color: #880000; font-weight: bold } /* Name.Entity */
|
||||
.literal-block .ne { color: #FF0000; font-weight: bold } /* Name.Exception */
|
||||
.literal-block .nf { color: #0066BB; font-weight: bold } /* Name.Function */
|
||||
.literal-block .nl { color: #997700; font-weight: bold } /* Name.Label */
|
||||
.literal-block .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
|
||||
.literal-block .nt { color: #007700 } /* Name.Tag */
|
||||
.literal-block .nv { color: #996633 } /* Name.Variable */
|
||||
.literal-block .ow { color: #000000; font-weight: bold } /* Operator.Word */
|
||||
.literal-block .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.literal-block .mb { color: #6600EE; font-weight: bold } /* Literal.Number.Bin */
|
||||
.literal-block .mf { color: #6600EE; font-weight: bold } /* Literal.Number.Float */
|
||||
.literal-block .mh { color: #005588; font-weight: bold } /* Literal.Number.Hex */
|
||||
.literal-block .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
|
||||
.literal-block .mo { color: #4400EE; font-weight: bold } /* Literal.Number.Oct */
|
||||
.literal-block .sa { background-color: #fff0f0 } /* Literal.String.Affix */
|
||||
.literal-block .sb { background-color: #fff0f0 } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #0044DD } /* Literal.String.Char */
|
||||
.literal-block .dl { background-color: #fff0f0 } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #DD4422 } /* Literal.String.Doc */
|
||||
.literal-block .s2 { background-color: #fff0f0 } /* Literal.String.Double */
|
||||
.literal-block .se { color: #666666; font-weight: bold; background-color: #fff0f0 } /* Literal.String.Escape */
|
||||
.literal-block .sh { background-color: #fff0f0 } /* Literal.String.Heredoc */
|
||||
.literal-block .si { background-color: #eeeeee } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #DD2200; background-color: #fff0f0 } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #000000; background-color: #fff0ff } /* Literal.String.Regex */
|
||||
.literal-block .s1 { background-color: #fff0f0 } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #AA6600 } /* Literal.String.Symbol */
|
||||
.literal-block .bp { color: #007020 } /* Name.Builtin.Pseudo */
|
||||
.literal-block .fm { color: #0066BB; font-weight: bold } /* Name.Function.Magic */
|
||||
.literal-block .vc { color: #336699 } /* Name.Variable.Class */
|
||||
.literal-block .vg { color: #dd7700; font-weight: bold } /* Name.Variable.Global */
|
||||
.literal-block .vi { color: #3333BB } /* Name.Variable.Instance */
|
||||
.literal-block .vm { color: #996633 } /* Name.Variable.Magic */
|
||||
.literal-block .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
|
1
docs/blog/theme/pygments/colorful.min.css
vendored
|
@ -1,138 +0,0 @@
|
|||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #f8f8f8; }
|
||||
.highlight .c { color: #408080; font-style: italic } /* Comment */
|
||||
.highlight .err { border: 1px solid #FF0000 } /* Error */
|
||||
.highlight .k { color: #008000; font-weight: bold } /* Keyword */
|
||||
.highlight .o { color: #666666 } /* Operator */
|
||||
.highlight .ch { color: #408080; font-style: italic } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */
|
||||
.highlight .cp { color: #BC7A00 } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */
|
||||
.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */
|
||||
.highlight .gd { color: #A00000 } /* Generic.Deleted */
|
||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||
.highlight .gr { color: #FF0000 } /* Generic.Error */
|
||||
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
||||
.highlight .gi { color: #00A000 } /* Generic.Inserted */
|
||||
.highlight .go { color: #888888 } /* Generic.Output */
|
||||
.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
||||
.highlight .gt { color: #0044DD } /* Generic.Traceback */
|
||||
.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
|
||||
.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #008000 } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #B00040 } /* Keyword.Type */
|
||||
.highlight .m { color: #666666 } /* Literal.Number */
|
||||
.highlight .s { color: #BA2121 } /* Literal.String */
|
||||
.highlight .na { color: #7D9029 } /* Name.Attribute */
|
||||
.highlight .nb { color: #008000 } /* Name.Builtin */
|
||||
.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */
|
||||
.highlight .no { color: #880000 } /* Name.Constant */
|
||||
.highlight .nd { color: #AA22FF } /* Name.Decorator */
|
||||
.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
|
||||
.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
|
||||
.highlight .nf { color: #0000FF } /* Name.Function */
|
||||
.highlight .nl { color: #A0A000 } /* Name.Label */
|
||||
.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
|
||||
.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */
|
||||
.highlight .nv { color: #19177C } /* Name.Variable */
|
||||
.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
|
||||
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.highlight .mb { color: #666666 } /* Literal.Number.Bin */
|
||||
.highlight .mf { color: #666666 } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #666666 } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #666666 } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #666666 } /* Literal.Number.Oct */
|
||||
.highlight .sa { color: #BA2121 } /* Literal.String.Affix */
|
||||
.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #BA2121 } /* Literal.String.Char */
|
||||
.highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #BA2121 } /* Literal.String.Double */
|
||||
.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #008000 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #BB6688 } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #BA2121 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #19177C } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */
|
||||
.highlight .fm { color: #0000FF } /* Name.Function.Magic */
|
||||
.highlight .vc { color: #19177C } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #19177C } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #19177C } /* Name.Variable.Instance */
|
||||
.highlight .vm { color: #19177C } /* Name.Variable.Magic */
|
||||
.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */
|
||||
.literal-block .hll { background-color: #ffffcc }
|
||||
.literal-block { background: #f8f8f8; }
|
||||
.literal-block .c { color: #408080; font-style: italic } /* Comment */
|
||||
.literal-block .err { border: 1px solid #FF0000 } /* Error */
|
||||
.literal-block .k { color: #008000; font-weight: bold } /* Keyword */
|
||||
.literal-block .o { color: #666666 } /* Operator */
|
||||
.literal-block .ch { color: #408080; font-style: italic } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #408080; font-style: italic } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #BC7A00 } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #408080; font-style: italic } /* Comment.Single */
|
||||
.literal-block .cs { color: #408080; font-style: italic } /* Comment.Special */
|
||||
.literal-block .gd { color: #A00000 } /* Generic.Deleted */
|
||||
.literal-block .ge { font-style: italic } /* Generic.Emph */
|
||||
.literal-block .gr { color: #FF0000 } /* Generic.Error */
|
||||
.literal-block .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
||||
.literal-block .gi { color: #00A000 } /* Generic.Inserted */
|
||||
.literal-block .go { color: #888888 } /* Generic.Output */
|
||||
.literal-block .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
|
||||
.literal-block .gs { font-weight: bold } /* Generic.Strong */
|
||||
.literal-block .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
||||
.literal-block .gt { color: #0044DD } /* Generic.Traceback */
|
||||
.literal-block .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
|
||||
.literal-block .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
|
||||
.literal-block .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
|
||||
.literal-block .kp { color: #008000 } /* Keyword.Pseudo */
|
||||
.literal-block .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
|
||||
.literal-block .kt { color: #B00040 } /* Keyword.Type */
|
||||
.literal-block .m { color: #666666 } /* Literal.Number */
|
||||
.literal-block .s { color: #BA2121 } /* Literal.String */
|
||||
.literal-block .na { color: #7D9029 } /* Name.Attribute */
|
||||
.literal-block .nb { color: #008000 } /* Name.Builtin */
|
||||
.literal-block .nc { color: #0000FF; font-weight: bold } /* Name.Class */
|
||||
.literal-block .no { color: #880000 } /* Name.Constant */
|
||||
.literal-block .nd { color: #AA22FF } /* Name.Decorator */
|
||||
.literal-block .ni { color: #999999; font-weight: bold } /* Name.Entity */
|
||||
.literal-block .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
|
||||
.literal-block .nf { color: #0000FF } /* Name.Function */
|
||||
.literal-block .nl { color: #A0A000 } /* Name.Label */
|
||||
.literal-block .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
|
||||
.literal-block .nt { color: #008000; font-weight: bold } /* Name.Tag */
|
||||
.literal-block .nv { color: #19177C } /* Name.Variable */
|
||||
.literal-block .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
|
||||
.literal-block .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.literal-block .mb { color: #666666 } /* Literal.Number.Bin */
|
||||
.literal-block .mf { color: #666666 } /* Literal.Number.Float */
|
||||
.literal-block .mh { color: #666666 } /* Literal.Number.Hex */
|
||||
.literal-block .mi { color: #666666 } /* Literal.Number.Integer */
|
||||
.literal-block .mo { color: #666666 } /* Literal.Number.Oct */
|
||||
.literal-block .sa { color: #BA2121 } /* Literal.String.Affix */
|
||||
.literal-block .sb { color: #BA2121 } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #BA2121 } /* Literal.String.Char */
|
||||
.literal-block .dl { color: #BA2121 } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
|
||||
.literal-block .s2 { color: #BA2121 } /* Literal.String.Double */
|
||||
.literal-block .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
|
||||
.literal-block .sh { color: #BA2121 } /* Literal.String.Heredoc */
|
||||
.literal-block .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #008000 } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #BB6688 } /* Literal.String.Regex */
|
||||
.literal-block .s1 { color: #BA2121 } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #19177C } /* Literal.String.Symbol */
|
||||
.literal-block .bp { color: #008000 } /* Name.Builtin.Pseudo */
|
||||
.literal-block .fm { color: #0000FF } /* Name.Function.Magic */
|
||||
.literal-block .vc { color: #19177C } /* Name.Variable.Class */
|
||||
.literal-block .vg { color: #19177C } /* Name.Variable.Global */
|
||||
.literal-block .vi { color: #19177C } /* Name.Variable.Instance */
|
||||
.literal-block .vm { color: #19177C } /* Name.Variable.Magic */
|
||||
.literal-block .il { color: #666666 } /* Literal.Number.Integer.Long */
|
1
docs/blog/theme/pygments/default.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.highlight .hll{background-color:#ffc}.highlight{background:#f8f8f8}.highlight .c{color:#408080;font-style:italic}.highlight .err{border:1px solid red}.highlight .k{color:green;font-weight:700}.highlight .o{color:#666}.highlight .ch,.highlight .cm{color:#408080;font-style:italic}.highlight .cp{color:#bc7a00}.highlight .c1,.highlight .cpf,.highlight .cs{color:#408080;font-style:italic}.highlight .gd{color:#a00000}.highlight .ge{font-style:italic}.highlight .gr{color:red}.highlight .gh{color:navy;font-weight:700}.highlight .gi{color:#00a000}.highlight .go{color:#888}.highlight .gp{color:navy}.highlight .gp,.highlight .gs,.highlight .gu{font-weight:700}.highlight .gu{color:purple}.highlight .gt{color:#04d}.highlight .kc,.highlight .kd,.highlight .kn{color:green;font-weight:700}.highlight .kp{color:green}.highlight .kr{color:green;font-weight:700}.highlight .kt{color:#b00040}.highlight .m{color:#666}.highlight .s{color:#ba2121}.highlight .na{color:#7d9029}.highlight .nb{color:green}.highlight .nc{color:#00f;font-weight:700}.highlight .no{color:#800}.highlight .nd{color:#a2f}.highlight .ni{color:#999;font-weight:700}.highlight .ne{color:#d2413a;font-weight:700}.highlight .nf{color:#00f}.highlight .nl{color:#a0a000}.highlight .nn{color:#00f;font-weight:700}.highlight .nt{color:green;font-weight:700}.highlight .nv{color:#19177c}.highlight .ow{color:#a2f;font-weight:700}.highlight .w{color:#bbb}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#666}.highlight .dl,.highlight .sa,.highlight .sb,.highlight .sc{color:#ba2121}.highlight .sd{color:#ba2121;font-style:italic}.highlight .s2{color:#ba2121}.highlight .se{color:#b62;font-weight:700}.highlight .sh{color:#ba2121}.highlight .si{color:#b68;font-weight:700}.highlight .sx{color:green}.highlight .sr{color:#b68}.highlight .s1{color:#ba2121}.highlight .ss{color:#19177c}.highlight .bp{color:green}.highlight .fm{color:#00f}.highlight .vc,.highlight .vg,.highlight .vi,.highlight .vm{color:#19177c}.highlight .il{color:#666}.literal-block .hll{background-color:#ffc}.literal-block{background:#f8f8f8}.literal-block .c{color:#408080;font-style:italic}.literal-block .err{border:1px solid red}.literal-block .k{color:green;font-weight:700}.literal-block .o{color:#666}.literal-block .ch,.literal-block .cm{color:#408080;font-style:italic}.literal-block .cp{color:#bc7a00}.literal-block .c1,.literal-block .cpf,.literal-block .cs{color:#408080;font-style:italic}.literal-block .gd{color:#a00000}.literal-block .ge{font-style:italic}.literal-block .gr{color:red}.literal-block .gh{color:navy;font-weight:700}.literal-block .gi{color:#00a000}.literal-block .go{color:#888}.literal-block .gp{color:navy;font-weight:700}.literal-block .gs{font-weight:700}.literal-block .gu{color:purple;font-weight:700}.literal-block .gt{color:#04d}.literal-block .kc,.literal-block .kd,.literal-block .kn{color:green;font-weight:700}.literal-block .kp{color:green}.literal-block .kr{color:green;font-weight:700}.literal-block .kt{color:#b00040}.literal-block .m{color:#666}.literal-block .s{color:#ba2121}.literal-block .na{color:#7d9029}.literal-block .nb{color:green}.literal-block .nc{color:#00f;font-weight:700}.literal-block .no{color:#800}.literal-block .nd{color:#a2f}.literal-block .ni{color:#999;font-weight:700}.literal-block .ne{color:#d2413a;font-weight:700}.literal-block .nf{color:#00f}.literal-block .nl{color:#a0a000}.literal-block .nn{color:#00f;font-weight:700}.literal-block .nt{color:green;font-weight:700}.literal-block .nv{color:#19177c}.literal-block .ow{color:#a2f;font-weight:700}.literal-block .w{color:#bbb}.literal-block .mb,.literal-block .mf,.literal-block .mh,.literal-block .mi,.literal-block .mo{color:#666}.literal-block .dl,.literal-block .sa,.literal-block .sb,.literal-block .sc{color:#ba2121}.literal-block .sd{color:#ba2121;font-style:italic}.literal-block .s2{color:#ba2121}.literal-block .se{color:#b62;font-weight:700}.literal-block .sh{color:#ba2121}.literal-block .si{color:#b68;font-weight:700}.literal-block .sx{color:green}.literal-block .sr{color:#b68}.literal-block .s1{color:#ba2121}.literal-block .ss{color:#19177c}.literal-block .bp{color:green}.literal-block .fm{color:#00f}.literal-block .vc,.literal-block .vg,.literal-block .vi,.literal-block .vm{color:#19177c}.literal-block .il{color:#666}
|
|
@ -1,138 +0,0 @@
|
|||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #f8f8f8; }
|
||||
.highlight .c { color: #008800; font-style: italic } /* Comment */
|
||||
.highlight .err { border: 1px solid #FF0000 } /* Error */
|
||||
.highlight .k { color: #AA22FF; font-weight: bold } /* Keyword */
|
||||
.highlight .o { color: #666666 } /* Operator */
|
||||
.highlight .ch { color: #008800; font-style: italic } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #008800; font-style: italic } /* Comment.Multiline */
|
||||
.highlight .cp { color: #008800 } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #008800; font-style: italic } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #008800; font-style: italic } /* Comment.Single */
|
||||
.highlight .cs { color: #008800; font-weight: bold } /* Comment.Special */
|
||||
.highlight .gd { color: #A00000 } /* Generic.Deleted */
|
||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||
.highlight .gr { color: #FF0000 } /* Generic.Error */
|
||||
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
||||
.highlight .gi { color: #00A000 } /* Generic.Inserted */
|
||||
.highlight .go { color: #888888 } /* Generic.Output */
|
||||
.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
||||
.highlight .gt { color: #0044DD } /* Generic.Traceback */
|
||||
.highlight .kc { color: #AA22FF; font-weight: bold } /* Keyword.Constant */
|
||||
.highlight .kd { color: #AA22FF; font-weight: bold } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #AA22FF; font-weight: bold } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #AA22FF } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #AA22FF; font-weight: bold } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #00BB00; font-weight: bold } /* Keyword.Type */
|
||||
.highlight .m { color: #666666 } /* Literal.Number */
|
||||
.highlight .s { color: #BB4444 } /* Literal.String */
|
||||
.highlight .na { color: #BB4444 } /* Name.Attribute */
|
||||
.highlight .nb { color: #AA22FF } /* Name.Builtin */
|
||||
.highlight .nc { color: #0000FF } /* Name.Class */
|
||||
.highlight .no { color: #880000 } /* Name.Constant */
|
||||
.highlight .nd { color: #AA22FF } /* Name.Decorator */
|
||||
.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
|
||||
.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
|
||||
.highlight .nf { color: #00A000 } /* Name.Function */
|
||||
.highlight .nl { color: #A0A000 } /* Name.Label */
|
||||
.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
|
||||
.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */
|
||||
.highlight .nv { color: #B8860B } /* Name.Variable */
|
||||
.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
|
||||
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.highlight .mb { color: #666666 } /* Literal.Number.Bin */
|
||||
.highlight .mf { color: #666666 } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #666666 } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #666666 } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #666666 } /* Literal.Number.Oct */
|
||||
.highlight .sa { color: #BB4444 } /* Literal.String.Affix */
|
||||
.highlight .sb { color: #BB4444 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #BB4444 } /* Literal.String.Char */
|
||||
.highlight .dl { color: #BB4444 } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #BB4444; font-style: italic } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #BB4444 } /* Literal.String.Double */
|
||||
.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #BB4444 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #008000 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #BB6688 } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #BB4444 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #B8860B } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #AA22FF } /* Name.Builtin.Pseudo */
|
||||
.highlight .fm { color: #00A000 } /* Name.Function.Magic */
|
||||
.highlight .vc { color: #B8860B } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #B8860B } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #B8860B } /* Name.Variable.Instance */
|
||||
.highlight .vm { color: #B8860B } /* Name.Variable.Magic */
|
||||
.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */
|
||||
.literal-block .hll { background-color: #ffffcc }
|
||||
.literal-block { background: #f8f8f8; }
|
||||
.literal-block .c { color: #008800; font-style: italic } /* Comment */
|
||||
.literal-block .err { border: 1px solid #FF0000 } /* Error */
|
||||
.literal-block .k { color: #AA22FF; font-weight: bold } /* Keyword */
|
||||
.literal-block .o { color: #666666 } /* Operator */
|
||||
.literal-block .ch { color: #008800; font-style: italic } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #008800; font-style: italic } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #008800 } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #008800; font-style: italic } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #008800; font-style: italic } /* Comment.Single */
|
||||
.literal-block .cs { color: #008800; font-weight: bold } /* Comment.Special */
|
||||
.literal-block .gd { color: #A00000 } /* Generic.Deleted */
|
||||
.literal-block .ge { font-style: italic } /* Generic.Emph */
|
||||
.literal-block .gr { color: #FF0000 } /* Generic.Error */
|
||||
.literal-block .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
||||
.literal-block .gi { color: #00A000 } /* Generic.Inserted */
|
||||
.literal-block .go { color: #888888 } /* Generic.Output */
|
||||
.literal-block .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
|
||||
.literal-block .gs { font-weight: bold } /* Generic.Strong */
|
||||
.literal-block .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
||||
.literal-block .gt { color: #0044DD } /* Generic.Traceback */
|
||||
.literal-block .kc { color: #AA22FF; font-weight: bold } /* Keyword.Constant */
|
||||
.literal-block .kd { color: #AA22FF; font-weight: bold } /* Keyword.Declaration */
|
||||
.literal-block .kn { color: #AA22FF; font-weight: bold } /* Keyword.Namespace */
|
||||
.literal-block .kp { color: #AA22FF } /* Keyword.Pseudo */
|
||||
.literal-block .kr { color: #AA22FF; font-weight: bold } /* Keyword.Reserved */
|
||||
.literal-block .kt { color: #00BB00; font-weight: bold } /* Keyword.Type */
|
||||
.literal-block .m { color: #666666 } /* Literal.Number */
|
||||
.literal-block .s { color: #BB4444 } /* Literal.String */
|
||||
.literal-block .na { color: #BB4444 } /* Name.Attribute */
|
||||
.literal-block .nb { color: #AA22FF } /* Name.Builtin */
|
||||
.literal-block .nc { color: #0000FF } /* Name.Class */
|
||||
.literal-block .no { color: #880000 } /* Name.Constant */
|
||||
.literal-block .nd { color: #AA22FF } /* Name.Decorator */
|
||||
.literal-block .ni { color: #999999; font-weight: bold } /* Name.Entity */
|
||||
.literal-block .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
|
||||
.literal-block .nf { color: #00A000 } /* Name.Function */
|
||||
.literal-block .nl { color: #A0A000 } /* Name.Label */
|
||||
.literal-block .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
|
||||
.literal-block .nt { color: #008000; font-weight: bold } /* Name.Tag */
|
||||
.literal-block .nv { color: #B8860B } /* Name.Variable */
|
||||
.literal-block .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
|
||||
.literal-block .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.literal-block .mb { color: #666666 } /* Literal.Number.Bin */
|
||||
.literal-block .mf { color: #666666 } /* Literal.Number.Float */
|
||||
.literal-block .mh { color: #666666 } /* Literal.Number.Hex */
|
||||
.literal-block .mi { color: #666666 } /* Literal.Number.Integer */
|
||||
.literal-block .mo { color: #666666 } /* Literal.Number.Oct */
|
||||
.literal-block .sa { color: #BB4444 } /* Literal.String.Affix */
|
||||
.literal-block .sb { color: #BB4444 } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #BB4444 } /* Literal.String.Char */
|
||||
.literal-block .dl { color: #BB4444 } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #BB4444; font-style: italic } /* Literal.String.Doc */
|
||||
.literal-block .s2 { color: #BB4444 } /* Literal.String.Double */
|
||||
.literal-block .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
|
||||
.literal-block .sh { color: #BB4444 } /* Literal.String.Heredoc */
|
||||
.literal-block .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #008000 } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #BB6688 } /* Literal.String.Regex */
|
||||
.literal-block .s1 { color: #BB4444 } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #B8860B } /* Literal.String.Symbol */
|
||||
.literal-block .bp { color: #AA22FF } /* Name.Builtin.Pseudo */
|
||||
.literal-block .fm { color: #00A000 } /* Name.Function.Magic */
|
||||
.literal-block .vc { color: #B8860B } /* Name.Variable.Class */
|
||||
.literal-block .vg { color: #B8860B } /* Name.Variable.Global */
|
||||
.literal-block .vi { color: #B8860B } /* Name.Variable.Instance */
|
||||
.literal-block .vm { color: #B8860B } /* Name.Variable.Magic */
|
||||
.literal-block .il { color: #666666 } /* Literal.Number.Integer.Long */
|
1
docs/blog/theme/pygments/emacs.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.highlight .hll{background-color:#ffc}.highlight{background:#f8f8f8}.highlight .c{color:#080;font-style:italic}.highlight .err{border:1px solid red}.highlight .k{color:#a2f;font-weight:700}.highlight .o{color:#666}.highlight .ch,.highlight .cm{color:#080;font-style:italic}.highlight .cp{color:#080}.highlight .c1,.highlight .cpf{color:#080;font-style:italic}.highlight .cs{color:#080;font-weight:700}.highlight .gd{color:#a00000}.highlight .ge{font-style:italic}.highlight .gr{color:red}.highlight .gh{color:navy;font-weight:700}.highlight .gi{color:#00a000}.highlight .go{color:#888}.highlight .gp{color:navy}.highlight .gp,.highlight .gs,.highlight .gu{font-weight:700}.highlight .gu{color:purple}.highlight .gt{color:#04d}.highlight .kc,.highlight .kd,.highlight .kn{color:#a2f;font-weight:700}.highlight .kp{color:#a2f}.highlight .kr{color:#a2f;font-weight:700}.highlight .kt{color:#0b0;font-weight:700}.highlight .m{color:#666}.highlight .na,.highlight .s{color:#b44}.highlight .nb{color:#a2f}.highlight .nc{color:#00f}.highlight .no{color:#800}.highlight .nd{color:#a2f}.highlight .ni{color:#999;font-weight:700}.highlight .ne{color:#d2413a;font-weight:700}.highlight .nf{color:#00a000}.highlight .nl{color:#a0a000}.highlight .nn{color:#00f;font-weight:700}.highlight .nt{color:green;font-weight:700}.highlight .nv{color:#b8860b}.highlight .ow{color:#a2f;font-weight:700}.highlight .w{color:#bbb}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#666}.highlight .dl,.highlight .sa,.highlight .sb,.highlight .sc{color:#b44}.highlight .sd{color:#b44;font-style:italic}.highlight .s2{color:#b44}.highlight .se{color:#b62;font-weight:700}.highlight .sh{color:#b44}.highlight .si{color:#b68;font-weight:700}.highlight .sx{color:green}.highlight .sr{color:#b68}.highlight .s1{color:#b44}.highlight .ss{color:#b8860b}.highlight .bp{color:#a2f}.highlight .fm{color:#00a000}.highlight .vc,.highlight .vg,.highlight .vi,.highlight .vm{color:#b8860b}.highlight .il{color:#666}.literal-block .hll{background-color:#ffc}.literal-block{background:#f8f8f8}.literal-block .c{color:#080;font-style:italic}.literal-block .err{border:1px solid red}.literal-block .k{color:#a2f;font-weight:700}.literal-block .o{color:#666}.literal-block .ch,.literal-block .cm{color:#080;font-style:italic}.literal-block .cp{color:#080}.literal-block .c1,.literal-block .cpf{color:#080;font-style:italic}.literal-block .cs{color:#080;font-weight:700}.literal-block .gd{color:#a00000}.literal-block .ge{font-style:italic}.literal-block .gr{color:red}.literal-block .gh{color:navy;font-weight:700}.literal-block .gi{color:#00a000}.literal-block .go{color:#888}.literal-block .gp{color:navy;font-weight:700}.literal-block .gs{font-weight:700}.literal-block .gu{color:purple;font-weight:700}.literal-block .gt{color:#04d}.literal-block .kc,.literal-block .kd,.literal-block .kn{color:#a2f;font-weight:700}.literal-block .kp{color:#a2f}.literal-block .kr{color:#a2f;font-weight:700}.literal-block .kt{color:#0b0;font-weight:700}.literal-block .m{color:#666}.literal-block .na,.literal-block .s{color:#b44}.literal-block .nb{color:#a2f}.literal-block .nc{color:#00f}.literal-block .no{color:#800}.literal-block .nd{color:#a2f}.literal-block .ni{color:#999;font-weight:700}.literal-block .ne{color:#d2413a;font-weight:700}.literal-block .nf{color:#00a000}.literal-block .nl{color:#a0a000}.literal-block .nn{color:#00f;font-weight:700}.literal-block .nt{color:green;font-weight:700}.literal-block .nv{color:#b8860b}.literal-block .ow{color:#a2f;font-weight:700}.literal-block .w{color:#bbb}.literal-block .mb,.literal-block .mf,.literal-block .mh,.literal-block .mi,.literal-block .mo{color:#666}.literal-block .dl,.literal-block .sa,.literal-block .sb,.literal-block .sc{color:#b44}.literal-block .sd{color:#b44;font-style:italic}.literal-block .s2{color:#b44}.literal-block .se{color:#b62;font-weight:700}.literal-block .sh{color:#b44}.literal-block .si{color:#b68;font-weight:700}.literal-block .sx{color:green}.literal-block .sr{color:#b68}.literal-block .s1{color:#b44}.literal-block .ss{color:#b8860b}.literal-block .bp{color:#a2f}.literal-block .fm{color:#00a000}.literal-block .vc,.literal-block .vg,.literal-block .vi,.literal-block .vm{color:#b8860b}.literal-block .il{color:#666}
|
|
@ -1,138 +0,0 @@
|
|||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #f0f0f0; }
|
||||
.highlight .c { color: #60a0b0; font-style: italic } /* Comment */
|
||||
.highlight .err { border: 1px solid #FF0000 } /* Error */
|
||||
.highlight .k { color: #007020; font-weight: bold } /* Keyword */
|
||||
.highlight .o { color: #666666 } /* Operator */
|
||||
.highlight .ch { color: #60a0b0; font-style: italic } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #60a0b0; font-style: italic } /* Comment.Multiline */
|
||||
.highlight .cp { color: #007020 } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #60a0b0; font-style: italic } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #60a0b0; font-style: italic } /* Comment.Single */
|
||||
.highlight .cs { color: #60a0b0; background-color: #fff0f0 } /* Comment.Special */
|
||||
.highlight .gd { color: #A00000 } /* Generic.Deleted */
|
||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||
.highlight .gr { color: #FF0000 } /* Generic.Error */
|
||||
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
||||
.highlight .gi { color: #00A000 } /* Generic.Inserted */
|
||||
.highlight .go { color: #888888 } /* Generic.Output */
|
||||
.highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
||||
.highlight .gt { color: #0044DD } /* Generic.Traceback */
|
||||
.highlight .kc { color: #007020; font-weight: bold } /* Keyword.Constant */
|
||||
.highlight .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #007020 } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #902000 } /* Keyword.Type */
|
||||
.highlight .m { color: #40a070 } /* Literal.Number */
|
||||
.highlight .s { color: #4070a0 } /* Literal.String */
|
||||
.highlight .na { color: #4070a0 } /* Name.Attribute */
|
||||
.highlight .nb { color: #007020 } /* Name.Builtin */
|
||||
.highlight .nc { color: #0e84b5; font-weight: bold } /* Name.Class */
|
||||
.highlight .no { color: #60add5 } /* Name.Constant */
|
||||
.highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */
|
||||
.highlight .ni { color: #d55537; font-weight: bold } /* Name.Entity */
|
||||
.highlight .ne { color: #007020 } /* Name.Exception */
|
||||
.highlight .nf { color: #06287e } /* Name.Function */
|
||||
.highlight .nl { color: #002070; font-weight: bold } /* Name.Label */
|
||||
.highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
|
||||
.highlight .nt { color: #062873; font-weight: bold } /* Name.Tag */
|
||||
.highlight .nv { color: #bb60d5 } /* Name.Variable */
|
||||
.highlight .ow { color: #007020; font-weight: bold } /* Operator.Word */
|
||||
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.highlight .mb { color: #40a070 } /* Literal.Number.Bin */
|
||||
.highlight .mf { color: #40a070 } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #40a070 } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #40a070 } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #40a070 } /* Literal.Number.Oct */
|
||||
.highlight .sa { color: #4070a0 } /* Literal.String.Affix */
|
||||
.highlight .sb { color: #4070a0 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #4070a0 } /* Literal.String.Char */
|
||||
.highlight .dl { color: #4070a0 } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #4070a0 } /* Literal.String.Double */
|
||||
.highlight .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #4070a0 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #c65d09 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #235388 } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #4070a0 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #517918 } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */
|
||||
.highlight .fm { color: #06287e } /* Name.Function.Magic */
|
||||
.highlight .vc { color: #bb60d5 } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #bb60d5 } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #bb60d5 } /* Name.Variable.Instance */
|
||||
.highlight .vm { color: #bb60d5 } /* Name.Variable.Magic */
|
||||
.highlight .il { color: #40a070 } /* Literal.Number.Integer.Long */
|
||||
.literal-block .hll { background-color: #ffffcc }
|
||||
.literal-block { background: #f0f0f0; }
|
||||
.literal-block .c { color: #60a0b0; font-style: italic } /* Comment */
|
||||
.literal-block .err { border: 1px solid #FF0000 } /* Error */
|
||||
.literal-block .k { color: #007020; font-weight: bold } /* Keyword */
|
||||
.literal-block .o { color: #666666 } /* Operator */
|
||||
.literal-block .ch { color: #60a0b0; font-style: italic } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #60a0b0; font-style: italic } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #007020 } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #60a0b0; font-style: italic } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #60a0b0; font-style: italic } /* Comment.Single */
|
||||
.literal-block .cs { color: #60a0b0; background-color: #fff0f0 } /* Comment.Special */
|
||||
.literal-block .gd { color: #A00000 } /* Generic.Deleted */
|
||||
.literal-block .ge { font-style: italic } /* Generic.Emph */
|
||||
.literal-block .gr { color: #FF0000 } /* Generic.Error */
|
||||
.literal-block .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
||||
.literal-block .gi { color: #00A000 } /* Generic.Inserted */
|
||||
.literal-block .go { color: #888888 } /* Generic.Output */
|
||||
.literal-block .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
|
||||
.literal-block .gs { font-weight: bold } /* Generic.Strong */
|
||||
.literal-block .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
||||
.literal-block .gt { color: #0044DD } /* Generic.Traceback */
|
||||
.literal-block .kc { color: #007020; font-weight: bold } /* Keyword.Constant */
|
||||
.literal-block .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */
|
||||
.literal-block .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */
|
||||
.literal-block .kp { color: #007020 } /* Keyword.Pseudo */
|
||||
.literal-block .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */
|
||||
.literal-block .kt { color: #902000 } /* Keyword.Type */
|
||||
.literal-block .m { color: #40a070 } /* Literal.Number */
|
||||
.literal-block .s { color: #4070a0 } /* Literal.String */
|
||||
.literal-block .na { color: #4070a0 } /* Name.Attribute */
|
||||
.literal-block .nb { color: #007020 } /* Name.Builtin */
|
||||
.literal-block .nc { color: #0e84b5; font-weight: bold } /* Name.Class */
|
||||
.literal-block .no { color: #60add5 } /* Name.Constant */
|
||||
.literal-block .nd { color: #555555; font-weight: bold } /* Name.Decorator */
|
||||
.literal-block .ni { color: #d55537; font-weight: bold } /* Name.Entity */
|
||||
.literal-block .ne { color: #007020 } /* Name.Exception */
|
||||
.literal-block .nf { color: #06287e } /* Name.Function */
|
||||
.literal-block .nl { color: #002070; font-weight: bold } /* Name.Label */
|
||||
.literal-block .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
|
||||
.literal-block .nt { color: #062873; font-weight: bold } /* Name.Tag */
|
||||
.literal-block .nv { color: #bb60d5 } /* Name.Variable */
|
||||
.literal-block .ow { color: #007020; font-weight: bold } /* Operator.Word */
|
||||
.literal-block .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.literal-block .mb { color: #40a070 } /* Literal.Number.Bin */
|
||||
.literal-block .mf { color: #40a070 } /* Literal.Number.Float */
|
||||
.literal-block .mh { color: #40a070 } /* Literal.Number.Hex */
|
||||
.literal-block .mi { color: #40a070 } /* Literal.Number.Integer */
|
||||
.literal-block .mo { color: #40a070 } /* Literal.Number.Oct */
|
||||
.literal-block .sa { color: #4070a0 } /* Literal.String.Affix */
|
||||
.literal-block .sb { color: #4070a0 } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #4070a0 } /* Literal.String.Char */
|
||||
.literal-block .dl { color: #4070a0 } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */
|
||||
.literal-block .s2 { color: #4070a0 } /* Literal.String.Double */
|
||||
.literal-block .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */
|
||||
.literal-block .sh { color: #4070a0 } /* Literal.String.Heredoc */
|
||||
.literal-block .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #c65d09 } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #235388 } /* Literal.String.Regex */
|
||||
.literal-block .s1 { color: #4070a0 } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #517918 } /* Literal.String.Symbol */
|
||||
.literal-block .bp { color: #007020 } /* Name.Builtin.Pseudo */
|
||||
.literal-block .fm { color: #06287e } /* Name.Function.Magic */
|
||||
.literal-block .vc { color: #bb60d5 } /* Name.Variable.Class */
|
||||
.literal-block .vg { color: #bb60d5 } /* Name.Variable.Global */
|
||||
.literal-block .vi { color: #bb60d5 } /* Name.Variable.Instance */
|
||||
.literal-block .vm { color: #bb60d5 } /* Name.Variable.Magic */
|
||||
.literal-block .il { color: #40a070 } /* Literal.Number.Integer.Long */
|
1
docs/blog/theme/pygments/friendly.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.highlight .hll{background-color:#ffc}.highlight{background:#f0f0f0}.highlight .c{color:#60a0b0;font-style:italic}.highlight .err{border:1px solid red}.highlight .k{color:#007020;font-weight:700}.highlight .o{color:#666}.highlight .ch,.highlight .cm{color:#60a0b0;font-style:italic}.highlight .cp{color:#007020}.highlight .c1,.highlight .cpf{color:#60a0b0;font-style:italic}.highlight .cs{color:#60a0b0;background-color:#fff0f0}.highlight .gd{color:#a00000}.highlight .ge{font-style:italic}.highlight .gr{color:red}.highlight .gh{color:navy;font-weight:700}.highlight .gi{color:#00a000}.highlight .go{color:#888}.highlight .gp{color:#c65d09}.highlight .gp,.highlight .gs,.highlight .gu{font-weight:700}.highlight .gu{color:purple}.highlight .gt{color:#04d}.highlight .kc,.highlight .kd,.highlight .kn{color:#007020;font-weight:700}.highlight .kp{color:#007020}.highlight .kr{color:#007020;font-weight:700}.highlight .kt{color:#902000}.highlight .m{color:#40a070}.highlight .na,.highlight .s{color:#4070a0}.highlight .nb{color:#007020}.highlight .nc{color:#0e84b5;font-weight:700}.highlight .no{color:#60add5}.highlight .nd{color:#555;font-weight:700}.highlight .ni{color:#d55537;font-weight:700}.highlight .ne{color:#007020}.highlight .nf{color:#06287e}.highlight .nl{color:#002070;font-weight:700}.highlight .nn{color:#0e84b5;font-weight:700}.highlight .nt{color:#062873;font-weight:700}.highlight .nv{color:#bb60d5}.highlight .ow{color:#007020;font-weight:700}.highlight .w{color:#bbb}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#40a070}.highlight .dl,.highlight .sa,.highlight .sb,.highlight .sc{color:#4070a0}.highlight .sd{color:#4070a0;font-style:italic}.highlight .s2{color:#4070a0}.highlight .se{color:#4070a0;font-weight:700}.highlight .sh{color:#4070a0}.highlight .si{color:#70a0d0;font-style:italic}.highlight .sx{color:#c65d09}.highlight .sr{color:#235388}.highlight .s1{color:#4070a0}.highlight .ss{color:#517918}.highlight .bp{color:#007020}.highlight .fm{color:#06287e}.highlight .vc,.highlight .vg,.highlight .vi,.highlight .vm{color:#bb60d5}.highlight .il{color:#40a070}.literal-block .hll{background-color:#ffc}.literal-block{background:#f0f0f0}.literal-block .c{color:#60a0b0;font-style:italic}.literal-block .err{border:1px solid red}.literal-block .k{color:#007020;font-weight:700}.literal-block .o{color:#666}.literal-block .ch,.literal-block .cm{color:#60a0b0;font-style:italic}.literal-block .cp{color:#007020}.literal-block .c1,.literal-block .cpf{color:#60a0b0;font-style:italic}.literal-block .cs{color:#60a0b0;background-color:#fff0f0}.literal-block .gd{color:#a00000}.literal-block .ge{font-style:italic}.literal-block .gr{color:red}.literal-block .gh{color:navy;font-weight:700}.literal-block .gi{color:#00a000}.literal-block .go{color:#888}.literal-block .gp{color:#c65d09;font-weight:700}.literal-block .gs{font-weight:700}.literal-block .gu{color:purple;font-weight:700}.literal-block .gt{color:#04d}.literal-block .kc,.literal-block .kd,.literal-block .kn{color:#007020;font-weight:700}.literal-block .kp{color:#007020}.literal-block .kr{color:#007020;font-weight:700}.literal-block .kt{color:#902000}.literal-block .m{color:#40a070}.literal-block .na,.literal-block .s{color:#4070a0}.literal-block .nb{color:#007020}.literal-block .nc{color:#0e84b5;font-weight:700}.literal-block .no{color:#60add5}.literal-block .nd{color:#555;font-weight:700}.literal-block .ni{color:#d55537;font-weight:700}.literal-block .ne{color:#007020}.literal-block .nf{color:#06287e}.literal-block .nl{color:#002070;font-weight:700}.literal-block .nn{color:#0e84b5;font-weight:700}.literal-block .nt{color:#062873;font-weight:700}.literal-block .nv{color:#bb60d5}.literal-block .ow{color:#007020;font-weight:700}.literal-block .w{color:#bbb}.literal-block .mb,.literal-block .mf,.literal-block .mh,.literal-block .mi,.literal-block .mo{color:#40a070}.literal-block .dl,.literal-block .sa,.literal-block .sb,.literal-block .sc{color:#4070a0}.literal-block .sd{color:#4070a0;font-style:italic}.literal-block .s2{color:#4070a0}.literal-block .se{color:#4070a0;font-weight:700}.literal-block .sh{color:#4070a0}.literal-block .si{color:#70a0d0;font-style:italic}.literal-block .sx{color:#c65d09}.literal-block .sr{color:#235388}.literal-block .s1{color:#4070a0}.literal-block .ss{color:#517918}.literal-block .bp{color:#007020}.literal-block .fm{color:#06287e}.literal-block .vc,.literal-block .vg,.literal-block .vi,.literal-block .vm{color:#bb60d5}.literal-block .il{color:#40a070}
|
|
@ -1,156 +0,0 @@
|
|||
.highlight .hll { background-color: #333333 }
|
||||
.highlight { background: #111111; color: #ffffff }
|
||||
.highlight .c { color: #008800; font-style: italic; background-color: #0f140f } /* Comment */
|
||||
.highlight .err { color: #ffffff } /* Error */
|
||||
.highlight .esc { color: #ffffff } /* Escape */
|
||||
.highlight .g { color: #ffffff } /* Generic */
|
||||
.highlight .k { color: #fb660a; font-weight: bold } /* Keyword */
|
||||
.highlight .l { color: #ffffff } /* Literal */
|
||||
.highlight .n { color: #ffffff } /* Name */
|
||||
.highlight .o { color: #ffffff } /* Operator */
|
||||
.highlight .x { color: #ffffff } /* Other */
|
||||
.highlight .p { color: #ffffff } /* Punctuation */
|
||||
.highlight .ch { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Multiline */
|
||||
.highlight .cp { color: #ff0007; font-weight: bold; font-style: italic; background-color: #0f140f } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Single */
|
||||
.highlight .cs { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Special */
|
||||
.highlight .gd { color: #ffffff } /* Generic.Deleted */
|
||||
.highlight .ge { color: #ffffff } /* Generic.Emph */
|
||||
.highlight .gr { color: #ffffff } /* Generic.Error */
|
||||
.highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
|
||||
.highlight .gi { color: #ffffff } /* Generic.Inserted */
|
||||
.highlight .go { color: #444444; background-color: #222222 } /* Generic.Output */
|
||||
.highlight .gp { color: #ffffff } /* Generic.Prompt */
|
||||
.highlight .gs { color: #ffffff } /* Generic.Strong */
|
||||
.highlight .gu { color: #ffffff; font-weight: bold } /* Generic.Subheading */
|
||||
.highlight .gt { color: #ffffff } /* Generic.Traceback */
|
||||
.highlight .kc { color: #fb660a; font-weight: bold } /* Keyword.Constant */
|
||||
.highlight .kd { color: #fb660a; font-weight: bold } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #fb660a; font-weight: bold } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #fb660a } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #fb660a; font-weight: bold } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #cdcaa9; font-weight: bold } /* Keyword.Type */
|
||||
.highlight .ld { color: #ffffff } /* Literal.Date */
|
||||
.highlight .m { color: #0086f7; font-weight: bold } /* Literal.Number */
|
||||
.highlight .s { color: #0086d2 } /* Literal.String */
|
||||
.highlight .na { color: #ff0086; font-weight: bold } /* Name.Attribute */
|
||||
.highlight .nb { color: #ffffff } /* Name.Builtin */
|
||||
.highlight .nc { color: #ffffff } /* Name.Class */
|
||||
.highlight .no { color: #0086d2 } /* Name.Constant */
|
||||
.highlight .nd { color: #ffffff } /* Name.Decorator */
|
||||
.highlight .ni { color: #ffffff } /* Name.Entity */
|
||||
.highlight .ne { color: #ffffff } /* Name.Exception */
|
||||
.highlight .nf { color: #ff0086; font-weight: bold } /* Name.Function */
|
||||
.highlight .nl { color: #ffffff } /* Name.Label */
|
||||
.highlight .nn { color: #ffffff } /* Name.Namespace */
|
||||
.highlight .nx { color: #ffffff } /* Name.Other */
|
||||
.highlight .py { color: #ffffff } /* Name.Property */
|
||||
.highlight .nt { color: #fb660a; font-weight: bold } /* Name.Tag */
|
||||
.highlight .nv { color: #fb660a } /* Name.Variable */
|
||||
.highlight .ow { color: #ffffff } /* Operator.Word */
|
||||
.highlight .w { color: #888888 } /* Text.Whitespace */
|
||||
.highlight .mb { color: #0086f7; font-weight: bold } /* Literal.Number.Bin */
|
||||
.highlight .mf { color: #0086f7; font-weight: bold } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #0086f7; font-weight: bold } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #0086f7; font-weight: bold } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #0086f7; font-weight: bold } /* Literal.Number.Oct */
|
||||
.highlight .sa { color: #0086d2 } /* Literal.String.Affix */
|
||||
.highlight .sb { color: #0086d2 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #0086d2 } /* Literal.String.Char */
|
||||
.highlight .dl { color: #0086d2 } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #0086d2 } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #0086d2 } /* Literal.String.Double */
|
||||
.highlight .se { color: #0086d2 } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #0086d2 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #0086d2 } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #0086d2 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #0086d2 } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #0086d2 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #0086d2 } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #ffffff } /* Name.Builtin.Pseudo */
|
||||
.highlight .fm { color: #ff0086; font-weight: bold } /* Name.Function.Magic */
|
||||
.highlight .vc { color: #fb660a } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #fb660a } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #fb660a } /* Name.Variable.Instance */
|
||||
.highlight .vm { color: #fb660a } /* Name.Variable.Magic */
|
||||
.highlight .il { color: #0086f7; font-weight: bold } /* Literal.Number.Integer.Long */
|
||||
.literal-block .hll { background-color: #333333 }
|
||||
.literal-block { background: #111111; color: #ffffff }
|
||||
.literal-block .c { color: #008800; font-style: italic; background-color: #0f140f } /* Comment */
|
||||
.literal-block .err { color: #ffffff } /* Error */
|
||||
.literal-block .esc { color: #ffffff } /* Escape */
|
||||
.literal-block .g { color: #ffffff } /* Generic */
|
||||
.literal-block .k { color: #fb660a; font-weight: bold } /* Keyword */
|
||||
.literal-block .l { color: #ffffff } /* Literal */
|
||||
.literal-block .n { color: #ffffff } /* Name */
|
||||
.literal-block .o { color: #ffffff } /* Operator */
|
||||
.literal-block .x { color: #ffffff } /* Other */
|
||||
.literal-block .p { color: #ffffff } /* Punctuation */
|
||||
.literal-block .ch { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #ff0007; font-weight: bold; font-style: italic; background-color: #0f140f } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Single */
|
||||
.literal-block .cs { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Special */
|
||||
.literal-block .gd { color: #ffffff } /* Generic.Deleted */
|
||||
.literal-block .ge { color: #ffffff } /* Generic.Emph */
|
||||
.literal-block .gr { color: #ffffff } /* Generic.Error */
|
||||
.literal-block .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
|
||||
.literal-block .gi { color: #ffffff } /* Generic.Inserted */
|
||||
.literal-block .go { color: #444444; background-color: #222222 } /* Generic.Output */
|
||||
.literal-block .gp { color: #ffffff } /* Generic.Prompt */
|
||||
.literal-block .gs { color: #ffffff } /* Generic.Strong */
|
||||
.literal-block .gu { color: #ffffff; font-weight: bold } /* Generic.Subheading */
|
||||
.literal-block .gt { color: #ffffff } /* Generic.Traceback */
|
||||
.literal-block .kc { color: #fb660a; font-weight: bold } /* Keyword.Constant */
|
||||
.literal-block .kd { color: #fb660a; font-weight: bold } /* Keyword.Declaration */
|
||||
.literal-block .kn { color: #fb660a; font-weight: bold } /* Keyword.Namespace */
|
||||
.literal-block .kp { color: #fb660a } /* Keyword.Pseudo */
|
||||
.literal-block .kr { color: #fb660a; font-weight: bold } /* Keyword.Reserved */
|
||||
.literal-block .kt { color: #cdcaa9; font-weight: bold } /* Keyword.Type */
|
||||
.literal-block .ld { color: #ffffff } /* Literal.Date */
|
||||
.literal-block .m { color: #0086f7; font-weight: bold } /* Literal.Number */
|
||||
.literal-block .s { color: #0086d2 } /* Literal.String */
|
||||
.literal-block .na { color: #ff0086; font-weight: bold } /* Name.Attribute */
|
||||
.literal-block .nb { color: #ffffff } /* Name.Builtin */
|
||||
.literal-block .nc { color: #ffffff } /* Name.Class */
|
||||
.literal-block .no { color: #0086d2 } /* Name.Constant */
|
||||
.literal-block .nd { color: #ffffff } /* Name.Decorator */
|
||||
.literal-block .ni { color: #ffffff } /* Name.Entity */
|
||||
.literal-block .ne { color: #ffffff } /* Name.Exception */
|
||||
.literal-block .nf { color: #ff0086; font-weight: bold } /* Name.Function */
|
||||
.literal-block .nl { color: #ffffff } /* Name.Label */
|
||||
.literal-block .nn { color: #ffffff } /* Name.Namespace */
|
||||
.literal-block .nx { color: #ffffff } /* Name.Other */
|
||||
.literal-block .py { color: #ffffff } /* Name.Property */
|
||||
.literal-block .nt { color: #fb660a; font-weight: bold } /* Name.Tag */
|
||||
.literal-block .nv { color: #fb660a } /* Name.Variable */
|
||||
.literal-block .ow { color: #ffffff } /* Operator.Word */
|
||||
.literal-block .w { color: #888888 } /* Text.Whitespace */
|
||||
.literal-block .mb { color: #0086f7; font-weight: bold } /* Literal.Number.Bin */
|
||||
.literal-block .mf { color: #0086f7; font-weight: bold } /* Literal.Number.Float */
|
||||
.literal-block .mh { color: #0086f7; font-weight: bold } /* Literal.Number.Hex */
|
||||
.literal-block .mi { color: #0086f7; font-weight: bold } /* Literal.Number.Integer */
|
||||
.literal-block .mo { color: #0086f7; font-weight: bold } /* Literal.Number.Oct */
|
||||
.literal-block .sa { color: #0086d2 } /* Literal.String.Affix */
|
||||
.literal-block .sb { color: #0086d2 } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #0086d2 } /* Literal.String.Char */
|
||||
.literal-block .dl { color: #0086d2 } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #0086d2 } /* Literal.String.Doc */
|
||||
.literal-block .s2 { color: #0086d2 } /* Literal.String.Double */
|
||||
.literal-block .se { color: #0086d2 } /* Literal.String.Escape */
|
||||
.literal-block .sh { color: #0086d2 } /* Literal.String.Heredoc */
|
||||
.literal-block .si { color: #0086d2 } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #0086d2 } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #0086d2 } /* Literal.String.Regex */
|
||||
.literal-block .s1 { color: #0086d2 } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #0086d2 } /* Literal.String.Symbol */
|
||||
.literal-block .bp { color: #ffffff } /* Name.Builtin.Pseudo */
|
||||
.literal-block .fm { color: #ff0086; font-weight: bold } /* Name.Function.Magic */
|
||||
.literal-block .vc { color: #fb660a } /* Name.Variable.Class */
|
||||
.literal-block .vg { color: #fb660a } /* Name.Variable.Global */
|
||||
.literal-block .vi { color: #fb660a } /* Name.Variable.Instance */
|
||||
.literal-block .vm { color: #fb660a } /* Name.Variable.Magic */
|
||||
.literal-block .il { color: #0086f7; font-weight: bold } /* Literal.Number.Integer.Long */
|
1
docs/blog/theme/pygments/fruity.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.highlight .hll{background-color:#333}.highlight{background:#111;color:#fff}.highlight .c{color:#080;font-style:italic;background-color:#0f140f}.highlight .err,.highlight .esc,.highlight .g{color:#fff}.highlight .k{color:#fb660a;font-weight:700}.highlight .l,.highlight .n,.highlight .o,.highlight .p,.highlight .x{color:#fff}.highlight .ch,.highlight .cm{color:#080;font-style:italic;background-color:#0f140f}.highlight .cp{color:#ff0007;font-weight:700;font-style:italic;background-color:#0f140f}.highlight .c1,.highlight .cpf,.highlight .cs{color:#080;font-style:italic;background-color:#0f140f}.highlight .gd,.highlight .ge,.highlight .gr{color:#fff}.highlight .gh{color:#fff;font-weight:700}.highlight .gi{color:#fff}.highlight .go{color:#444;background-color:#222}.highlight .gp,.highlight .gs{color:#fff}.highlight .gu{color:#fff;font-weight:700}.highlight .gt{color:#fff}.highlight .kc,.highlight .kd,.highlight .kn{color:#fb660a;font-weight:700}.highlight .kp{color:#fb660a}.highlight .kr{color:#fb660a;font-weight:700}.highlight .kt{color:#cdcaa9;font-weight:700}.highlight .ld{color:#fff}.highlight .m{color:#0086f7;font-weight:700}.highlight .s{color:#0086d2}.highlight .na{color:#ff0086;font-weight:700}.highlight .nb,.highlight .nc{color:#fff}.highlight .no{color:#0086d2}.highlight .nd,.highlight .ne,.highlight .ni{color:#fff}.highlight .nf{color:#ff0086;font-weight:700}.highlight .nl,.highlight .nn,.highlight .nx,.highlight .py{color:#fff}.highlight .nt{color:#fb660a;font-weight:700}.highlight .nv{color:#fb660a}.highlight .ow{color:#fff}.highlight .w{color:#888}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#0086f7;font-weight:700}.highlight .dl,.highlight .s1,.highlight .s2,.highlight .sa,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si,.highlight .sr,.highlight .ss,.highlight .sx{color:#0086d2}.highlight .bp{color:#fff}.highlight .fm{color:#ff0086;font-weight:700}.highlight .vc,.highlight .vg,.highlight .vi,.highlight .vm{color:#fb660a}.highlight .il{color:#0086f7;font-weight:700}.literal-block .hll{background-color:#333}.literal-block{background:#111;color:#fff}.literal-block .c{color:#080;font-style:italic;background-color:#0f140f}.literal-block .err,.literal-block .esc,.literal-block .g{color:#fff}.literal-block .k{color:#fb660a;font-weight:700}.literal-block .l,.literal-block .n,.literal-block .o,.literal-block .p,.literal-block .x{color:#fff}.literal-block .ch,.literal-block .cm{color:#080;font-style:italic;background-color:#0f140f}.literal-block .cp{color:#ff0007;font-weight:700;font-style:italic;background-color:#0f140f}.literal-block .c1,.literal-block .cpf,.literal-block .cs{color:#080;font-style:italic;background-color:#0f140f}.literal-block .gd,.literal-block .ge,.literal-block .gr{color:#fff}.literal-block .gh{color:#fff;font-weight:700}.literal-block .gi{color:#fff}.literal-block .go{color:#444;background-color:#222}.literal-block .gp,.literal-block .gs{color:#fff}.literal-block .gu{color:#fff;font-weight:700}.literal-block .gt{color:#fff}.literal-block .kc,.literal-block .kd,.literal-block .kn{color:#fb660a;font-weight:700}.literal-block .kp{color:#fb660a}.literal-block .kr{color:#fb660a;font-weight:700}.literal-block .kt{color:#cdcaa9;font-weight:700}.literal-block .ld{color:#fff}.literal-block .m{color:#0086f7;font-weight:700}.literal-block .s{color:#0086d2}.literal-block .na{color:#ff0086;font-weight:700}.literal-block .nb,.literal-block .nc{color:#fff}.literal-block .no{color:#0086d2}.literal-block .nd,.literal-block .ne,.literal-block .ni{color:#fff}.literal-block .nf{color:#ff0086;font-weight:700}.literal-block .nl,.literal-block .nn,.literal-block .nx,.literal-block .py{color:#fff}.literal-block .nt{color:#fb660a;font-weight:700}.literal-block .nv{color:#fb660a}.literal-block .ow{color:#fff}.literal-block .w{color:#888}.literal-block .mb,.literal-block .mf,.literal-block .mh,.literal-block .mi,.literal-block .mo{color:#0086f7;font-weight:700}.literal-block .dl,.literal-block .s1,.literal-block .s2,.literal-block .sa,.literal-block .sb,.literal-block .sc,.literal-block .sd,.literal-block .se,.literal-block .sh,.literal-block .si,.literal-block .sr,.literal-block .ss,.literal-block .sx{color:#0086d2}.literal-block .bp{color:#fff}.literal-block .fm{color:#ff0086;font-weight:700}.literal-block .vc,.literal-block .vg,.literal-block .vi,.literal-block .vm{color:#fb660a}.literal-block .il{color:#0086f7;font-weight:700}
|
|
@ -1,138 +0,0 @@
|
|||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #ffffff; }
|
||||
.highlight .c { color: #999988; font-style: italic } /* Comment */
|
||||
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
||||
.highlight .k { color: #000000; font-weight: bold } /* Keyword */
|
||||
.highlight .o { color: #000000; font-weight: bold } /* Operator */
|
||||
.highlight .ch { color: #999988; font-style: italic } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
|
||||
.highlight .cp { color: #999999; font-weight: bold; font-style: italic } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #999988; font-style: italic } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
|
||||
.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
|
||||
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
|
||||
.highlight .ge { color: #000000; font-style: italic } /* Generic.Emph */
|
||||
.highlight .gr { color: #aa0000 } /* Generic.Error */
|
||||
.highlight .gh { color: #999999 } /* Generic.Heading */
|
||||
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
|
||||
.highlight .go { color: #888888 } /* Generic.Output */
|
||||
.highlight .gp { color: #555555 } /* Generic.Prompt */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { color: #aaaaaa } /* Generic.Subheading */
|
||||
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
|
||||
.highlight .kc { color: #000000; font-weight: bold } /* Keyword.Constant */
|
||||
.highlight .kd { color: #000000; font-weight: bold } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #000000; font-weight: bold } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #000000; font-weight: bold } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #000000; font-weight: bold } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
|
||||
.highlight .m { color: #009999 } /* Literal.Number */
|
||||
.highlight .s { color: #dd1144 } /* Literal.String */
|
||||
.highlight .na { color: #008080 } /* Name.Attribute */
|
||||
.highlight .nb { color: #0086B3 } /* Name.Builtin */
|
||||
.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
|
||||
.highlight .no { color: #008080 } /* Name.Constant */
|
||||
.highlight .nd { color: #3c5d5d; font-weight: bold } /* Name.Decorator */
|
||||
.highlight .ni { color: #800080 } /* Name.Entity */
|
||||
.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
|
||||
.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
|
||||
.highlight .nl { color: #990000; font-weight: bold } /* Name.Label */
|
||||
.highlight .nn { color: #555555 } /* Name.Namespace */
|
||||
.highlight .nt { color: #000080 } /* Name.Tag */
|
||||
.highlight .nv { color: #008080 } /* Name.Variable */
|
||||
.highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
|
||||
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.highlight .mb { color: #009999 } /* Literal.Number.Bin */
|
||||
.highlight .mf { color: #009999 } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
|
||||
.highlight .sa { color: #dd1144 } /* Literal.String.Affix */
|
||||
.highlight .sb { color: #dd1144 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #dd1144 } /* Literal.String.Char */
|
||||
.highlight .dl { color: #dd1144 } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #dd1144 } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #dd1144 } /* Literal.String.Double */
|
||||
.highlight .se { color: #dd1144 } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #dd1144 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #dd1144 } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #dd1144 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #009926 } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #dd1144 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #990073 } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
|
||||
.highlight .fm { color: #990000; font-weight: bold } /* Name.Function.Magic */
|
||||
.highlight .vc { color: #008080 } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #008080 } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #008080 } /* Name.Variable.Instance */
|
||||
.highlight .vm { color: #008080 } /* Name.Variable.Magic */
|
||||
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
|
||||
.literal-block .hll { background-color: #ffffcc }
|
||||
.literal-block { background: #ffffff; }
|
||||
.literal-block .c { color: #999988; font-style: italic } /* Comment */
|
||||
.literal-block .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
||||
.literal-block .k { color: #000000; font-weight: bold } /* Keyword */
|
||||
.literal-block .o { color: #000000; font-weight: bold } /* Operator */
|
||||
.literal-block .ch { color: #999988; font-style: italic } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #999988; font-style: italic } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #999999; font-weight: bold; font-style: italic } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #999988; font-style: italic } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #999988; font-style: italic } /* Comment.Single */
|
||||
.literal-block .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
|
||||
.literal-block .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
|
||||
.literal-block .ge { color: #000000; font-style: italic } /* Generic.Emph */
|
||||
.literal-block .gr { color: #aa0000 } /* Generic.Error */
|
||||
.literal-block .gh { color: #999999 } /* Generic.Heading */
|
||||
.literal-block .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
|
||||
.literal-block .go { color: #888888 } /* Generic.Output */
|
||||
.literal-block .gp { color: #555555 } /* Generic.Prompt */
|
||||
.literal-block .gs { font-weight: bold } /* Generic.Strong */
|
||||
.literal-block .gu { color: #aaaaaa } /* Generic.Subheading */
|
||||
.literal-block .gt { color: #aa0000 } /* Generic.Traceback */
|
||||
.literal-block .kc { color: #000000; font-weight: bold } /* Keyword.Constant */
|
||||
.literal-block .kd { color: #000000; font-weight: bold } /* Keyword.Declaration */
|
||||
.literal-block .kn { color: #000000; font-weight: bold } /* Keyword.Namespace */
|
||||
.literal-block .kp { color: #000000; font-weight: bold } /* Keyword.Pseudo */
|
||||
.literal-block .kr { color: #000000; font-weight: bold } /* Keyword.Reserved */
|
||||
.literal-block .kt { color: #445588; font-weight: bold } /* Keyword.Type */
|
||||
.literal-block .m { color: #009999 } /* Literal.Number */
|
||||
.literal-block .s { color: #dd1144 } /* Literal.String */
|
||||
.literal-block .na { color: #008080 } /* Name.Attribute */
|
||||
.literal-block .nb { color: #0086B3 } /* Name.Builtin */
|
||||
.literal-block .nc { color: #445588; font-weight: bold } /* Name.Class */
|
||||
.literal-block .no { color: #008080 } /* Name.Constant */
|
||||
.literal-block .nd { color: #3c5d5d; font-weight: bold } /* Name.Decorator */
|
||||
.literal-block .ni { color: #800080 } /* Name.Entity */
|
||||
.literal-block .ne { color: #990000; font-weight: bold } /* Name.Exception */
|
||||
.literal-block .nf { color: #990000; font-weight: bold } /* Name.Function */
|
||||
.literal-block .nl { color: #990000; font-weight: bold } /* Name.Label */
|
||||
.literal-block .nn { color: #555555 } /* Name.Namespace */
|
||||
.literal-block .nt { color: #000080 } /* Name.Tag */
|
||||
.literal-block .nv { color: #008080 } /* Name.Variable */
|
||||
.literal-block .ow { color: #000000; font-weight: bold } /* Operator.Word */
|
||||
.literal-block .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.literal-block .mb { color: #009999 } /* Literal.Number.Bin */
|
||||
.literal-block .mf { color: #009999 } /* Literal.Number.Float */
|
||||
.literal-block .mh { color: #009999 } /* Literal.Number.Hex */
|
||||
.literal-block .mi { color: #009999 } /* Literal.Number.Integer */
|
||||
.literal-block .mo { color: #009999 } /* Literal.Number.Oct */
|
||||
.literal-block .sa { color: #dd1144 } /* Literal.String.Affix */
|
||||
.literal-block .sb { color: #dd1144 } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #dd1144 } /* Literal.String.Char */
|
||||
.literal-block .dl { color: #dd1144 } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #dd1144 } /* Literal.String.Doc */
|
||||
.literal-block .s2 { color: #dd1144 } /* Literal.String.Double */
|
||||
.literal-block .se { color: #dd1144 } /* Literal.String.Escape */
|
||||
.literal-block .sh { color: #dd1144 } /* Literal.String.Heredoc */
|
||||
.literal-block .si { color: #dd1144 } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #dd1144 } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #009926 } /* Literal.String.Regex */
|
||||
.literal-block .s1 { color: #dd1144 } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #990073 } /* Literal.String.Symbol */
|
||||
.literal-block .bp { color: #999999 } /* Name.Builtin.Pseudo */
|
||||
.literal-block .fm { color: #990000; font-weight: bold } /* Name.Function.Magic */
|
||||
.literal-block .vc { color: #008080 } /* Name.Variable.Class */
|
||||
.literal-block .vg { color: #008080 } /* Name.Variable.Global */
|
||||
.literal-block .vi { color: #008080 } /* Name.Variable.Instance */
|
||||
.literal-block .vm { color: #008080 } /* Name.Variable.Magic */
|
||||
.literal-block .il { color: #009999 } /* Literal.Number.Integer.Long */
|
1
docs/blog/theme/pygments/github.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.highlight .hll{background-color:#ffc}.highlight{background:#fff}.highlight .c{color:#998;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .k,.highlight .o{color:#000;font-weight:700}.highlight .ch,.highlight .cm{color:#998;font-style:italic}.highlight .cp{color:#999;font-weight:700;font-style:italic}.highlight .c1,.highlight .cpf{color:#998;font-style:italic}.highlight .cs{color:#999;font-weight:700;font-style:italic}.highlight .gd{color:#000;background-color:#fdd}.highlight .ge{color:#000;font-style:italic}.highlight .gr{color:#a00}.highlight .gh{color:#999}.highlight .gi{color:#000;background-color:#dfd}.highlight .go{color:#888}.highlight .gp{color:#555}.highlight .gs{font-weight:700}.highlight .gu{color:#aaa}.highlight .gt{color:#a00}.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr{color:#000;font-weight:700}.highlight .kt{color:#458;font-weight:700}.highlight .m{color:#099}.highlight .s{color:#d14}.highlight .na{color:teal}.highlight .nb{color:#0086b3}.highlight .nc{color:#458;font-weight:700}.highlight .no{color:teal}.highlight .nd{color:#3c5d5d;font-weight:700}.highlight .ni{color:purple}.highlight .ne,.highlight .nf,.highlight .nl{color:#900;font-weight:700}.highlight .nn{color:#555}.highlight .nt{color:navy}.highlight .nv{color:teal}.highlight .ow{color:#000;font-weight:700}.highlight .w{color:#bbb}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#099}.highlight .dl,.highlight .s2,.highlight .sa,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si,.highlight .sx{color:#d14}.highlight .sr{color:#009926}.highlight .s1{color:#d14}.highlight .ss{color:#990073}.highlight .bp{color:#999}.highlight .fm{color:#900;font-weight:700}.highlight .vc,.highlight .vg,.highlight .vi,.highlight .vm{color:teal}.highlight .il{color:#099}.literal-block .hll{background-color:#ffc}.literal-block{background:#fff}.literal-block .c{color:#998;font-style:italic}.literal-block .err{color:#a61717;background-color:#e3d2d2}.literal-block .k,.literal-block .o{color:#000;font-weight:700}.literal-block .ch,.literal-block .cm{color:#998;font-style:italic}.literal-block .cp{color:#999;font-weight:700;font-style:italic}.literal-block .c1,.literal-block .cpf{color:#998;font-style:italic}.literal-block .cs{color:#999;font-weight:700;font-style:italic}.literal-block .gd{color:#000;background-color:#fdd}.literal-block .ge{color:#000;font-style:italic}.literal-block .gr{color:#a00}.literal-block .gh{color:#999}.literal-block .gi{color:#000;background-color:#dfd}.literal-block .go{color:#888}.literal-block .gp{color:#555}.literal-block .gs{font-weight:700}.literal-block .gu{color:#aaa}.literal-block .gt{color:#a00}.literal-block .kc,.literal-block .kd,.literal-block .kn,.literal-block .kp,.literal-block .kr{color:#000;font-weight:700}.literal-block .kt{color:#458;font-weight:700}.literal-block .m{color:#099}.literal-block .s{color:#d14}.literal-block .na{color:teal}.literal-block .nb{color:#0086b3}.literal-block .nc{color:#458;font-weight:700}.literal-block .no{color:teal}.literal-block .nd{color:#3c5d5d;font-weight:700}.literal-block .ni{color:purple}.literal-block .ne,.literal-block .nf,.literal-block .nl{color:#900;font-weight:700}.literal-block .nn{color:#555}.literal-block .nt{color:navy}.literal-block .nv{color:teal}.literal-block .ow{color:#000;font-weight:700}.literal-block .w{color:#bbb}.literal-block .mb,.literal-block .mf,.literal-block .mh,.literal-block .mi,.literal-block .mo{color:#099}.literal-block .dl,.literal-block .s2,.literal-block .sa,.literal-block .sb,.literal-block .sc,.literal-block .sd,.literal-block .se,.literal-block .sh,.literal-block .si,.literal-block .sx{color:#d14}.literal-block .sr{color:#009926}.literal-block .s1{color:#d14}.literal-block .ss{color:#990073}.literal-block .bp{color:#999}.literal-block .fm{color:#900;font-weight:700}.literal-block .vc,.literal-block .vg,.literal-block .vi,.literal-block .vm{color:teal}.literal-block .il{color:#099}
|
|
@ -1,68 +0,0 @@
|
|||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #ffffff; }
|
||||
.highlight .c { color: #FF0000; font-style: italic } /* Comment */
|
||||
.highlight .k { color: #0000FF } /* Keyword */
|
||||
.highlight .ch { color: #FF0000; font-style: italic } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #FF0000; font-style: italic } /* Comment.Multiline */
|
||||
.highlight .cp { color: #FF0000; font-style: italic } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #FF0000; font-style: italic } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #FF0000; font-style: italic } /* Comment.Single */
|
||||
.highlight .cs { color: #FF0000; font-style: italic } /* Comment.Special */
|
||||
.highlight .kc { color: #0000FF } /* Keyword.Constant */
|
||||
.highlight .kd { color: #0000FF } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #0000FF } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #0000FF } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #0000FF } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #0000FF } /* Keyword.Type */
|
||||
.highlight .s { color: #009C00 } /* Literal.String */
|
||||
.highlight .nc { color: #007575 } /* Name.Class */
|
||||
.highlight .nd { color: #CC00A3 } /* Name.Decorator */
|
||||
.highlight .nf { color: #C34E00 } /* Name.Function */
|
||||
.highlight .sa { color: #009C00 } /* Literal.String.Affix */
|
||||
.highlight .sb { color: #009C00 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #009C00 } /* Literal.String.Char */
|
||||
.highlight .dl { color: #009C00 } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #009C00 } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #009C00 } /* Literal.String.Double */
|
||||
.highlight .se { color: #009C00 } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #009C00 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #009C00 } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #009C00 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #009C00 } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #009C00 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #009C00 } /* Literal.String.Symbol */
|
||||
.highlight .fm { color: #C34E00 } /* Name.Function.Magic */
|
||||
.literal-block .hll { background-color: #ffffcc }
|
||||
.literal-block { background: #ffffff; }
|
||||
.literal-block .c { color: #FF0000; font-style: italic } /* Comment */
|
||||
.literal-block .k { color: #0000FF } /* Keyword */
|
||||
.literal-block .ch { color: #FF0000; font-style: italic } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #FF0000; font-style: italic } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #FF0000; font-style: italic } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #FF0000; font-style: italic } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #FF0000; font-style: italic } /* Comment.Single */
|
||||
.literal-block .cs { color: #FF0000; font-style: italic } /* Comment.Special */
|
||||
.literal-block .kc { color: #0000FF } /* Keyword.Constant */
|
||||
.literal-block .kd { color: #0000FF } /* Keyword.Declaration */
|
||||
.literal-block .kn { color: #0000FF } /* Keyword.Namespace */
|
||||
.literal-block .kp { color: #0000FF } /* Keyword.Pseudo */
|
||||
.literal-block .kr { color: #0000FF } /* Keyword.Reserved */
|
||||
.literal-block .kt { color: #0000FF } /* Keyword.Type */
|
||||
.literal-block .s { color: #009C00 } /* Literal.String */
|
||||
.literal-block .nc { color: #007575 } /* Name.Class */
|
||||
.literal-block .nd { color: #CC00A3 } /* Name.Decorator */
|
||||
.literal-block .nf { color: #C34E00 } /* Name.Function */
|
||||
.literal-block .sa { color: #009C00 } /* Literal.String.Affix */
|
||||
.literal-block .sb { color: #009C00 } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #009C00 } /* Literal.String.Char */
|
||||
.literal-block .dl { color: #009C00 } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #009C00 } /* Literal.String.Doc */
|
||||
.literal-block .s2 { color: #009C00 } /* Literal.String.Double */
|
||||
.literal-block .se { color: #009C00 } /* Literal.String.Escape */
|
||||
.literal-block .sh { color: #009C00 } /* Literal.String.Heredoc */
|
||||
.literal-block .si { color: #009C00 } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #009C00 } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #009C00 } /* Literal.String.Regex */
|
||||
.literal-block .s1 { color: #009C00 } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #009C00 } /* Literal.String.Symbol */
|
||||
.literal-block .fm { color: #C34E00 } /* Name.Function.Magic */
|
1
docs/blog/theme/pygments/igor.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.highlight .hll{background-color:#ffc}.highlight{background:#fff}.highlight .c{color:red;font-style:italic}.highlight .k{color:#00f}.highlight .c1,.highlight .ch,.highlight .cm,.highlight .cp,.highlight .cpf,.highlight .cs{color:red;font-style:italic}.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr,.highlight .kt{color:#00f}.highlight .s{color:#009c00}.highlight .nc{color:#007575}.highlight .nd{color:#cc00a3}.highlight .nf{color:#c34e00}.highlight .dl,.highlight .s1,.highlight .s2,.highlight .sa,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si,.highlight .sr,.highlight .ss,.highlight .sx{color:#009c00}.highlight .fm{color:#c34e00}.literal-block .hll{background-color:#ffc}.literal-block{background:#fff}.literal-block .c{color:red;font-style:italic}.literal-block .k{color:#00f}.literal-block .c1,.literal-block .ch,.literal-block .cm,.literal-block .cp,.literal-block .cpf,.literal-block .cs{color:red;font-style:italic}.literal-block .kc,.literal-block .kd,.literal-block .kn,.literal-block .kp,.literal-block .kr,.literal-block .kt{color:#00f}.literal-block .s{color:#009c00}.literal-block .nc{color:#007575}.literal-block .nd{color:#cc00a3}.literal-block .nf{color:#c34e00}.literal-block .dl,.literal-block .s1,.literal-block .s2,.literal-block .sa,.literal-block .sb,.literal-block .sc,.literal-block .sd,.literal-block .se,.literal-block .sh,.literal-block .si,.literal-block .sr,.literal-block .ss,.literal-block .sx{color:#009c00}.literal-block .fm{color:#c34e00}
|
|
@ -1,148 +0,0 @@
|
|||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #1e1e27; color: #cfbfad }
|
||||
.highlight .c { color: #cd8b00 } /* Comment */
|
||||
.highlight .err { color: #ffffff; background-color: #6e2e2e } /* Error */
|
||||
.highlight .k { color: #808bed } /* Keyword */
|
||||
.highlight .n { color: #cfbfad } /* Name */
|
||||
.highlight .o { color: #666666 } /* Operator */
|
||||
.highlight .x { color: #cfbfad } /* Other */
|
||||
.highlight .p { color: #cfbfad } /* Punctuation */
|
||||
.highlight .ch { color: #cd8b00 } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #cd8b00 } /* Comment.Multiline */
|
||||
.highlight .cp { color: #409090 } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #ffcd8b; background-color: #404040 } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #cd8b00 } /* Comment.Single */
|
||||
.highlight .cs { color: #808bed } /* Comment.Special */
|
||||
.highlight .gd { color: #A00000 } /* Generic.Deleted */
|
||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||
.highlight .gr { color: #FF0000 } /* Generic.Error */
|
||||
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
||||
.highlight .gi { color: #00A000 } /* Generic.Inserted */
|
||||
.highlight .go { color: #888888 } /* Generic.Output */
|
||||
.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
||||
.highlight .gt { color: #0044DD } /* Generic.Traceback */
|
||||
.highlight .kc { color: #808bed } /* Keyword.Constant */
|
||||
.highlight .kd { color: #808bed } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #808bed } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #808bed } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #808bed } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #ff8bff } /* Keyword.Type */
|
||||
.highlight .m { color: #f0ad6d } /* Literal.Number */
|
||||
.highlight .s { color: #ffcd8b; background-color: #404040 } /* Literal.String */
|
||||
.highlight .na { color: #cfbfad } /* Name.Attribute */
|
||||
.highlight .nb { color: #808bed } /* Name.Builtin */
|
||||
.highlight .nc { color: #ff8bff } /* Name.Class */
|
||||
.highlight .no { color: #409090 } /* Name.Constant */
|
||||
.highlight .nd { color: #409090 } /* Name.Decorator */
|
||||
.highlight .ni { color: #cfbfad } /* Name.Entity */
|
||||
.highlight .ne { color: #ff0000 } /* Name.Exception */
|
||||
.highlight .nf { color: #c080d0 } /* Name.Function */
|
||||
.highlight .nl { color: #808bed } /* Name.Label */
|
||||
.highlight .nn { color: #ff0000 } /* Name.Namespace */
|
||||
.highlight .nx { color: #cfbfad } /* Name.Other */
|
||||
.highlight .py { color: #cfbfad } /* Name.Property */
|
||||
.highlight .nt { color: #cfbfad } /* Name.Tag */
|
||||
.highlight .nv { color: #cfbfad } /* Name.Variable */
|
||||
.highlight .ow { color: #666666 } /* Operator.Word */
|
||||
.highlight .w { color: #434357 } /* Text.Whitespace */
|
||||
.highlight .mb { color: #f0ad6d } /* Literal.Number.Bin */
|
||||
.highlight .mf { color: #f0ad6d } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #f0ad6d } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #f0ad6d } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #f0ad6d } /* Literal.Number.Oct */
|
||||
.highlight .sa { color: #ffcd8b; background-color: #404040 } /* Literal.String.Affix */
|
||||
.highlight .sb { color: #ffcd8b; background-color: #404040 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #ffcd8b; background-color: #404040 } /* Literal.String.Char */
|
||||
.highlight .dl { color: #ffcd8b; background-color: #404040 } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #808bed; background-color: #404040 } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #ffcd8b; background-color: #404040 } /* Literal.String.Double */
|
||||
.highlight .se { color: #ffcd8b; background-color: #404040 } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #ffcd8b; background-color: #404040 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #ffcd8b; background-color: #404040 } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #ffcd8b; background-color: #404040 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #ffcd8b; background-color: #404040 } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #ffcd8b; background-color: #404040 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #ffcd8b; background-color: #404040 } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #ffff00 } /* Name.Builtin.Pseudo */
|
||||
.highlight .fm { color: #c080d0 } /* Name.Function.Magic */
|
||||
.highlight .vc { color: #cfbfad } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #cfbfad } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #cfbfad } /* Name.Variable.Instance */
|
||||
.highlight .vm { color: #cfbfad } /* Name.Variable.Magic */
|
||||
.highlight .il { color: #f0ad6d } /* Literal.Number.Integer.Long */
|
||||
.literal-block .hll { background-color: #ffffcc }
|
||||
.literal-block { background: #1e1e27; color: #cfbfad }
|
||||
.literal-block .c { color: #cd8b00 } /* Comment */
|
||||
.literal-block .err { color: #ffffff; background-color: #6e2e2e } /* Error */
|
||||
.literal-block .k { color: #808bed } /* Keyword */
|
||||
.literal-block .n { color: #cfbfad } /* Name */
|
||||
.literal-block .o { color: #666666 } /* Operator */
|
||||
.literal-block .x { color: #cfbfad } /* Other */
|
||||
.literal-block .p { color: #cfbfad } /* Punctuation */
|
||||
.literal-block .ch { color: #cd8b00 } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #cd8b00 } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #409090 } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #ffcd8b; background-color: #404040 } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #cd8b00 } /* Comment.Single */
|
||||
.literal-block .cs { color: #808bed } /* Comment.Special */
|
||||
.literal-block .gd { color: #A00000 } /* Generic.Deleted */
|
||||
.literal-block .ge { font-style: italic } /* Generic.Emph */
|
||||
.literal-block .gr { color: #FF0000 } /* Generic.Error */
|
||||
.literal-block .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
||||
.literal-block .gi { color: #00A000 } /* Generic.Inserted */
|
||||
.literal-block .go { color: #888888 } /* Generic.Output */
|
||||
.literal-block .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
|
||||
.literal-block .gs { font-weight: bold } /* Generic.Strong */
|
||||
.literal-block .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
||||
.literal-block .gt { color: #0044DD } /* Generic.Traceback */
|
||||
.literal-block .kc { color: #808bed } /* Keyword.Constant */
|
||||
.literal-block .kd { color: #808bed } /* Keyword.Declaration */
|
||||
.literal-block .kn { color: #808bed } /* Keyword.Namespace */
|
||||
.literal-block .kp { color: #808bed } /* Keyword.Pseudo */
|
||||
.literal-block .kr { color: #808bed } /* Keyword.Reserved */
|
||||
.literal-block .kt { color: #ff8bff } /* Keyword.Type */
|
||||
.literal-block .m { color: #f0ad6d } /* Literal.Number */
|
||||
.literal-block .s { color: #ffcd8b; background-color: #404040 } /* Literal.String */
|
||||
.literal-block .na { color: #cfbfad } /* Name.Attribute */
|
||||
.literal-block .nb { color: #808bed } /* Name.Builtin */
|
||||
.literal-block .nc { color: #ff8bff } /* Name.Class */
|
||||
.literal-block .no { color: #409090 } /* Name.Constant */
|
||||
.literal-block .nd { color: #409090 } /* Name.Decorator */
|
||||
.literal-block .ni { color: #cfbfad } /* Name.Entity */
|
||||
.literal-block .ne { color: #ff0000 } /* Name.Exception */
|
||||
.literal-block .nf { color: #c080d0 } /* Name.Function */
|
||||
.literal-block .nl { color: #808bed } /* Name.Label */
|
||||
.literal-block .nn { color: #ff0000 } /* Name.Namespace */
|
||||
.literal-block .nx { color: #cfbfad } /* Name.Other */
|
||||
.literal-block .py { color: #cfbfad } /* Name.Property */
|
||||
.literal-block .nt { color: #cfbfad } /* Name.Tag */
|
||||
.literal-block .nv { color: #cfbfad } /* Name.Variable */
|
||||
.literal-block .ow { color: #666666 } /* Operator.Word */
|
||||
.literal-block .w { color: #434357 } /* Text.Whitespace */
|
||||
.literal-block .mb { color: #f0ad6d } /* Literal.Number.Bin */
|
||||
.literal-block .mf { color: #f0ad6d } /* Literal.Number.Float */
|
||||
.literal-block .mh { color: #f0ad6d } /* Literal.Number.Hex */
|
||||
.literal-block .mi { color: #f0ad6d } /* Literal.Number.Integer */
|
||||
.literal-block .mo { color: #f0ad6d } /* Literal.Number.Oct */
|
||||
.literal-block .sa { color: #ffcd8b; background-color: #404040 } /* Literal.String.Affix */
|
||||
.literal-block .sb { color: #ffcd8b; background-color: #404040 } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #ffcd8b; background-color: #404040 } /* Literal.String.Char */
|
||||
.literal-block .dl { color: #ffcd8b; background-color: #404040 } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #808bed; background-color: #404040 } /* Literal.String.Doc */
|
||||
.literal-block .s2 { color: #ffcd8b; background-color: #404040 } /* Literal.String.Double */
|
||||
.literal-block .se { color: #ffcd8b; background-color: #404040 } /* Literal.String.Escape */
|
||||
.literal-block .sh { color: #ffcd8b; background-color: #404040 } /* Literal.String.Heredoc */
|
||||
.literal-block .si { color: #ffcd8b; background-color: #404040 } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #ffcd8b; background-color: #404040 } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #ffcd8b; background-color: #404040 } /* Literal.String.Regex */
|
||||
.literal-block .s1 { color: #ffcd8b; background-color: #404040 } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #ffcd8b; background-color: #404040 } /* Literal.String.Symbol */
|
||||
.literal-block .bp { color: #ffff00 } /* Name.Builtin.Pseudo */
|
||||
.literal-block .fm { color: #c080d0 } /* Name.Function.Magic */
|
||||
.literal-block .vc { color: #cfbfad } /* Name.Variable.Class */
|
||||
.literal-block .vg { color: #cfbfad } /* Name.Variable.Global */
|
||||
.literal-block .vi { color: #cfbfad } /* Name.Variable.Instance */
|
||||
.literal-block .vm { color: #cfbfad } /* Name.Variable.Magic */
|
||||
.literal-block .il { color: #f0ad6d } /* Literal.Number.Integer.Long */
|
1
docs/blog/theme/pygments/inkpot.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.highlight .hll{background-color:#ffc}.highlight{background:#1e1e27;color:#cfbfad}.highlight .c{color:#cd8b00}.highlight .err{color:#fff;background-color:#6e2e2e}.highlight .k{color:#808bed}.highlight .n{color:#cfbfad}.highlight .o{color:#666}.highlight .p,.highlight .x{color:#cfbfad}.highlight .ch,.highlight .cm{color:#cd8b00}.highlight .cp{color:#409090}.highlight .cpf{color:#ffcd8b;background-color:#404040}.highlight .c1{color:#cd8b00}.highlight .cs{color:#808bed}.highlight .gd{color:#a00000}.highlight .ge{font-style:italic}.highlight .gr{color:red}.highlight .gh{color:navy;font-weight:700}.highlight .gi{color:#00a000}.highlight .go{color:#888}.highlight .gp{color:navy}.highlight .gp,.highlight .gs,.highlight .gu{font-weight:700}.highlight .gu{color:purple}.highlight .gt{color:#04d}.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr{color:#808bed}.highlight .kt{color:#ff8bff}.highlight .m{color:#f0ad6d}.highlight .s{color:#ffcd8b;background-color:#404040}.highlight .na{color:#cfbfad}.highlight .nb{color:#808bed}.highlight .nc{color:#ff8bff}.highlight .nd,.highlight .no{color:#409090}.highlight .ni{color:#cfbfad}.highlight .ne{color:red}.highlight .nf{color:#c080d0}.highlight .nl{color:#808bed}.highlight .nn{color:red}.highlight .nt,.highlight .nv,.highlight .nx,.highlight .py{color:#cfbfad}.highlight .ow{color:#666}.highlight .w{color:#434357}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#f0ad6d}.highlight .dl,.highlight .sa,.highlight .sb,.highlight .sc{color:#ffcd8b;background-color:#404040}.highlight .sd{color:#808bed;background-color:#404040}.highlight .s1,.highlight .s2,.highlight .se,.highlight .sh,.highlight .si,.highlight .sr,.highlight .ss,.highlight .sx{color:#ffcd8b;background-color:#404040}.highlight .bp{color:#ff0}.highlight .fm{color:#c080d0}.highlight .vc,.highlight .vg,.highlight .vi,.highlight .vm{color:#cfbfad}.highlight .il{color:#f0ad6d}.literal-block .hll{background-color:#ffc}.literal-block{background:#1e1e27;color:#cfbfad}.literal-block .c{color:#cd8b00}.literal-block .err{color:#fff;background-color:#6e2e2e}.literal-block .k{color:#808bed}.literal-block .n{color:#cfbfad}.literal-block .o{color:#666}.literal-block .p,.literal-block .x{color:#cfbfad}.literal-block .ch,.literal-block .cm{color:#cd8b00}.literal-block .cp{color:#409090}.literal-block .cpf{color:#ffcd8b;background-color:#404040}.literal-block .c1{color:#cd8b00}.literal-block .cs{color:#808bed}.literal-block .gd{color:#a00000}.literal-block .ge{font-style:italic}.literal-block .gr{color:red}.literal-block .gh{color:navy;font-weight:700}.literal-block .gi{color:#00a000}.literal-block .go{color:#888}.literal-block .gp{color:navy;font-weight:700}.literal-block .gs{font-weight:700}.literal-block .gu{color:purple;font-weight:700}.literal-block .gt{color:#04d}.literal-block .kc,.literal-block .kd,.literal-block .kn,.literal-block .kp,.literal-block .kr{color:#808bed}.literal-block .kt{color:#ff8bff}.literal-block .m{color:#f0ad6d}.literal-block .s{color:#ffcd8b;background-color:#404040}.literal-block .na{color:#cfbfad}.literal-block .nb{color:#808bed}.literal-block .nc{color:#ff8bff}.literal-block .nd,.literal-block .no{color:#409090}.literal-block .ni{color:#cfbfad}.literal-block .ne{color:red}.literal-block .nf{color:#c080d0}.literal-block .nl{color:#808bed}.literal-block .nn{color:red}.literal-block .nt,.literal-block .nv,.literal-block .nx,.literal-block .py{color:#cfbfad}.literal-block .ow{color:#666}.literal-block .w{color:#434357}.literal-block .mb,.literal-block .mf,.literal-block .mh,.literal-block .mi,.literal-block .mo{color:#f0ad6d}.literal-block .dl,.literal-block .sa,.literal-block .sb,.literal-block .sc{color:#ffcd8b;background-color:#404040}.literal-block .sd{color:#808bed;background-color:#404040}.literal-block .s1,.literal-block .s2,.literal-block .se,.literal-block .sh,.literal-block .si,.literal-block .sr,.literal-block .ss,.literal-block .sx{color:#ffcd8b;background-color:#404040}.literal-block .bp{color:#ff0}.literal-block .fm{color:#c080d0}.literal-block .vc,.literal-block .vg,.literal-block .vi,.literal-block .vm{color:#cfbfad}.literal-block .il{color:#f0ad6d}
|
|
@ -1,140 +0,0 @@
|
|||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #ffffff; }
|
||||
.highlight .c { color: #888888; font-style: italic } /* Comment */
|
||||
.highlight .err { background-color: #a848a8 } /* Error */
|
||||
.highlight .k { color: #2838b0 } /* Keyword */
|
||||
.highlight .o { color: #666666 } /* Operator */
|
||||
.highlight .p { color: #888888 } /* Punctuation */
|
||||
.highlight .ch { color: #287088; font-style: italic } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #888888; font-style: italic } /* Comment.Multiline */
|
||||
.highlight .cp { color: #289870 } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #888888; font-style: italic } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #888888; font-style: italic } /* Comment.Single */
|
||||
.highlight .cs { color: #888888; font-style: italic } /* Comment.Special */
|
||||
.highlight .gd { color: #c02828 } /* Generic.Deleted */
|
||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||
.highlight .gr { color: #c02828 } /* Generic.Error */
|
||||
.highlight .gh { color: #666666 } /* Generic.Heading */
|
||||
.highlight .gi { color: #388038 } /* Generic.Inserted */
|
||||
.highlight .go { color: #666666 } /* Generic.Output */
|
||||
.highlight .gp { color: #444444 } /* Generic.Prompt */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { color: #444444 } /* Generic.Subheading */
|
||||
.highlight .gt { color: #2838b0 } /* Generic.Traceback */
|
||||
.highlight .kc { color: #444444; font-style: italic } /* Keyword.Constant */
|
||||
.highlight .kd { color: #2838b0; font-style: italic } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #2838b0 } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #2838b0 } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #2838b0 } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #2838b0; font-style: italic } /* Keyword.Type */
|
||||
.highlight .m { color: #444444 } /* Literal.Number */
|
||||
.highlight .s { color: #b83838 } /* Literal.String */
|
||||
.highlight .na { color: #388038 } /* Name.Attribute */
|
||||
.highlight .nb { color: #388038 } /* Name.Builtin */
|
||||
.highlight .nc { color: #287088 } /* Name.Class */
|
||||
.highlight .no { color: #b85820 } /* Name.Constant */
|
||||
.highlight .nd { color: #287088 } /* Name.Decorator */
|
||||
.highlight .ni { color: #709030 } /* Name.Entity */
|
||||
.highlight .ne { color: #908828 } /* Name.Exception */
|
||||
.highlight .nf { color: #785840 } /* Name.Function */
|
||||
.highlight .nl { color: #289870 } /* Name.Label */
|
||||
.highlight .nn { color: #289870 } /* Name.Namespace */
|
||||
.highlight .nt { color: #2838b0 } /* Name.Tag */
|
||||
.highlight .nv { color: #b04040 } /* Name.Variable */
|
||||
.highlight .ow { color: #a848a8 } /* Operator.Word */
|
||||
.highlight .w { color: #a89028 } /* Text.Whitespace */
|
||||
.highlight .mb { color: #444444 } /* Literal.Number.Bin */
|
||||
.highlight .mf { color: #444444 } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #444444 } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #444444 } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #444444 } /* Literal.Number.Oct */
|
||||
.highlight .sa { color: #444444 } /* Literal.String.Affix */
|
||||
.highlight .sb { color: #b83838 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #a848a8 } /* Literal.String.Char */
|
||||
.highlight .dl { color: #b85820 } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #b85820; font-style: italic } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #b83838 } /* Literal.String.Double */
|
||||
.highlight .se { color: #709030 } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #b83838 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #b83838; text-decoration: underline } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #a848a8 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #a848a8 } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #b83838 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #b83838 } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #388038; font-style: italic } /* Name.Builtin.Pseudo */
|
||||
.highlight .fm { color: #b85820 } /* Name.Function.Magic */
|
||||
.highlight .vc { color: #b04040 } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #908828 } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #b04040 } /* Name.Variable.Instance */
|
||||
.highlight .vm { color: #b85820 } /* Name.Variable.Magic */
|
||||
.highlight .il { color: #444444 } /* Literal.Number.Integer.Long */
|
||||
.literal-block .hll { background-color: #ffffcc }
|
||||
.literal-block { background: #ffffff; }
|
||||
.literal-block .c { color: #888888; font-style: italic } /* Comment */
|
||||
.literal-block .err { background-color: #a848a8 } /* Error */
|
||||
.literal-block .k { color: #2838b0 } /* Keyword */
|
||||
.literal-block .o { color: #666666 } /* Operator */
|
||||
.literal-block .p { color: #888888 } /* Punctuation */
|
||||
.literal-block .ch { color: #287088; font-style: italic } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #888888; font-style: italic } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #289870 } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #888888; font-style: italic } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #888888; font-style: italic } /* Comment.Single */
|
||||
.literal-block .cs { color: #888888; font-style: italic } /* Comment.Special */
|
||||
.literal-block .gd { color: #c02828 } /* Generic.Deleted */
|
||||
.literal-block .ge { font-style: italic } /* Generic.Emph */
|
||||
.literal-block .gr { color: #c02828 } /* Generic.Error */
|
||||
.literal-block .gh { color: #666666 } /* Generic.Heading */
|
||||
.literal-block .gi { color: #388038 } /* Generic.Inserted */
|
||||
.literal-block .go { color: #666666 } /* Generic.Output */
|
||||
.literal-block .gp { color: #444444 } /* Generic.Prompt */
|
||||
.literal-block .gs { font-weight: bold } /* Generic.Strong */
|
||||
.literal-block .gu { color: #444444 } /* Generic.Subheading */
|
||||
.literal-block .gt { color: #2838b0 } /* Generic.Traceback */
|
||||
.literal-block .kc { color: #444444; font-style: italic } /* Keyword.Constant */
|
||||
.literal-block .kd { color: #2838b0; font-style: italic } /* Keyword.Declaration */
|
||||
.literal-block .kn { color: #2838b0 } /* Keyword.Namespace */
|
||||
.literal-block .kp { color: #2838b0 } /* Keyword.Pseudo */
|
||||
.literal-block .kr { color: #2838b0 } /* Keyword.Reserved */
|
||||
.literal-block .kt { color: #2838b0; font-style: italic } /* Keyword.Type */
|
||||
.literal-block .m { color: #444444 } /* Literal.Number */
|
||||
.literal-block .s { color: #b83838 } /* Literal.String */
|
||||
.literal-block .na { color: #388038 } /* Name.Attribute */
|
||||
.literal-block .nb { color: #388038 } /* Name.Builtin */
|
||||
.literal-block .nc { color: #287088 } /* Name.Class */
|
||||
.literal-block .no { color: #b85820 } /* Name.Constant */
|
||||
.literal-block .nd { color: #287088 } /* Name.Decorator */
|
||||
.literal-block .ni { color: #709030 } /* Name.Entity */
|
||||
.literal-block .ne { color: #908828 } /* Name.Exception */
|
||||
.literal-block .nf { color: #785840 } /* Name.Function */
|
||||
.literal-block .nl { color: #289870 } /* Name.Label */
|
||||
.literal-block .nn { color: #289870 } /* Name.Namespace */
|
||||
.literal-block .nt { color: #2838b0 } /* Name.Tag */
|
||||
.literal-block .nv { color: #b04040 } /* Name.Variable */
|
||||
.literal-block .ow { color: #a848a8 } /* Operator.Word */
|
||||
.literal-block .w { color: #a89028 } /* Text.Whitespace */
|
||||
.literal-block .mb { color: #444444 } /* Literal.Number.Bin */
|
||||
.literal-block .mf { color: #444444 } /* Literal.Number.Float */
|
||||
.literal-block .mh { color: #444444 } /* Literal.Number.Hex */
|
||||
.literal-block .mi { color: #444444 } /* Literal.Number.Integer */
|
||||
.literal-block .mo { color: #444444 } /* Literal.Number.Oct */
|
||||
.literal-block .sa { color: #444444 } /* Literal.String.Affix */
|
||||
.literal-block .sb { color: #b83838 } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #a848a8 } /* Literal.String.Char */
|
||||
.literal-block .dl { color: #b85820 } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #b85820; font-style: italic } /* Literal.String.Doc */
|
||||
.literal-block .s2 { color: #b83838 } /* Literal.String.Double */
|
||||
.literal-block .se { color: #709030 } /* Literal.String.Escape */
|
||||
.literal-block .sh { color: #b83838 } /* Literal.String.Heredoc */
|
||||
.literal-block .si { color: #b83838; text-decoration: underline } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #a848a8 } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #a848a8 } /* Literal.String.Regex */
|
||||
.literal-block .s1 { color: #b83838 } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #b83838 } /* Literal.String.Symbol */
|
||||
.literal-block .bp { color: #388038; font-style: italic } /* Name.Builtin.Pseudo */
|
||||
.literal-block .fm { color: #b85820 } /* Name.Function.Magic */
|
||||
.literal-block .vc { color: #b04040 } /* Name.Variable.Class */
|
||||
.literal-block .vg { color: #908828 } /* Name.Variable.Global */
|
||||
.literal-block .vi { color: #b04040 } /* Name.Variable.Instance */
|
||||
.literal-block .vm { color: #b85820 } /* Name.Variable.Magic */
|
||||
.literal-block .il { color: #444444 } /* Literal.Number.Integer.Long */
|
1
docs/blog/theme/pygments/lovelace.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.highlight .hll{background-color:#ffc}.highlight{background:#fff}.highlight .c{color:#888;font-style:italic}.highlight .err{background-color:#a848a8}.highlight .k{color:#2838b0}.highlight .o{color:#666}.highlight .p{color:#888}.highlight .ch{color:#287088;font-style:italic}.highlight .cm{color:#888;font-style:italic}.highlight .cp{color:#289870}.highlight .c1,.highlight .cpf,.highlight .cs{color:#888;font-style:italic}.highlight .gd{color:#c02828}.highlight .ge{font-style:italic}.highlight .gr{color:#c02828}.highlight .gh{color:#666}.highlight .gi{color:#388038}.highlight .go{color:#666}.highlight .gp{color:#444}.highlight .gs{font-weight:700}.highlight .gu{color:#444}.highlight .gt{color:#2838b0}.highlight .kc{color:#444;font-style:italic}.highlight .kd{color:#2838b0;font-style:italic}.highlight .kn,.highlight .kp,.highlight .kr{color:#2838b0}.highlight .kt{color:#2838b0;font-style:italic}.highlight .m{color:#444}.highlight .s{color:#b83838}.highlight .na,.highlight .nb{color:#388038}.highlight .nc{color:#287088}.highlight .no{color:#b85820}.highlight .nd{color:#287088}.highlight .ni{color:#709030}.highlight .ne{color:#908828}.highlight .nf{color:#785840}.highlight .nl,.highlight .nn{color:#289870}.highlight .nt{color:#2838b0}.highlight .nv{color:#b04040}.highlight .ow{color:#a848a8}.highlight .w{color:#a89028}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo,.highlight .sa{color:#444}.highlight .sb{color:#b83838}.highlight .sc{color:#a848a8}.highlight .dl{color:#b85820}.highlight .sd{color:#b85820;font-style:italic}.highlight .s2{color:#b83838}.highlight .se{color:#709030}.highlight .sh{color:#b83838}.highlight .si{color:#b83838;text-decoration:underline}.highlight .sr,.highlight .sx{color:#a848a8}.highlight .s1,.highlight .ss{color:#b83838}.highlight .bp{color:#388038;font-style:italic}.highlight .fm{color:#b85820}.highlight .vc{color:#b04040}.highlight .vg{color:#908828}.highlight .vi{color:#b04040}.highlight .vm{color:#b85820}.highlight .il{color:#444}.literal-block .hll{background-color:#ffc}.literal-block{background:#fff}.literal-block .c{color:#888;font-style:italic}.literal-block .err{background-color:#a848a8}.literal-block .k{color:#2838b0}.literal-block .o{color:#666}.literal-block .p{color:#888}.literal-block .ch{color:#287088;font-style:italic}.literal-block .cm{color:#888;font-style:italic}.literal-block .cp{color:#289870}.literal-block .c1,.literal-block .cpf,.literal-block .cs{color:#888;font-style:italic}.literal-block .gd{color:#c02828}.literal-block .ge{font-style:italic}.literal-block .gr{color:#c02828}.literal-block .gh{color:#666}.literal-block .gi{color:#388038}.literal-block .go{color:#666}.literal-block .gp{color:#444}.literal-block .gs{font-weight:700}.literal-block .gu{color:#444}.literal-block .gt{color:#2838b0}.literal-block .kc{color:#444;font-style:italic}.literal-block .kd{color:#2838b0;font-style:italic}.literal-block .kn,.literal-block .kp,.literal-block .kr{color:#2838b0}.literal-block .kt{color:#2838b0;font-style:italic}.literal-block .m{color:#444}.literal-block .s{color:#b83838}.literal-block .na,.literal-block .nb{color:#388038}.literal-block .nc{color:#287088}.literal-block .no{color:#b85820}.literal-block .nd{color:#287088}.literal-block .ni{color:#709030}.literal-block .ne{color:#908828}.literal-block .nf{color:#785840}.literal-block .nl,.literal-block .nn{color:#289870}.literal-block .nt{color:#2838b0}.literal-block .nv{color:#b04040}.literal-block .ow{color:#a848a8}.literal-block .w{color:#a89028}.literal-block .mb,.literal-block .mf,.literal-block .mh,.literal-block .mi,.literal-block .mo,.literal-block .sa{color:#444}.literal-block .sb{color:#b83838}.literal-block .sc{color:#a848a8}.literal-block .dl{color:#b85820}.literal-block .sd{color:#b85820;font-style:italic}.literal-block .s2{color:#b83838}.literal-block .se{color:#709030}.literal-block .sh{color:#b83838}.literal-block .si{color:#b83838;text-decoration:underline}.literal-block .sr,.literal-block .sx{color:#a848a8}.literal-block .s1,.literal-block .ss{color:#b83838}.literal-block .bp{color:#388038;font-style:italic}.literal-block .fm{color:#b85820}.literal-block .vc{color:#b04040}.literal-block .vg{color:#908828}.literal-block .vi{color:#b04040}.literal-block .vm{color:#b85820}.literal-block .il{color:#444}
|
|
@ -1,138 +0,0 @@
|
|||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #f0f3f3; }
|
||||
.highlight .c { color: #0099FF; font-style: italic } /* Comment */
|
||||
.highlight .err { color: #AA0000; background-color: #FFAAAA } /* Error */
|
||||
.highlight .k { color: #006699; font-weight: bold } /* Keyword */
|
||||
.highlight .o { color: #555555 } /* Operator */
|
||||
.highlight .ch { color: #0099FF; font-style: italic } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #0099FF; font-style: italic } /* Comment.Multiline */
|
||||
.highlight .cp { color: #009999 } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #0099FF; font-style: italic } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #0099FF; font-style: italic } /* Comment.Single */
|
||||
.highlight .cs { color: #0099FF; font-weight: bold; font-style: italic } /* Comment.Special */
|
||||
.highlight .gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */
|
||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||
.highlight .gr { color: #FF0000 } /* Generic.Error */
|
||||
.highlight .gh { color: #003300; font-weight: bold } /* Generic.Heading */
|
||||
.highlight .gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */
|
||||
.highlight .go { color: #AAAAAA } /* Generic.Output */
|
||||
.highlight .gp { color: #000099; font-weight: bold } /* Generic.Prompt */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { color: #003300; font-weight: bold } /* Generic.Subheading */
|
||||
.highlight .gt { color: #99CC66 } /* Generic.Traceback */
|
||||
.highlight .kc { color: #006699; font-weight: bold } /* Keyword.Constant */
|
||||
.highlight .kd { color: #006699; font-weight: bold } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #006699; font-weight: bold } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #006699 } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #006699; font-weight: bold } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #007788; font-weight: bold } /* Keyword.Type */
|
||||
.highlight .m { color: #FF6600 } /* Literal.Number */
|
||||
.highlight .s { color: #CC3300 } /* Literal.String */
|
||||
.highlight .na { color: #330099 } /* Name.Attribute */
|
||||
.highlight .nb { color: #336666 } /* Name.Builtin */
|
||||
.highlight .nc { color: #00AA88; font-weight: bold } /* Name.Class */
|
||||
.highlight .no { color: #336600 } /* Name.Constant */
|
||||
.highlight .nd { color: #9999FF } /* Name.Decorator */
|
||||
.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
|
||||
.highlight .ne { color: #CC0000; font-weight: bold } /* Name.Exception */
|
||||
.highlight .nf { color: #CC00FF } /* Name.Function */
|
||||
.highlight .nl { color: #9999FF } /* Name.Label */
|
||||
.highlight .nn { color: #00CCFF; font-weight: bold } /* Name.Namespace */
|
||||
.highlight .nt { color: #330099; font-weight: bold } /* Name.Tag */
|
||||
.highlight .nv { color: #003333 } /* Name.Variable */
|
||||
.highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
|
||||
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.highlight .mb { color: #FF6600 } /* Literal.Number.Bin */
|
||||
.highlight .mf { color: #FF6600 } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #FF6600 } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #FF6600 } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #FF6600 } /* Literal.Number.Oct */
|
||||
.highlight .sa { color: #CC3300 } /* Literal.String.Affix */
|
||||
.highlight .sb { color: #CC3300 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #CC3300 } /* Literal.String.Char */
|
||||
.highlight .dl { color: #CC3300 } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #CC3300 } /* Literal.String.Double */
|
||||
.highlight .se { color: #CC3300; font-weight: bold } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #CC3300 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #AA0000 } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #CC3300 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #33AAAA } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #CC3300 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #FFCC33 } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #336666 } /* Name.Builtin.Pseudo */
|
||||
.highlight .fm { color: #CC00FF } /* Name.Function.Magic */
|
||||
.highlight .vc { color: #003333 } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #003333 } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #003333 } /* Name.Variable.Instance */
|
||||
.highlight .vm { color: #003333 } /* Name.Variable.Magic */
|
||||
.highlight .il { color: #FF6600 } /* Literal.Number.Integer.Long */
|
||||
.literal-block .hll { background-color: #ffffcc }
|
||||
.literal-block { background: #f0f3f3; }
|
||||
.literal-block .c { color: #0099FF; font-style: italic } /* Comment */
|
||||
.literal-block .err { color: #AA0000; background-color: #FFAAAA } /* Error */
|
||||
.literal-block .k { color: #006699; font-weight: bold } /* Keyword */
|
||||
.literal-block .o { color: #555555 } /* Operator */
|
||||
.literal-block .ch { color: #0099FF; font-style: italic } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #0099FF; font-style: italic } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #009999 } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #0099FF; font-style: italic } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #0099FF; font-style: italic } /* Comment.Single */
|
||||
.literal-block .cs { color: #0099FF; font-weight: bold; font-style: italic } /* Comment.Special */
|
||||
.literal-block .gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */
|
||||
.literal-block .ge { font-style: italic } /* Generic.Emph */
|
||||
.literal-block .gr { color: #FF0000 } /* Generic.Error */
|
||||
.literal-block .gh { color: #003300; font-weight: bold } /* Generic.Heading */
|
||||
.literal-block .gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */
|
||||
.literal-block .go { color: #AAAAAA } /* Generic.Output */
|
||||
.literal-block .gp { color: #000099; font-weight: bold } /* Generic.Prompt */
|
||||
.literal-block .gs { font-weight: bold } /* Generic.Strong */
|
||||
.literal-block .gu { color: #003300; font-weight: bold } /* Generic.Subheading */
|
||||
.literal-block .gt { color: #99CC66 } /* Generic.Traceback */
|
||||
.literal-block .kc { color: #006699; font-weight: bold } /* Keyword.Constant */
|
||||
.literal-block .kd { color: #006699; font-weight: bold } /* Keyword.Declaration */
|
||||
.literal-block .kn { color: #006699; font-weight: bold } /* Keyword.Namespace */
|
||||
.literal-block .kp { color: #006699 } /* Keyword.Pseudo */
|
||||
.literal-block .kr { color: #006699; font-weight: bold } /* Keyword.Reserved */
|
||||
.literal-block .kt { color: #007788; font-weight: bold } /* Keyword.Type */
|
||||
.literal-block .m { color: #FF6600 } /* Literal.Number */
|
||||
.literal-block .s { color: #CC3300 } /* Literal.String */
|
||||
.literal-block .na { color: #330099 } /* Name.Attribute */
|
||||
.literal-block .nb { color: #336666 } /* Name.Builtin */
|
||||
.literal-block .nc { color: #00AA88; font-weight: bold } /* Name.Class */
|
||||
.literal-block .no { color: #336600 } /* Name.Constant */
|
||||
.literal-block .nd { color: #9999FF } /* Name.Decorator */
|
||||
.literal-block .ni { color: #999999; font-weight: bold } /* Name.Entity */
|
||||
.literal-block .ne { color: #CC0000; font-weight: bold } /* Name.Exception */
|
||||
.literal-block .nf { color: #CC00FF } /* Name.Function */
|
||||
.literal-block .nl { color: #9999FF } /* Name.Label */
|
||||
.literal-block .nn { color: #00CCFF; font-weight: bold } /* Name.Namespace */
|
||||
.literal-block .nt { color: #330099; font-weight: bold } /* Name.Tag */
|
||||
.literal-block .nv { color: #003333 } /* Name.Variable */
|
||||
.literal-block .ow { color: #000000; font-weight: bold } /* Operator.Word */
|
||||
.literal-block .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.literal-block .mb { color: #FF6600 } /* Literal.Number.Bin */
|
||||
.literal-block .mf { color: #FF6600 } /* Literal.Number.Float */
|
||||
.literal-block .mh { color: #FF6600 } /* Literal.Number.Hex */
|
||||
.literal-block .mi { color: #FF6600 } /* Literal.Number.Integer */
|
||||
.literal-block .mo { color: #FF6600 } /* Literal.Number.Oct */
|
||||
.literal-block .sa { color: #CC3300 } /* Literal.String.Affix */
|
||||
.literal-block .sb { color: #CC3300 } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #CC3300 } /* Literal.String.Char */
|
||||
.literal-block .dl { color: #CC3300 } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */
|
||||
.literal-block .s2 { color: #CC3300 } /* Literal.String.Double */
|
||||
.literal-block .se { color: #CC3300; font-weight: bold } /* Literal.String.Escape */
|
||||
.literal-block .sh { color: #CC3300 } /* Literal.String.Heredoc */
|
||||
.literal-block .si { color: #AA0000 } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #CC3300 } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #33AAAA } /* Literal.String.Regex */
|
||||
.literal-block .s1 { color: #CC3300 } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #FFCC33 } /* Literal.String.Symbol */
|
||||
.literal-block .bp { color: #336666 } /* Name.Builtin.Pseudo */
|
||||
.literal-block .fm { color: #CC00FF } /* Name.Function.Magic */
|
||||
.literal-block .vc { color: #003333 } /* Name.Variable.Class */
|
||||
.literal-block .vg { color: #003333 } /* Name.Variable.Global */
|
||||
.literal-block .vi { color: #003333 } /* Name.Variable.Instance */
|
||||
.literal-block .vm { color: #003333 } /* Name.Variable.Magic */
|
||||
.literal-block .il { color: #FF6600 } /* Literal.Number.Integer.Long */
|
1
docs/blog/theme/pygments/manni.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.highlight .hll{background-color:#ffc}.highlight{background:#f0f3f3}.highlight .c{color:#09f;font-style:italic}.highlight .err{color:#a00;background-color:#faa}.highlight .k{color:#069;font-weight:700}.highlight .o{color:#555}.highlight .ch,.highlight .cm{color:#09f;font-style:italic}.highlight .cp{color:#099}.highlight .c1,.highlight .cpf,.highlight .cs{color:#09f;font-style:italic}.highlight .cs{font-weight:700}.highlight .gd{background-color:#fcc;border:1px solid #c00}.highlight .ge{font-style:italic}.highlight .gr{color:red}.highlight .gh{color:#030;font-weight:700}.highlight .gi{background-color:#cfc;border:1px solid #0c0}.highlight .go{color:#aaa}.highlight .gp{color:#009}.highlight .gp,.highlight .gs,.highlight .gu{font-weight:700}.highlight .gu{color:#030}.highlight .gt{color:#9c6}.highlight .kc,.highlight .kd,.highlight .kn{color:#069;font-weight:700}.highlight .kp{color:#069}.highlight .kr{color:#069;font-weight:700}.highlight .kt{color:#078;font-weight:700}.highlight .m{color:#f60}.highlight .s{color:#c30}.highlight .na{color:#309}.highlight .nb{color:#366}.highlight .nc{color:#0a8;font-weight:700}.highlight .no{color:#360}.highlight .nd{color:#99f}.highlight .ni{color:#999;font-weight:700}.highlight .ne{color:#c00;font-weight:700}.highlight .nf{color:#c0f}.highlight .nl{color:#99f}.highlight .nn{color:#0cf;font-weight:700}.highlight .nt{color:#309;font-weight:700}.highlight .nv{color:#033}.highlight .ow{color:#000;font-weight:700}.highlight .w{color:#bbb}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#f60}.highlight .dl,.highlight .sa,.highlight .sb,.highlight .sc{color:#c30}.highlight .sd{color:#c30;font-style:italic}.highlight .s2{color:#c30}.highlight .se{color:#c30;font-weight:700}.highlight .sh{color:#c30}.highlight .si{color:#a00}.highlight .sx{color:#c30}.highlight .sr{color:#3aa}.highlight .s1{color:#c30}.highlight .ss{color:#fc3}.highlight .bp{color:#366}.highlight .fm{color:#c0f}.highlight .vc,.highlight .vg,.highlight .vi,.highlight .vm{color:#033}.highlight .il{color:#f60}.literal-block .hll{background-color:#ffc}.literal-block{background:#f0f3f3}.literal-block .c{color:#09f;font-style:italic}.literal-block .err{color:#a00;background-color:#faa}.literal-block .k{color:#069;font-weight:700}.literal-block .o{color:#555}.literal-block .ch,.literal-block .cm{color:#09f;font-style:italic}.literal-block .cp{color:#099}.literal-block .c1,.literal-block .cpf,.literal-block .cs{color:#09f;font-style:italic}.literal-block .cs{font-weight:700}.literal-block .gd{background-color:#fcc;border:1px solid #c00}.literal-block .ge{font-style:italic}.literal-block .gr{color:red}.literal-block .gh{color:#030;font-weight:700}.literal-block .gi{background-color:#cfc;border:1px solid #0c0}.literal-block .go{color:#aaa}.literal-block .gp{color:#009;font-weight:700}.literal-block .gs{font-weight:700}.literal-block .gu{color:#030;font-weight:700}.literal-block .gt{color:#9c6}.literal-block .kc,.literal-block .kd,.literal-block .kn{color:#069;font-weight:700}.literal-block .kp{color:#069}.literal-block .kr{color:#069;font-weight:700}.literal-block .kt{color:#078;font-weight:700}.literal-block .m{color:#f60}.literal-block .s{color:#c30}.literal-block .na{color:#309}.literal-block .nb{color:#366}.literal-block .nc{color:#0a8;font-weight:700}.literal-block .no{color:#360}.literal-block .nd{color:#99f}.literal-block .ni{color:#999;font-weight:700}.literal-block .ne{color:#c00;font-weight:700}.literal-block .nf{color:#c0f}.literal-block .nl{color:#99f}.literal-block .nn{color:#0cf;font-weight:700}.literal-block .nt{color:#309;font-weight:700}.literal-block .nv{color:#033}.literal-block .ow{color:#000;font-weight:700}.literal-block .w{color:#bbb}.literal-block .mb,.literal-block .mf,.literal-block .mh,.literal-block .mi,.literal-block .mo{color:#f60}.literal-block .dl,.literal-block .sa,.literal-block .sb,.literal-block .sc{color:#c30}.literal-block .sd{color:#c30;font-style:italic}.literal-block .s2{color:#c30}.literal-block .se{color:#c30;font-weight:700}.literal-block .sh{color:#c30}.literal-block .si{color:#a00}.literal-block .sx{color:#c30}.literal-block .sr{color:#3aa}.literal-block .s1{color:#c30}.literal-block .ss{color:#fc3}.literal-block .bp{color:#366}.literal-block .fm{color:#c0f}.literal-block .vc,.literal-block .vg,.literal-block .vi,.literal-block .vm{color:#033}.literal-block .il{color:#f60}
|
|
@ -1,144 +0,0 @@
|
|||
.highlight .hll { background-color: #49483e }
|
||||
.highlight { background: #272822; color: #f8f8f2 }
|
||||
.highlight .c { color: #75715e } /* Comment */
|
||||
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
|
||||
.highlight .k { color: #66d9ef } /* Keyword */
|
||||
.highlight .l { color: #ae81ff } /* Literal */
|
||||
.highlight .n { color: #f8f8f2 } /* Name */
|
||||
.highlight .o { color: #f92672 } /* Operator */
|
||||
.highlight .p { color: #f8f8f2 } /* Punctuation */
|
||||
.highlight .ch { color: #75715e } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #75715e } /* Comment.Multiline */
|
||||
.highlight .cp { color: #75715e } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #75715e } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #75715e } /* Comment.Single */
|
||||
.highlight .cs { color: #75715e } /* Comment.Special */
|
||||
.highlight .gd { color: #f92672 } /* Generic.Deleted */
|
||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||
.highlight .gi { color: #a6e22e } /* Generic.Inserted */
|
||||
.highlight .go { color: #66d9ef } /* Generic.Output */
|
||||
.highlight .gp { color: #f92672; font-weight: bold } /* Generic.Prompt */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { color: #75715e } /* Generic.Subheading */
|
||||
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
|
||||
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #f92672 } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #66d9ef } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #66d9ef } /* Keyword.Type */
|
||||
.highlight .ld { color: #e6db74 } /* Literal.Date */
|
||||
.highlight .m { color: #ae81ff } /* Literal.Number */
|
||||
.highlight .s { color: #e6db74 } /* Literal.String */
|
||||
.highlight .na { color: #a6e22e } /* Name.Attribute */
|
||||
.highlight .nb { color: #f8f8f2 } /* Name.Builtin */
|
||||
.highlight .nc { color: #a6e22e } /* Name.Class */
|
||||
.highlight .no { color: #66d9ef } /* Name.Constant */
|
||||
.highlight .nd { color: #a6e22e } /* Name.Decorator */
|
||||
.highlight .ni { color: #f8f8f2 } /* Name.Entity */
|
||||
.highlight .ne { color: #a6e22e } /* Name.Exception */
|
||||
.highlight .nf { color: #a6e22e } /* Name.Function */
|
||||
.highlight .nl { color: #f8f8f2 } /* Name.Label */
|
||||
.highlight .nn { color: #f8f8f2 } /* Name.Namespace */
|
||||
.highlight .nx { color: #a6e22e } /* Name.Other */
|
||||
.highlight .py { color: #f8f8f2 } /* Name.Property */
|
||||
.highlight .nt { color: #f92672 } /* Name.Tag */
|
||||
.highlight .nv { color: #f8f8f2 } /* Name.Variable */
|
||||
.highlight .ow { color: #f92672 } /* Operator.Word */
|
||||
.highlight .w { color: #f8f8f2 } /* Text.Whitespace */
|
||||
.highlight .mb { color: #ae81ff } /* Literal.Number.Bin */
|
||||
.highlight .mf { color: #ae81ff } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #ae81ff } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #ae81ff } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #ae81ff } /* Literal.Number.Oct */
|
||||
.highlight .sa { color: #e6db74 } /* Literal.String.Affix */
|
||||
.highlight .sb { color: #e6db74 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #e6db74 } /* Literal.String.Char */
|
||||
.highlight .dl { color: #e6db74 } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #e6db74 } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #e6db74 } /* Literal.String.Double */
|
||||
.highlight .se { color: #ae81ff } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #e6db74 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #e6db74 } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #e6db74 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #e6db74 } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #e6db74 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #e6db74 } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
|
||||
.highlight .fm { color: #a6e22e } /* Name.Function.Magic */
|
||||
.highlight .vc { color: #f8f8f2 } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #f8f8f2 } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #f8f8f2 } /* Name.Variable.Instance */
|
||||
.highlight .vm { color: #f8f8f2 } /* Name.Variable.Magic */
|
||||
.highlight .il { color: #ae81ff } /* Literal.Number.Integer.Long */
|
||||
.literal-block .hll { background-color: #49483e }
|
||||
.literal-block { background: #272822; color: #f8f8f2 }
|
||||
.literal-block .c { color: #75715e } /* Comment */
|
||||
.literal-block .err { color: #960050; background-color: #1e0010 } /* Error */
|
||||
.literal-block .k { color: #66d9ef } /* Keyword */
|
||||
.literal-block .l { color: #ae81ff } /* Literal */
|
||||
.literal-block .n { color: #f8f8f2 } /* Name */
|
||||
.literal-block .o { color: #f92672 } /* Operator */
|
||||
.literal-block .p { color: #f8f8f2 } /* Punctuation */
|
||||
.literal-block .ch { color: #75715e } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #75715e } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #75715e } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #75715e } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #75715e } /* Comment.Single */
|
||||
.literal-block .cs { color: #75715e } /* Comment.Special */
|
||||
.literal-block .gd { color: #f92672 } /* Generic.Deleted */
|
||||
.literal-block .ge { font-style: italic } /* Generic.Emph */
|
||||
.literal-block .gi { color: #a6e22e } /* Generic.Inserted */
|
||||
.literal-block .go { color: #66d9ef } /* Generic.Output */
|
||||
.literal-block .gp { color: #f92672; font-weight: bold } /* Generic.Prompt */
|
||||
.literal-block .gs { font-weight: bold } /* Generic.Strong */
|
||||
.literal-block .gu { color: #75715e } /* Generic.Subheading */
|
||||
.literal-block .kc { color: #66d9ef } /* Keyword.Constant */
|
||||
.literal-block .kd { color: #66d9ef } /* Keyword.Declaration */
|
||||
.literal-block .kn { color: #f92672 } /* Keyword.Namespace */
|
||||
.literal-block .kp { color: #66d9ef } /* Keyword.Pseudo */
|
||||
.literal-block .kr { color: #66d9ef } /* Keyword.Reserved */
|
||||
.literal-block .kt { color: #66d9ef } /* Keyword.Type */
|
||||
.literal-block .ld { color: #e6db74 } /* Literal.Date */
|
||||
.literal-block .m { color: #ae81ff } /* Literal.Number */
|
||||
.literal-block .s { color: #e6db74 } /* Literal.String */
|
||||
.literal-block .na { color: #a6e22e } /* Name.Attribute */
|
||||
.literal-block .nb { color: #f8f8f2 } /* Name.Builtin */
|
||||
.literal-block .nc { color: #a6e22e } /* Name.Class */
|
||||
.literal-block .no { color: #66d9ef } /* Name.Constant */
|
||||
.literal-block .nd { color: #a6e22e } /* Name.Decorator */
|
||||
.literal-block .ni { color: #f8f8f2 } /* Name.Entity */
|
||||
.literal-block .ne { color: #a6e22e } /* Name.Exception */
|
||||
.literal-block .nf { color: #a6e22e } /* Name.Function */
|
||||
.literal-block .nl { color: #f8f8f2 } /* Name.Label */
|
||||
.literal-block .nn { color: #f8f8f2 } /* Name.Namespace */
|
||||
.literal-block .nx { color: #a6e22e } /* Name.Other */
|
||||
.literal-block .py { color: #f8f8f2 } /* Name.Property */
|
||||
.literal-block .nt { color: #f92672 } /* Name.Tag */
|
||||
.literal-block .nv { color: #f8f8f2 } /* Name.Variable */
|
||||
.literal-block .ow { color: #f92672 } /* Operator.Word */
|
||||
.literal-block .w { color: #f8f8f2 } /* Text.Whitespace */
|
||||
.literal-block .mb { color: #ae81ff } /* Literal.Number.Bin */
|
||||
.literal-block .mf { color: #ae81ff } /* Literal.Number.Float */
|
||||
.literal-block .mh { color: #ae81ff } /* Literal.Number.Hex */
|
||||
.literal-block .mi { color: #ae81ff } /* Literal.Number.Integer */
|
||||
.literal-block .mo { color: #ae81ff } /* Literal.Number.Oct */
|
||||
.literal-block .sa { color: #e6db74 } /* Literal.String.Affix */
|
||||
.literal-block .sb { color: #e6db74 } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #e6db74 } /* Literal.String.Char */
|
||||
.literal-block .dl { color: #e6db74 } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #e6db74 } /* Literal.String.Doc */
|
||||
.literal-block .s2 { color: #e6db74 } /* Literal.String.Double */
|
||||
.literal-block .se { color: #ae81ff } /* Literal.String.Escape */
|
||||
.literal-block .sh { color: #e6db74 } /* Literal.String.Heredoc */
|
||||
.literal-block .si { color: #e6db74 } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #e6db74 } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #e6db74 } /* Literal.String.Regex */
|
||||
.literal-block .s1 { color: #e6db74 } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #e6db74 } /* Literal.String.Symbol */
|
||||
.literal-block .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
|
||||
.literal-block .fm { color: #a6e22e } /* Name.Function.Magic */
|
||||
.literal-block .vc { color: #f8f8f2 } /* Name.Variable.Class */
|
||||
.literal-block .vg { color: #f8f8f2 } /* Name.Variable.Global */
|
||||
.literal-block .vi { color: #f8f8f2 } /* Name.Variable.Instance */
|
||||
.literal-block .vm { color: #f8f8f2 } /* Name.Variable.Magic */
|
||||
.literal-block .il { color: #ae81ff } /* Literal.Number.Integer.Long */
|
1
docs/blog/theme/pygments/monokai.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.highlight .hll{background-color:#49483e}.highlight{background:#272822;color:#f8f8f2}.highlight .c{color:#75715e}.highlight .err{color:#960050;background-color:#1e0010}.highlight .k{color:#66d9ef}.highlight .l{color:#ae81ff}.highlight .n{color:#f8f8f2}.highlight .o{color:#f92672}.highlight .p{color:#f8f8f2}.highlight .c1,.highlight .ch,.highlight .cm,.highlight .cp,.highlight .cpf,.highlight .cs{color:#75715e}.highlight .gd{color:#f92672}.highlight .ge{font-style:italic}.highlight .gi{color:#a6e22e}.highlight .go{color:#66d9ef}.highlight .gp{color:#f92672}.highlight .gp,.highlight .gs{font-weight:700}.highlight .gu{color:#75715e}.highlight .kc,.highlight .kd{color:#66d9ef}.highlight .kn{color:#f92672}.highlight .kp,.highlight .kr,.highlight .kt{color:#66d9ef}.highlight .ld{color:#e6db74}.highlight .m{color:#ae81ff}.highlight .s{color:#e6db74}.highlight .na{color:#a6e22e}.highlight .nb{color:#f8f8f2}.highlight .nc{color:#a6e22e}.highlight .no{color:#66d9ef}.highlight .nd{color:#a6e22e}.highlight .ni{color:#f8f8f2}.highlight .ne,.highlight .nf{color:#a6e22e}.highlight .nl,.highlight .nn{color:#f8f8f2}.highlight .nx{color:#a6e22e}.highlight .py{color:#f8f8f2}.highlight .nt{color:#f92672}.highlight .nv{color:#f8f8f2}.highlight .ow{color:#f92672}.highlight .w{color:#f8f8f2}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#ae81ff}.highlight .dl,.highlight .s2,.highlight .sa,.highlight .sb,.highlight .sc,.highlight .sd{color:#e6db74}.highlight .se{color:#ae81ff}.highlight .s1,.highlight .sh,.highlight .si,.highlight .sr,.highlight .ss,.highlight .sx{color:#e6db74}.highlight .bp{color:#f8f8f2}.highlight .fm{color:#a6e22e}.highlight .vc,.highlight .vg,.highlight .vi,.highlight .vm{color:#f8f8f2}.highlight .il{color:#ae81ff}.literal-block .hll{background-color:#49483e}.literal-block{background:#272822;color:#f8f8f2}.literal-block .c{color:#75715e}.literal-block .err{color:#960050;background-color:#1e0010}.literal-block .k{color:#66d9ef}.literal-block .l{color:#ae81ff}.literal-block .n{color:#f8f8f2}.literal-block .o{color:#f92672}.literal-block .p{color:#f8f8f2}.literal-block .c1,.literal-block .ch,.literal-block .cm,.literal-block .cp,.literal-block .cpf,.literal-block .cs{color:#75715e}.literal-block .gd{color:#f92672}.literal-block .ge{font-style:italic}.literal-block .gi{color:#a6e22e}.literal-block .go{color:#66d9ef}.literal-block .gp{color:#f92672;font-weight:700}.literal-block .gs{font-weight:700}.literal-block .gu{color:#75715e}.literal-block .kc,.literal-block .kd{color:#66d9ef}.literal-block .kn{color:#f92672}.literal-block .kp,.literal-block .kr,.literal-block .kt{color:#66d9ef}.literal-block .ld{color:#e6db74}.literal-block .m{color:#ae81ff}.literal-block .s{color:#e6db74}.literal-block .na{color:#a6e22e}.literal-block .nb{color:#f8f8f2}.literal-block .nc{color:#a6e22e}.literal-block .no{color:#66d9ef}.literal-block .nd{color:#a6e22e}.literal-block .ni{color:#f8f8f2}.literal-block .ne,.literal-block .nf{color:#a6e22e}.literal-block .nl,.literal-block .nn{color:#f8f8f2}.literal-block .nx{color:#a6e22e}.literal-block .py{color:#f8f8f2}.literal-block .nt{color:#f92672}.literal-block .nv{color:#f8f8f2}.literal-block .ow{color:#f92672}.literal-block .w{color:#f8f8f2}.literal-block .mb,.literal-block .mf,.literal-block .mh,.literal-block .mi,.literal-block .mo{color:#ae81ff}.literal-block .dl,.literal-block .s2,.literal-block .sa,.literal-block .sb,.literal-block .sc,.literal-block .sd{color:#e6db74}.literal-block .se{color:#ae81ff}.literal-block .s1,.literal-block .sh,.literal-block .si,.literal-block .sr,.literal-block .ss,.literal-block .sx{color:#e6db74}.literal-block .bp{color:#f8f8f2}.literal-block .fm{color:#a6e22e}.literal-block .vc,.literal-block .vg,.literal-block .vi,.literal-block .vm{color:#f8f8f2}.literal-block .il{color:#ae81ff}
|
|
@ -1,138 +0,0 @@
|
|||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #ffffff; }
|
||||
.highlight .c { color: #666666; font-style: italic } /* Comment */
|
||||
.highlight .err { color: #FF0000; background-color: #FFAAAA } /* Error */
|
||||
.highlight .k { color: #228899; font-weight: bold } /* Keyword */
|
||||
.highlight .o { color: #333333 } /* Operator */
|
||||
.highlight .ch { color: #666666; font-style: italic } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #666666; font-style: italic } /* Comment.Multiline */
|
||||
.highlight .cp { color: #557799 } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #666666; font-style: italic } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #666666; font-style: italic } /* Comment.Single */
|
||||
.highlight .cs { color: #cc0000; font-weight: bold; font-style: italic } /* Comment.Special */
|
||||
.highlight .gd { color: #A00000 } /* Generic.Deleted */
|
||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||
.highlight .gr { color: #FF0000 } /* Generic.Error */
|
||||
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
||||
.highlight .gi { color: #00A000 } /* Generic.Inserted */
|
||||
.highlight .go { color: #888888 } /* Generic.Output */
|
||||
.highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
||||
.highlight .gt { color: #0044DD } /* Generic.Traceback */
|
||||
.highlight .kc { color: #228899; font-weight: bold } /* Keyword.Constant */
|
||||
.highlight .kd { color: #228899; font-weight: bold } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #228899; font-weight: bold } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #0088ff; font-weight: bold } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #228899; font-weight: bold } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #6666ff; font-weight: bold } /* Keyword.Type */
|
||||
.highlight .m { color: #6600EE; font-weight: bold } /* Literal.Number */
|
||||
.highlight .s { background-color: #e0e0ff } /* Literal.String */
|
||||
.highlight .na { color: #000077 } /* Name.Attribute */
|
||||
.highlight .nb { color: #007722 } /* Name.Builtin */
|
||||
.highlight .nc { color: #ee99ee; font-weight: bold } /* Name.Class */
|
||||
.highlight .no { color: #55eedd; font-weight: bold } /* Name.Constant */
|
||||
.highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */
|
||||
.highlight .ni { color: #880000 } /* Name.Entity */
|
||||
.highlight .ne { color: #FF0000; font-weight: bold } /* Name.Exception */
|
||||
.highlight .nf { color: #55eedd; font-weight: bold } /* Name.Function */
|
||||
.highlight .nl { color: #997700; font-weight: bold } /* Name.Label */
|
||||
.highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
|
||||
.highlight .nt { color: #007700 } /* Name.Tag */
|
||||
.highlight .nv { color: #003366 } /* Name.Variable */
|
||||
.highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
|
||||
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.highlight .mb { color: #6600EE; font-weight: bold } /* Literal.Number.Bin */
|
||||
.highlight .mf { color: #6600EE; font-weight: bold } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #005588; font-weight: bold } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #6666ff; font-weight: bold } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #4400EE; font-weight: bold } /* Literal.Number.Oct */
|
||||
.highlight .sa { background-color: #e0e0ff } /* Literal.String.Affix */
|
||||
.highlight .sb { background-color: #e0e0ff } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #8888FF } /* Literal.String.Char */
|
||||
.highlight .dl { background-color: #e0e0ff } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #DD4422 } /* Literal.String.Doc */
|
||||
.highlight .s2 { background-color: #e0e0ff } /* Literal.String.Double */
|
||||
.highlight .se { color: #666666; font-weight: bold; background-color: #e0e0ff } /* Literal.String.Escape */
|
||||
.highlight .sh { background-color: #e0e0ff } /* Literal.String.Heredoc */
|
||||
.highlight .si { background-color: #eeeeee } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #ff8888; background-color: #e0e0ff } /* Literal.String.Other */
|
||||
.highlight .sr { color: #000000; background-color: #e0e0ff } /* Literal.String.Regex */
|
||||
.highlight .s1 { background-color: #e0e0ff } /* Literal.String.Single */
|
||||
.highlight .ss { color: #ffcc88 } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #007722 } /* Name.Builtin.Pseudo */
|
||||
.highlight .fm { color: #55eedd; font-weight: bold } /* Name.Function.Magic */
|
||||
.highlight .vc { color: #ccccff } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #ff8844 } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #aaaaff } /* Name.Variable.Instance */
|
||||
.highlight .vm { color: #003366 } /* Name.Variable.Magic */
|
||||
.highlight .il { color: #6666ff; font-weight: bold } /* Literal.Number.Integer.Long */
|
||||
.literal-block .hll { background-color: #ffffcc }
|
||||
.literal-block { background: #ffffff; }
|
||||
.literal-block .c { color: #666666; font-style: italic } /* Comment */
|
||||
.literal-block .err { color: #FF0000; background-color: #FFAAAA } /* Error */
|
||||
.literal-block .k { color: #228899; font-weight: bold } /* Keyword */
|
||||
.literal-block .o { color: #333333 } /* Operator */
|
||||
.literal-block .ch { color: #666666; font-style: italic } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #666666; font-style: italic } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #557799 } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #666666; font-style: italic } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #666666; font-style: italic } /* Comment.Single */
|
||||
.literal-block .cs { color: #cc0000; font-weight: bold; font-style: italic } /* Comment.Special */
|
||||
.literal-block .gd { color: #A00000 } /* Generic.Deleted */
|
||||
.literal-block .ge { font-style: italic } /* Generic.Emph */
|
||||
.literal-block .gr { color: #FF0000 } /* Generic.Error */
|
||||
.literal-block .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
||||
.literal-block .gi { color: #00A000 } /* Generic.Inserted */
|
||||
.literal-block .go { color: #888888 } /* Generic.Output */
|
||||
.literal-block .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
|
||||
.literal-block .gs { font-weight: bold } /* Generic.Strong */
|
||||
.literal-block .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
||||
.literal-block .gt { color: #0044DD } /* Generic.Traceback */
|
||||
.literal-block .kc { color: #228899; font-weight: bold } /* Keyword.Constant */
|
||||
.literal-block .kd { color: #228899; font-weight: bold } /* Keyword.Declaration */
|
||||
.literal-block .kn { color: #228899; font-weight: bold } /* Keyword.Namespace */
|
||||
.literal-block .kp { color: #0088ff; font-weight: bold } /* Keyword.Pseudo */
|
||||
.literal-block .kr { color: #228899; font-weight: bold } /* Keyword.Reserved */
|
||||
.literal-block .kt { color: #6666ff; font-weight: bold } /* Keyword.Type */
|
||||
.literal-block .m { color: #6600EE; font-weight: bold } /* Literal.Number */
|
||||
.literal-block .s { background-color: #e0e0ff } /* Literal.String */
|
||||
.literal-block .na { color: #000077 } /* Name.Attribute */
|
||||
.literal-block .nb { color: #007722 } /* Name.Builtin */
|
||||
.literal-block .nc { color: #ee99ee; font-weight: bold } /* Name.Class */
|
||||
.literal-block .no { color: #55eedd; font-weight: bold } /* Name.Constant */
|
||||
.literal-block .nd { color: #555555; font-weight: bold } /* Name.Decorator */
|
||||
.literal-block .ni { color: #880000 } /* Name.Entity */
|
||||
.literal-block .ne { color: #FF0000; font-weight: bold } /* Name.Exception */
|
||||
.literal-block .nf { color: #55eedd; font-weight: bold } /* Name.Function */
|
||||
.literal-block .nl { color: #997700; font-weight: bold } /* Name.Label */
|
||||
.literal-block .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
|
||||
.literal-block .nt { color: #007700 } /* Name.Tag */
|
||||
.literal-block .nv { color: #003366 } /* Name.Variable */
|
||||
.literal-block .ow { color: #000000; font-weight: bold } /* Operator.Word */
|
||||
.literal-block .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.literal-block .mb { color: #6600EE; font-weight: bold } /* Literal.Number.Bin */
|
||||
.literal-block .mf { color: #6600EE; font-weight: bold } /* Literal.Number.Float */
|
||||
.literal-block .mh { color: #005588; font-weight: bold } /* Literal.Number.Hex */
|
||||
.literal-block .mi { color: #6666ff; font-weight: bold } /* Literal.Number.Integer */
|
||||
.literal-block .mo { color: #4400EE; font-weight: bold } /* Literal.Number.Oct */
|
||||
.literal-block .sa { background-color: #e0e0ff } /* Literal.String.Affix */
|
||||
.literal-block .sb { background-color: #e0e0ff } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #8888FF } /* Literal.String.Char */
|
||||
.literal-block .dl { background-color: #e0e0ff } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #DD4422 } /* Literal.String.Doc */
|
||||
.literal-block .s2 { background-color: #e0e0ff } /* Literal.String.Double */
|
||||
.literal-block .se { color: #666666; font-weight: bold; background-color: #e0e0ff } /* Literal.String.Escape */
|
||||
.literal-block .sh { background-color: #e0e0ff } /* Literal.String.Heredoc */
|
||||
.literal-block .si { background-color: #eeeeee } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #ff8888; background-color: #e0e0ff } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #000000; background-color: #e0e0ff } /* Literal.String.Regex */
|
||||
.literal-block .s1 { background-color: #e0e0ff } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #ffcc88 } /* Literal.String.Symbol */
|
||||
.literal-block .bp { color: #007722 } /* Name.Builtin.Pseudo */
|
||||
.literal-block .fm { color: #55eedd; font-weight: bold } /* Name.Function.Magic */
|
||||
.literal-block .vc { color: #ccccff } /* Name.Variable.Class */
|
||||
.literal-block .vg { color: #ff8844 } /* Name.Variable.Global */
|
||||
.literal-block .vi { color: #aaaaff } /* Name.Variable.Instance */
|
||||
.literal-block .vm { color: #003366 } /* Name.Variable.Magic */
|
||||
.literal-block .il { color: #6666ff; font-weight: bold } /* Literal.Number.Integer.Long */
|
1
docs/blog/theme/pygments/murphy.min.css
vendored
|
@ -1,156 +0,0 @@
|
|||
.highlight .hll { background-color: #404040 }
|
||||
.highlight { background: #202020; color: #d0d0d0 }
|
||||
.highlight .c { color: #999999; font-style: italic } /* Comment */
|
||||
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
||||
.highlight .esc { color: #d0d0d0 } /* Escape */
|
||||
.highlight .g { color: #d0d0d0 } /* Generic */
|
||||
.highlight .k { color: #6ab825; font-weight: bold } /* Keyword */
|
||||
.highlight .l { color: #d0d0d0 } /* Literal */
|
||||
.highlight .n { color: #d0d0d0 } /* Name */
|
||||
.highlight .o { color: #d0d0d0 } /* Operator */
|
||||
.highlight .x { color: #d0d0d0 } /* Other */
|
||||
.highlight .p { color: #d0d0d0 } /* Punctuation */
|
||||
.highlight .ch { color: #999999; font-style: italic } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #999999; font-style: italic } /* Comment.Multiline */
|
||||
.highlight .cp { color: #cd2828; font-weight: bold } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #999999; font-style: italic } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #999999; font-style: italic } /* Comment.Single */
|
||||
.highlight .cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */
|
||||
.highlight .gd { color: #d22323 } /* Generic.Deleted */
|
||||
.highlight .ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */
|
||||
.highlight .gr { color: #d22323 } /* Generic.Error */
|
||||
.highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
|
||||
.highlight .gi { color: #589819 } /* Generic.Inserted */
|
||||
.highlight .go { color: #cccccc } /* Generic.Output */
|
||||
.highlight .gp { color: #aaaaaa } /* Generic.Prompt */
|
||||
.highlight .gs { color: #d0d0d0; font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { color: #ffffff; text-decoration: underline } /* Generic.Subheading */
|
||||
.highlight .gt { color: #d22323 } /* Generic.Traceback */
|
||||
.highlight .kc { color: #6ab825; font-weight: bold } /* Keyword.Constant */
|
||||
.highlight .kd { color: #6ab825; font-weight: bold } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #6ab825; font-weight: bold } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #6ab825 } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #6ab825; font-weight: bold } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #6ab825; font-weight: bold } /* Keyword.Type */
|
||||
.highlight .ld { color: #d0d0d0 } /* Literal.Date */
|
||||
.highlight .m { color: #3677a9 } /* Literal.Number */
|
||||
.highlight .s { color: #ed9d13 } /* Literal.String */
|
||||
.highlight .na { color: #bbbbbb } /* Name.Attribute */
|
||||
.highlight .nb { color: #24909d } /* Name.Builtin */
|
||||
.highlight .nc { color: #447fcf; text-decoration: underline } /* Name.Class */
|
||||
.highlight .no { color: #40ffff } /* Name.Constant */
|
||||
.highlight .nd { color: #ffa500 } /* Name.Decorator */
|
||||
.highlight .ni { color: #d0d0d0 } /* Name.Entity */
|
||||
.highlight .ne { color: #bbbbbb } /* Name.Exception */
|
||||
.highlight .nf { color: #447fcf } /* Name.Function */
|
||||
.highlight .nl { color: #d0d0d0 } /* Name.Label */
|
||||
.highlight .nn { color: #447fcf; text-decoration: underline } /* Name.Namespace */
|
||||
.highlight .nx { color: #d0d0d0 } /* Name.Other */
|
||||
.highlight .py { color: #d0d0d0 } /* Name.Property */
|
||||
.highlight .nt { color: #6ab825; font-weight: bold } /* Name.Tag */
|
||||
.highlight .nv { color: #40ffff } /* Name.Variable */
|
||||
.highlight .ow { color: #6ab825; font-weight: bold } /* Operator.Word */
|
||||
.highlight .w { color: #666666 } /* Text.Whitespace */
|
||||
.highlight .mb { color: #3677a9 } /* Literal.Number.Bin */
|
||||
.highlight .mf { color: #3677a9 } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #3677a9 } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #3677a9 } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #3677a9 } /* Literal.Number.Oct */
|
||||
.highlight .sa { color: #ed9d13 } /* Literal.String.Affix */
|
||||
.highlight .sb { color: #ed9d13 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #ed9d13 } /* Literal.String.Char */
|
||||
.highlight .dl { color: #ed9d13 } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #ed9d13 } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #ed9d13 } /* Literal.String.Double */
|
||||
.highlight .se { color: #ed9d13 } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #ed9d13 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #ed9d13 } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #ffa500 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #ed9d13 } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #ed9d13 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #ed9d13 } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #24909d } /* Name.Builtin.Pseudo */
|
||||
.highlight .fm { color: #447fcf } /* Name.Function.Magic */
|
||||
.highlight .vc { color: #40ffff } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #40ffff } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #40ffff } /* Name.Variable.Instance */
|
||||
.highlight .vm { color: #40ffff } /* Name.Variable.Magic */
|
||||
.highlight .il { color: #3677a9 } /* Literal.Number.Integer.Long */
|
||||
.literal-block .hll { background-color: #404040 }
|
||||
.literal-block { background: #202020; color: #d0d0d0 }
|
||||
.literal-block .c { color: #999999; font-style: italic } /* Comment */
|
||||
.literal-block .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
||||
.literal-block .esc { color: #d0d0d0 } /* Escape */
|
||||
.literal-block .g { color: #d0d0d0 } /* Generic */
|
||||
.literal-block .k { color: #6ab825; font-weight: bold } /* Keyword */
|
||||
.literal-block .l { color: #d0d0d0 } /* Literal */
|
||||
.literal-block .n { color: #d0d0d0 } /* Name */
|
||||
.literal-block .o { color: #d0d0d0 } /* Operator */
|
||||
.literal-block .x { color: #d0d0d0 } /* Other */
|
||||
.literal-block .p { color: #d0d0d0 } /* Punctuation */
|
||||
.literal-block .ch { color: #999999; font-style: italic } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #999999; font-style: italic } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #cd2828; font-weight: bold } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #999999; font-style: italic } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #999999; font-style: italic } /* Comment.Single */
|
||||
.literal-block .cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */
|
||||
.literal-block .gd { color: #d22323 } /* Generic.Deleted */
|
||||
.literal-block .ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */
|
||||
.literal-block .gr { color: #d22323 } /* Generic.Error */
|
||||
.literal-block .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
|
||||
.literal-block .gi { color: #589819 } /* Generic.Inserted */
|
||||
.literal-block .go { color: #cccccc } /* Generic.Output */
|
||||
.literal-block .gp { color: #aaaaaa } /* Generic.Prompt */
|
||||
.literal-block .gs { color: #d0d0d0; font-weight: bold } /* Generic.Strong */
|
||||
.literal-block .gu { color: #ffffff; text-decoration: underline } /* Generic.Subheading */
|
||||
.literal-block .gt { color: #d22323 } /* Generic.Traceback */
|
||||
.literal-block .kc { color: #6ab825; font-weight: bold } /* Keyword.Constant */
|
||||
.literal-block .kd { color: #6ab825; font-weight: bold } /* Keyword.Declaration */
|
||||
.literal-block .kn { color: #6ab825; font-weight: bold } /* Keyword.Namespace */
|
||||
.literal-block .kp { color: #6ab825 } /* Keyword.Pseudo */
|
||||
.literal-block .kr { color: #6ab825; font-weight: bold } /* Keyword.Reserved */
|
||||
.literal-block .kt { color: #6ab825; font-weight: bold } /* Keyword.Type */
|
||||
.literal-block .ld { color: #d0d0d0 } /* Literal.Date */
|
||||
.literal-block .m { color: #3677a9 } /* Literal.Number */
|
||||
.literal-block .s { color: #ed9d13 } /* Literal.String */
|
||||
.literal-block .na { color: #bbbbbb } /* Name.Attribute */
|
||||
.literal-block .nb { color: #24909d } /* Name.Builtin */
|
||||
.literal-block .nc { color: #447fcf; text-decoration: underline } /* Name.Class */
|
||||
.literal-block .no { color: #40ffff } /* Name.Constant */
|
||||
.literal-block .nd { color: #ffa500 } /* Name.Decorator */
|
||||
.literal-block .ni { color: #d0d0d0 } /* Name.Entity */
|
||||
.literal-block .ne { color: #bbbbbb } /* Name.Exception */
|
||||
.literal-block .nf { color: #447fcf } /* Name.Function */
|
||||
.literal-block .nl { color: #d0d0d0 } /* Name.Label */
|
||||
.literal-block .nn { color: #447fcf; text-decoration: underline } /* Name.Namespace */
|
||||
.literal-block .nx { color: #d0d0d0 } /* Name.Other */
|
||||
.literal-block .py { color: #d0d0d0 } /* Name.Property */
|
||||
.literal-block .nt { color: #6ab825; font-weight: bold } /* Name.Tag */
|
||||
.literal-block .nv { color: #40ffff } /* Name.Variable */
|
||||
.literal-block .ow { color: #6ab825; font-weight: bold } /* Operator.Word */
|
||||
.literal-block .w { color: #666666 } /* Text.Whitespace */
|
||||
.literal-block .mb { color: #3677a9 } /* Literal.Number.Bin */
|
||||
.literal-block .mf { color: #3677a9 } /* Literal.Number.Float */
|
||||
.literal-block .mh { color: #3677a9 } /* Literal.Number.Hex */
|
||||
.literal-block .mi { color: #3677a9 } /* Literal.Number.Integer */
|
||||
.literal-block .mo { color: #3677a9 } /* Literal.Number.Oct */
|
||||
.literal-block .sa { color: #ed9d13 } /* Literal.String.Affix */
|
||||
.literal-block .sb { color: #ed9d13 } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #ed9d13 } /* Literal.String.Char */
|
||||
.literal-block .dl { color: #ed9d13 } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #ed9d13 } /* Literal.String.Doc */
|
||||
.literal-block .s2 { color: #ed9d13 } /* Literal.String.Double */
|
||||
.literal-block .se { color: #ed9d13 } /* Literal.String.Escape */
|
||||
.literal-block .sh { color: #ed9d13 } /* Literal.String.Heredoc */
|
||||
.literal-block .si { color: #ed9d13 } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #ffa500 } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #ed9d13 } /* Literal.String.Regex */
|
||||
.literal-block .s1 { color: #ed9d13 } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #ed9d13 } /* Literal.String.Symbol */
|
||||
.literal-block .bp { color: #24909d } /* Name.Builtin.Pseudo */
|
||||
.literal-block .fm { color: #447fcf } /* Name.Function.Magic */
|
||||
.literal-block .vc { color: #40ffff } /* Name.Variable.Class */
|
||||
.literal-block .vg { color: #40ffff } /* Name.Variable.Global */
|
||||
.literal-block .vi { color: #40ffff } /* Name.Variable.Instance */
|
||||
.literal-block .vm { color: #40ffff } /* Name.Variable.Magic */
|
||||
.literal-block .il { color: #3677a9 } /* Literal.Number.Integer.Long */
|
1
docs/blog/theme/pygments/native.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.highlight .hll{background-color:#404040}.highlight{background:#202020;color:#d0d0d0}.highlight .c{color:#999;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .esc,.highlight .g{color:#d0d0d0}.highlight .k{color:#6ab825;font-weight:700}.highlight .l,.highlight .n,.highlight .o,.highlight .p,.highlight .x{color:#d0d0d0}.highlight .ch,.highlight .cm{color:#999;font-style:italic}.highlight .cp{color:#cd2828;font-weight:700}.highlight .c1,.highlight .cpf{color:#999;font-style:italic}.highlight .cs{color:#e50808;font-weight:700;background-color:#520000}.highlight .gd{color:#d22323}.highlight .ge{color:#d0d0d0;font-style:italic}.highlight .gr{color:#d22323}.highlight .gh{color:#fff;font-weight:700}.highlight .gi{color:#589819}.highlight .go{color:#ccc}.highlight .gp{color:#aaa}.highlight .gs{color:#d0d0d0;font-weight:700}.highlight .gu{color:#fff;text-decoration:underline}.highlight .gt{color:#d22323}.highlight .kc,.highlight .kd,.highlight .kn{color:#6ab825;font-weight:700}.highlight .kp{color:#6ab825}.highlight .kr,.highlight .kt{color:#6ab825;font-weight:700}.highlight .ld{color:#d0d0d0}.highlight .m{color:#3677a9}.highlight .s{color:#ed9d13}.highlight .na{color:#bbb}.highlight .nb{color:#24909d}.highlight .nc{color:#447fcf;text-decoration:underline}.highlight .no{color:#40ffff}.highlight .nd{color:orange}.highlight .ni{color:#d0d0d0}.highlight .ne{color:#bbb}.highlight .nf{color:#447fcf}.highlight .nl{color:#d0d0d0}.highlight .nn{color:#447fcf;text-decoration:underline}.highlight .nx,.highlight .py{color:#d0d0d0}.highlight .nt{color:#6ab825;font-weight:700}.highlight .nv{color:#40ffff}.highlight .ow{color:#6ab825;font-weight:700}.highlight .w{color:#666}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#3677a9}.highlight .dl,.highlight .s2,.highlight .sa,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si{color:#ed9d13}.highlight .sx{color:orange}.highlight .s1,.highlight .sr,.highlight .ss{color:#ed9d13}.highlight .bp{color:#24909d}.highlight .fm{color:#447fcf}.highlight .vc,.highlight .vg,.highlight .vi,.highlight .vm{color:#40ffff}.highlight .il{color:#3677a9}.literal-block .hll{background-color:#404040}.literal-block{background:#202020;color:#d0d0d0}.literal-block .c{color:#999;font-style:italic}.literal-block .err{color:#a61717;background-color:#e3d2d2}.literal-block .esc,.literal-block .g{color:#d0d0d0}.literal-block .k{color:#6ab825;font-weight:700}.literal-block .l,.literal-block .n,.literal-block .o,.literal-block .p,.literal-block .x{color:#d0d0d0}.literal-block .ch,.literal-block .cm{color:#999;font-style:italic}.literal-block .cp{color:#cd2828;font-weight:700}.literal-block .c1,.literal-block .cpf{color:#999;font-style:italic}.literal-block .cs{color:#e50808;font-weight:700;background-color:#520000}.literal-block .gd{color:#d22323}.literal-block .ge{color:#d0d0d0;font-style:italic}.literal-block .gr{color:#d22323}.literal-block .gh{color:#fff;font-weight:700}.literal-block .gi{color:#589819}.literal-block .go{color:#ccc}.literal-block .gp{color:#aaa}.literal-block .gs{color:#d0d0d0;font-weight:700}.literal-block .gu{color:#fff;text-decoration:underline}.literal-block .gt{color:#d22323}.literal-block .kc,.literal-block .kd,.literal-block .kn{color:#6ab825;font-weight:700}.literal-block .kp{color:#6ab825}.literal-block .kr,.literal-block .kt{color:#6ab825;font-weight:700}.literal-block .ld{color:#d0d0d0}.literal-block .m{color:#3677a9}.literal-block .s{color:#ed9d13}.literal-block .na{color:#bbb}.literal-block .nb{color:#24909d}.literal-block .nc{color:#447fcf;text-decoration:underline}.literal-block .no{color:#40ffff}.literal-block .nd{color:orange}.literal-block .ni{color:#d0d0d0}.literal-block .ne{color:#bbb}.literal-block .nf{color:#447fcf}.literal-block .nl{color:#d0d0d0}.literal-block .nn{color:#447fcf;text-decoration:underline}.literal-block .nx,.literal-block .py{color:#d0d0d0}.literal-block .nt{color:#6ab825;font-weight:700}.literal-block .nv{color:#40ffff}.literal-block .ow{color:#6ab825;font-weight:700}.literal-block .w{color:#666}.literal-block .mb,.literal-block .mf,.literal-block .mh,.literal-block .mi,.literal-block .mo{color:#3677a9}.literal-block .dl,.literal-block .s2,.literal-block .sa,.literal-block .sb,.literal-block .sc,.literal-block .sd,.literal-block .se,.literal-block .sh,.literal-block .si{color:#ed9d13}.literal-block .sx{color:orange}.literal-block .s1,.literal-block .sr,.literal-block .ss{color:#ed9d13}.literal-block .bp{color:#24909d}.literal-block .fm{color:#447fcf}.literal-block .vc,.literal-block .vg,.literal-block .vi,.literal-block .vm{color:#40ffff}.literal-block .il{color:#3677a9}
|
|
@ -1,144 +0,0 @@
|
|||
.highlight .hll { background-color: #4f424c }
|
||||
.highlight { background: #2f1e2e; color: #e7e9db }
|
||||
.highlight .c { color: #776e71 } /* Comment */
|
||||
.highlight .err { color: #ef6155 } /* Error */
|
||||
.highlight .k { color: #815ba4 } /* Keyword */
|
||||
.highlight .l { color: #f99b15 } /* Literal */
|
||||
.highlight .n { color: #e7e9db } /* Name */
|
||||
.highlight .o { color: #5bc4bf } /* Operator */
|
||||
.highlight .p { color: #e7e9db } /* Punctuation */
|
||||
.highlight .ch { color: #776e71 } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #776e71 } /* Comment.Multiline */
|
||||
.highlight .cp { color: #776e71 } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #776e71 } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #776e71 } /* Comment.Single */
|
||||
.highlight .cs { color: #776e71 } /* Comment.Special */
|
||||
.highlight .gd { color: #ef6155 } /* Generic.Deleted */
|
||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||
.highlight .gh { color: #e7e9db; font-weight: bold } /* Generic.Heading */
|
||||
.highlight .gi { color: #48b685 } /* Generic.Inserted */
|
||||
.highlight .gp { color: #776e71; font-weight: bold } /* Generic.Prompt */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { color: #5bc4bf; font-weight: bold } /* Generic.Subheading */
|
||||
.highlight .kc { color: #815ba4 } /* Keyword.Constant */
|
||||
.highlight .kd { color: #815ba4 } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #5bc4bf } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #815ba4 } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #815ba4 } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #fec418 } /* Keyword.Type */
|
||||
.highlight .ld { color: #48b685 } /* Literal.Date */
|
||||
.highlight .m { color: #f99b15 } /* Literal.Number */
|
||||
.highlight .s { color: #48b685 } /* Literal.String */
|
||||
.highlight .na { color: #06b6ef } /* Name.Attribute */
|
||||
.highlight .nb { color: #e7e9db } /* Name.Builtin */
|
||||
.highlight .nc { color: #fec418 } /* Name.Class */
|
||||
.highlight .no { color: #ef6155 } /* Name.Constant */
|
||||
.highlight .nd { color: #5bc4bf } /* Name.Decorator */
|
||||
.highlight .ni { color: #e7e9db } /* Name.Entity */
|
||||
.highlight .ne { color: #ef6155 } /* Name.Exception */
|
||||
.highlight .nf { color: #06b6ef } /* Name.Function */
|
||||
.highlight .nl { color: #e7e9db } /* Name.Label */
|
||||
.highlight .nn { color: #fec418 } /* Name.Namespace */
|
||||
.highlight .nx { color: #06b6ef } /* Name.Other */
|
||||
.highlight .py { color: #e7e9db } /* Name.Property */
|
||||
.highlight .nt { color: #5bc4bf } /* Name.Tag */
|
||||
.highlight .nv { color: #ef6155 } /* Name.Variable */
|
||||
.highlight .ow { color: #5bc4bf } /* Operator.Word */
|
||||
.highlight .w { color: #e7e9db } /* Text.Whitespace */
|
||||
.highlight .mb { color: #f99b15 } /* Literal.Number.Bin */
|
||||
.highlight .mf { color: #f99b15 } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #f99b15 } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #f99b15 } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #f99b15 } /* Literal.Number.Oct */
|
||||
.highlight .sa { color: #48b685 } /* Literal.String.Affix */
|
||||
.highlight .sb { color: #48b685 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #e7e9db } /* Literal.String.Char */
|
||||
.highlight .dl { color: #48b685 } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #776e71 } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #48b685 } /* Literal.String.Double */
|
||||
.highlight .se { color: #f99b15 } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #48b685 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #f99b15 } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #48b685 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #48b685 } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #48b685 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #48b685 } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #e7e9db } /* Name.Builtin.Pseudo */
|
||||
.highlight .fm { color: #06b6ef } /* Name.Function.Magic */
|
||||
.highlight .vc { color: #ef6155 } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #ef6155 } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #ef6155 } /* Name.Variable.Instance */
|
||||
.highlight .vm { color: #ef6155 } /* Name.Variable.Magic */
|
||||
.highlight .il { color: #f99b15 } /* Literal.Number.Integer.Long */
|
||||
.literal-block .hll { background-color: #4f424c }
|
||||
.literal-block { background: #2f1e2e; color: #e7e9db }
|
||||
.literal-block .c { color: #776e71 } /* Comment */
|
||||
.literal-block .err { color: #ef6155 } /* Error */
|
||||
.literal-block .k { color: #815ba4 } /* Keyword */
|
||||
.literal-block .l { color: #f99b15 } /* Literal */
|
||||
.literal-block .n { color: #e7e9db } /* Name */
|
||||
.literal-block .o { color: #5bc4bf } /* Operator */
|
||||
.literal-block .p { color: #e7e9db } /* Punctuation */
|
||||
.literal-block .ch { color: #776e71 } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #776e71 } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #776e71 } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #776e71 } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #776e71 } /* Comment.Single */
|
||||
.literal-block .cs { color: #776e71 } /* Comment.Special */
|
||||
.literal-block .gd { color: #ef6155 } /* Generic.Deleted */
|
||||
.literal-block .ge { font-style: italic } /* Generic.Emph */
|
||||
.literal-block .gh { color: #e7e9db; font-weight: bold } /* Generic.Heading */
|
||||
.literal-block .gi { color: #48b685 } /* Generic.Inserted */
|
||||
.literal-block .gp { color: #776e71; font-weight: bold } /* Generic.Prompt */
|
||||
.literal-block .gs { font-weight: bold } /* Generic.Strong */
|
||||
.literal-block .gu { color: #5bc4bf; font-weight: bold } /* Generic.Subheading */
|
||||
.literal-block .kc { color: #815ba4 } /* Keyword.Constant */
|
||||
.literal-block .kd { color: #815ba4 } /* Keyword.Declaration */
|
||||
.literal-block .kn { color: #5bc4bf } /* Keyword.Namespace */
|
||||
.literal-block .kp { color: #815ba4 } /* Keyword.Pseudo */
|
||||
.literal-block .kr { color: #815ba4 } /* Keyword.Reserved */
|
||||
.literal-block .kt { color: #fec418 } /* Keyword.Type */
|
||||
.literal-block .ld { color: #48b685 } /* Literal.Date */
|
||||
.literal-block .m { color: #f99b15 } /* Literal.Number */
|
||||
.literal-block .s { color: #48b685 } /* Literal.String */
|
||||
.literal-block .na { color: #06b6ef } /* Name.Attribute */
|
||||
.literal-block .nb { color: #e7e9db } /* Name.Builtin */
|
||||
.literal-block .nc { color: #fec418 } /* Name.Class */
|
||||
.literal-block .no { color: #ef6155 } /* Name.Constant */
|
||||
.literal-block .nd { color: #5bc4bf } /* Name.Decorator */
|
||||
.literal-block .ni { color: #e7e9db } /* Name.Entity */
|
||||
.literal-block .ne { color: #ef6155 } /* Name.Exception */
|
||||
.literal-block .nf { color: #06b6ef } /* Name.Function */
|
||||
.literal-block .nl { color: #e7e9db } /* Name.Label */
|
||||
.literal-block .nn { color: #fec418 } /* Name.Namespace */
|
||||
.literal-block .nx { color: #06b6ef } /* Name.Other */
|
||||
.literal-block .py { color: #e7e9db } /* Name.Property */
|
||||
.literal-block .nt { color: #5bc4bf } /* Name.Tag */
|
||||
.literal-block .nv { color: #ef6155 } /* Name.Variable */
|
||||
.literal-block .ow { color: #5bc4bf } /* Operator.Word */
|
||||
.literal-block .w { color: #e7e9db } /* Text.Whitespace */
|
||||
.literal-block .mb { color: #f99b15 } /* Literal.Number.Bin */
|
||||
.literal-block .mf { color: #f99b15 } /* Literal.Number.Float */
|
||||
.literal-block .mh { color: #f99b15 } /* Literal.Number.Hex */
|
||||
.literal-block .mi { color: #f99b15 } /* Literal.Number.Integer */
|
||||
.literal-block .mo { color: #f99b15 } /* Literal.Number.Oct */
|
||||
.literal-block .sa { color: #48b685 } /* Literal.String.Affix */
|
||||
.literal-block .sb { color: #48b685 } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #e7e9db } /* Literal.String.Char */
|
||||
.literal-block .dl { color: #48b685 } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #776e71 } /* Literal.String.Doc */
|
||||
.literal-block .s2 { color: #48b685 } /* Literal.String.Double */
|
||||
.literal-block .se { color: #f99b15 } /* Literal.String.Escape */
|
||||
.literal-block .sh { color: #48b685 } /* Literal.String.Heredoc */
|
||||
.literal-block .si { color: #f99b15 } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #48b685 } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #48b685 } /* Literal.String.Regex */
|
||||
.literal-block .s1 { color: #48b685 } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #48b685 } /* Literal.String.Symbol */
|
||||
.literal-block .bp { color: #e7e9db } /* Name.Builtin.Pseudo */
|
||||
.literal-block .fm { color: #06b6ef } /* Name.Function.Magic */
|
||||
.literal-block .vc { color: #ef6155 } /* Name.Variable.Class */
|
||||
.literal-block .vg { color: #ef6155 } /* Name.Variable.Global */
|
||||
.literal-block .vi { color: #ef6155 } /* Name.Variable.Instance */
|
||||
.literal-block .vm { color: #ef6155 } /* Name.Variable.Magic */
|
||||
.literal-block .il { color: #f99b15 } /* Literal.Number.Integer.Long */
|
|
@ -1 +0,0 @@
|
|||
.highlight .hll{background-color:#4f424c}.highlight{background:#2f1e2e;color:#e7e9db}.highlight .c{color:#776e71}.highlight .err{color:#ef6155}.highlight .k{color:#815ba4}.highlight .l{color:#f99b15}.highlight .n{color:#e7e9db}.highlight .o{color:#5bc4bf}.highlight .p{color:#e7e9db}.highlight .c1,.highlight .ch,.highlight .cm,.highlight .cp,.highlight .cpf,.highlight .cs{color:#776e71}.highlight .gd{color:#ef6155}.highlight .ge{font-style:italic}.highlight .gh{color:#e7e9db;font-weight:700}.highlight .gi{color:#48b685}.highlight .gp{color:#776e71}.highlight .gp,.highlight .gs,.highlight .gu{font-weight:700}.highlight .gu{color:#5bc4bf}.highlight .kc,.highlight .kd{color:#815ba4}.highlight .kn{color:#5bc4bf}.highlight .kp,.highlight .kr{color:#815ba4}.highlight .kt{color:#fec418}.highlight .ld{color:#48b685}.highlight .m{color:#f99b15}.highlight .s{color:#48b685}.highlight .na{color:#06b6ef}.highlight .nb{color:#e7e9db}.highlight .nc{color:#fec418}.highlight .no{color:#ef6155}.highlight .nd{color:#5bc4bf}.highlight .ni{color:#e7e9db}.highlight .ne{color:#ef6155}.highlight .nf{color:#06b6ef}.highlight .nl{color:#e7e9db}.highlight .nn{color:#fec418}.highlight .nx{color:#06b6ef}.highlight .py{color:#e7e9db}.highlight .nt{color:#5bc4bf}.highlight .nv{color:#ef6155}.highlight .ow{color:#5bc4bf}.highlight .w{color:#e7e9db}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#f99b15}.highlight .sa,.highlight .sb{color:#48b685}.highlight .sc{color:#e7e9db}.highlight .dl{color:#48b685}.highlight .sd{color:#776e71}.highlight .s2{color:#48b685}.highlight .se{color:#f99b15}.highlight .sh{color:#48b685}.highlight .si{color:#f99b15}.highlight .s1,.highlight .sr,.highlight .ss,.highlight .sx{color:#48b685}.highlight .bp{color:#e7e9db}.highlight .fm{color:#06b6ef}.highlight .vc,.highlight .vg,.highlight .vi,.highlight .vm{color:#ef6155}.highlight .il{color:#f99b15}.literal-block .hll{background-color:#4f424c}.literal-block{background:#2f1e2e;color:#e7e9db}.literal-block .c{color:#776e71}.literal-block .err{color:#ef6155}.literal-block .k{color:#815ba4}.literal-block .l{color:#f99b15}.literal-block .n{color:#e7e9db}.literal-block .o{color:#5bc4bf}.literal-block .p{color:#e7e9db}.literal-block .c1,.literal-block .ch,.literal-block .cm,.literal-block .cp,.literal-block .cpf,.literal-block .cs{color:#776e71}.literal-block .gd{color:#ef6155}.literal-block .ge{font-style:italic}.literal-block .gh{color:#e7e9db;font-weight:700}.literal-block .gi{color:#48b685}.literal-block .gp{color:#776e71;font-weight:700}.literal-block .gs{font-weight:700}.literal-block .gu{color:#5bc4bf;font-weight:700}.literal-block .kc,.literal-block .kd{color:#815ba4}.literal-block .kn{color:#5bc4bf}.literal-block .kp,.literal-block .kr{color:#815ba4}.literal-block .kt{color:#fec418}.literal-block .ld{color:#48b685}.literal-block .m{color:#f99b15}.literal-block .s{color:#48b685}.literal-block .na{color:#06b6ef}.literal-block .nb{color:#e7e9db}.literal-block .nc{color:#fec418}.literal-block .no{color:#ef6155}.literal-block .nd{color:#5bc4bf}.literal-block .ni{color:#e7e9db}.literal-block .ne{color:#ef6155}.literal-block .nf{color:#06b6ef}.literal-block .nl{color:#e7e9db}.literal-block .nn{color:#fec418}.literal-block .nx{color:#06b6ef}.literal-block .py{color:#e7e9db}.literal-block .nt{color:#5bc4bf}.literal-block .nv{color:#ef6155}.literal-block .ow{color:#5bc4bf}.literal-block .w{color:#e7e9db}.literal-block .mb,.literal-block .mf,.literal-block .mh,.literal-block .mi,.literal-block .mo{color:#f99b15}.literal-block .sa,.literal-block .sb{color:#48b685}.literal-block .sc{color:#e7e9db}.literal-block .dl{color:#48b685}.literal-block .sd{color:#776e71}.literal-block .s2{color:#48b685}.literal-block .se{color:#f99b15}.literal-block .sh{color:#48b685}.literal-block .si{color:#f99b15}.literal-block .s1,.literal-block .sr,.literal-block .ss,.literal-block .sx{color:#48b685}.literal-block .bp{color:#e7e9db}.literal-block .fm{color:#06b6ef}.literal-block .vc,.literal-block .vg,.literal-block .vi,.literal-block .vm{color:#ef6155}.literal-block .il{color:#f99b15}
|
|
@ -1,144 +0,0 @@
|
|||
.highlight .hll { background-color: #a39e9b }
|
||||
.highlight { background: #e7e9db; color: #2f1e2e }
|
||||
.highlight .c { color: #8d8687 } /* Comment */
|
||||
.highlight .err { color: #ef6155 } /* Error */
|
||||
.highlight .k { color: #815ba4 } /* Keyword */
|
||||
.highlight .l { color: #f99b15 } /* Literal */
|
||||
.highlight .n { color: #2f1e2e } /* Name */
|
||||
.highlight .o { color: #5bc4bf } /* Operator */
|
||||
.highlight .p { color: #2f1e2e } /* Punctuation */
|
||||
.highlight .ch { color: #8d8687 } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #8d8687 } /* Comment.Multiline */
|
||||
.highlight .cp { color: #8d8687 } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #8d8687 } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #8d8687 } /* Comment.Single */
|
||||
.highlight .cs { color: #8d8687 } /* Comment.Special */
|
||||
.highlight .gd { color: #ef6155 } /* Generic.Deleted */
|
||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||
.highlight .gh { color: #2f1e2e; font-weight: bold } /* Generic.Heading */
|
||||
.highlight .gi { color: #48b685 } /* Generic.Inserted */
|
||||
.highlight .gp { color: #8d8687; font-weight: bold } /* Generic.Prompt */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { color: #5bc4bf; font-weight: bold } /* Generic.Subheading */
|
||||
.highlight .kc { color: #815ba4 } /* Keyword.Constant */
|
||||
.highlight .kd { color: #815ba4 } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #5bc4bf } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #815ba4 } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #815ba4 } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #fec418 } /* Keyword.Type */
|
||||
.highlight .ld { color: #48b685 } /* Literal.Date */
|
||||
.highlight .m { color: #f99b15 } /* Literal.Number */
|
||||
.highlight .s { color: #48b685 } /* Literal.String */
|
||||
.highlight .na { color: #06b6ef } /* Name.Attribute */
|
||||
.highlight .nb { color: #2f1e2e } /* Name.Builtin */
|
||||
.highlight .nc { color: #fec418 } /* Name.Class */
|
||||
.highlight .no { color: #ef6155 } /* Name.Constant */
|
||||
.highlight .nd { color: #5bc4bf } /* Name.Decorator */
|
||||
.highlight .ni { color: #2f1e2e } /* Name.Entity */
|
||||
.highlight .ne { color: #ef6155 } /* Name.Exception */
|
||||
.highlight .nf { color: #06b6ef } /* Name.Function */
|
||||
.highlight .nl { color: #2f1e2e } /* Name.Label */
|
||||
.highlight .nn { color: #fec418 } /* Name.Namespace */
|
||||
.highlight .nx { color: #06b6ef } /* Name.Other */
|
||||
.highlight .py { color: #2f1e2e } /* Name.Property */
|
||||
.highlight .nt { color: #5bc4bf } /* Name.Tag */
|
||||
.highlight .nv { color: #ef6155 } /* Name.Variable */
|
||||
.highlight .ow { color: #5bc4bf } /* Operator.Word */
|
||||
.highlight .w { color: #2f1e2e } /* Text.Whitespace */
|
||||
.highlight .mb { color: #f99b15 } /* Literal.Number.Bin */
|
||||
.highlight .mf { color: #f99b15 } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #f99b15 } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #f99b15 } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #f99b15 } /* Literal.Number.Oct */
|
||||
.highlight .sa { color: #48b685 } /* Literal.String.Affix */
|
||||
.highlight .sb { color: #48b685 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #2f1e2e } /* Literal.String.Char */
|
||||
.highlight .dl { color: #48b685 } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #8d8687 } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #48b685 } /* Literal.String.Double */
|
||||
.highlight .se { color: #f99b15 } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #48b685 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #f99b15 } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #48b685 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #48b685 } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #48b685 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #48b685 } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #2f1e2e } /* Name.Builtin.Pseudo */
|
||||
.highlight .fm { color: #06b6ef } /* Name.Function.Magic */
|
||||
.highlight .vc { color: #ef6155 } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #ef6155 } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #ef6155 } /* Name.Variable.Instance */
|
||||
.highlight .vm { color: #ef6155 } /* Name.Variable.Magic */
|
||||
.highlight .il { color: #f99b15 } /* Literal.Number.Integer.Long */
|
||||
.literal-block .hll { background-color: #a39e9b }
|
||||
.literal-block { background: #e7e9db; color: #2f1e2e }
|
||||
.literal-block .c { color: #8d8687 } /* Comment */
|
||||
.literal-block .err { color: #ef6155 } /* Error */
|
||||
.literal-block .k { color: #815ba4 } /* Keyword */
|
||||
.literal-block .l { color: #f99b15 } /* Literal */
|
||||
.literal-block .n { color: #2f1e2e } /* Name */
|
||||
.literal-block .o { color: #5bc4bf } /* Operator */
|
||||
.literal-block .p { color: #2f1e2e } /* Punctuation */
|
||||
.literal-block .ch { color: #8d8687 } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #8d8687 } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #8d8687 } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #8d8687 } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #8d8687 } /* Comment.Single */
|
||||
.literal-block .cs { color: #8d8687 } /* Comment.Special */
|
||||
.literal-block .gd { color: #ef6155 } /* Generic.Deleted */
|
||||
.literal-block .ge { font-style: italic } /* Generic.Emph */
|
||||
.literal-block .gh { color: #2f1e2e; font-weight: bold } /* Generic.Heading */
|
||||
.literal-block .gi { color: #48b685 } /* Generic.Inserted */
|
||||
.literal-block .gp { color: #8d8687; font-weight: bold } /* Generic.Prompt */
|
||||
.literal-block .gs { font-weight: bold } /* Generic.Strong */
|
||||
.literal-block .gu { color: #5bc4bf; font-weight: bold } /* Generic.Subheading */
|
||||
.literal-block .kc { color: #815ba4 } /* Keyword.Constant */
|
||||
.literal-block .kd { color: #815ba4 } /* Keyword.Declaration */
|
||||
.literal-block .kn { color: #5bc4bf } /* Keyword.Namespace */
|
||||
.literal-block .kp { color: #815ba4 } /* Keyword.Pseudo */
|
||||
.literal-block .kr { color: #815ba4 } /* Keyword.Reserved */
|
||||
.literal-block .kt { color: #fec418 } /* Keyword.Type */
|
||||
.literal-block .ld { color: #48b685 } /* Literal.Date */
|
||||
.literal-block .m { color: #f99b15 } /* Literal.Number */
|
||||
.literal-block .s { color: #48b685 } /* Literal.String */
|
||||
.literal-block .na { color: #06b6ef } /* Name.Attribute */
|
||||
.literal-block .nb { color: #2f1e2e } /* Name.Builtin */
|
||||
.literal-block .nc { color: #fec418 } /* Name.Class */
|
||||
.literal-block .no { color: #ef6155 } /* Name.Constant */
|
||||
.literal-block .nd { color: #5bc4bf } /* Name.Decorator */
|
||||
.literal-block .ni { color: #2f1e2e } /* Name.Entity */
|
||||
.literal-block .ne { color: #ef6155 } /* Name.Exception */
|
||||
.literal-block .nf { color: #06b6ef } /* Name.Function */
|
||||
.literal-block .nl { color: #2f1e2e } /* Name.Label */
|
||||
.literal-block .nn { color: #fec418 } /* Name.Namespace */
|
||||
.literal-block .nx { color: #06b6ef } /* Name.Other */
|
||||
.literal-block .py { color: #2f1e2e } /* Name.Property */
|
||||
.literal-block .nt { color: #5bc4bf } /* Name.Tag */
|
||||
.literal-block .nv { color: #ef6155 } /* Name.Variable */
|
||||
.literal-block .ow { color: #5bc4bf } /* Operator.Word */
|
||||
.literal-block .w { color: #2f1e2e } /* Text.Whitespace */
|
||||
.literal-block .mb { color: #f99b15 } /* Literal.Number.Bin */
|
||||
.literal-block .mf { color: #f99b15 } /* Literal.Number.Float */
|
||||
.literal-block .mh { color: #f99b15 } /* Literal.Number.Hex */
|
||||
.literal-block .mi { color: #f99b15 } /* Literal.Number.Integer */
|
||||
.literal-block .mo { color: #f99b15 } /* Literal.Number.Oct */
|
||||
.literal-block .sa { color: #48b685 } /* Literal.String.Affix */
|
||||
.literal-block .sb { color: #48b685 } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #2f1e2e } /* Literal.String.Char */
|
||||
.literal-block .dl { color: #48b685 } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #8d8687 } /* Literal.String.Doc */
|
||||
.literal-block .s2 { color: #48b685 } /* Literal.String.Double */
|
||||
.literal-block .se { color: #f99b15 } /* Literal.String.Escape */
|
||||
.literal-block .sh { color: #48b685 } /* Literal.String.Heredoc */
|
||||
.literal-block .si { color: #f99b15 } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #48b685 } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #48b685 } /* Literal.String.Regex */
|
||||
.literal-block .s1 { color: #48b685 } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #48b685 } /* Literal.String.Symbol */
|
||||
.literal-block .bp { color: #2f1e2e } /* Name.Builtin.Pseudo */
|
||||
.literal-block .fm { color: #06b6ef } /* Name.Function.Magic */
|
||||
.literal-block .vc { color: #ef6155 } /* Name.Variable.Class */
|
||||
.literal-block .vg { color: #ef6155 } /* Name.Variable.Global */
|
||||
.literal-block .vi { color: #ef6155 } /* Name.Variable.Instance */
|
||||
.literal-block .vm { color: #ef6155 } /* Name.Variable.Magic */
|
||||
.literal-block .il { color: #f99b15 } /* Literal.Number.Integer.Long */
|
|
@ -1 +0,0 @@
|
|||
.highlight .hll{background-color:#a39e9b}.highlight{background:#e7e9db;color:#2f1e2e}.highlight .c{color:#8d8687}.highlight .err{color:#ef6155}.highlight .k{color:#815ba4}.highlight .l{color:#f99b15}.highlight .n{color:#2f1e2e}.highlight .o{color:#5bc4bf}.highlight .p{color:#2f1e2e}.highlight .c1,.highlight .ch,.highlight .cm,.highlight .cp,.highlight .cpf,.highlight .cs{color:#8d8687}.highlight .gd{color:#ef6155}.highlight .ge{font-style:italic}.highlight .gh{color:#2f1e2e;font-weight:700}.highlight .gi{color:#48b685}.highlight .gp{color:#8d8687}.highlight .gp,.highlight .gs,.highlight .gu{font-weight:700}.highlight .gu{color:#5bc4bf}.highlight .kc,.highlight .kd{color:#815ba4}.highlight .kn{color:#5bc4bf}.highlight .kp,.highlight .kr{color:#815ba4}.highlight .kt{color:#fec418}.highlight .ld{color:#48b685}.highlight .m{color:#f99b15}.highlight .s{color:#48b685}.highlight .na{color:#06b6ef}.highlight .nb{color:#2f1e2e}.highlight .nc{color:#fec418}.highlight .no{color:#ef6155}.highlight .nd{color:#5bc4bf}.highlight .ni{color:#2f1e2e}.highlight .ne{color:#ef6155}.highlight .nf{color:#06b6ef}.highlight .nl{color:#2f1e2e}.highlight .nn{color:#fec418}.highlight .nx{color:#06b6ef}.highlight .py{color:#2f1e2e}.highlight .nt{color:#5bc4bf}.highlight .nv{color:#ef6155}.highlight .ow{color:#5bc4bf}.highlight .w{color:#2f1e2e}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#f99b15}.highlight .sa,.highlight .sb{color:#48b685}.highlight .sc{color:#2f1e2e}.highlight .dl{color:#48b685}.highlight .sd{color:#8d8687}.highlight .s2{color:#48b685}.highlight .se{color:#f99b15}.highlight .sh{color:#48b685}.highlight .si{color:#f99b15}.highlight .s1,.highlight .sr,.highlight .ss,.highlight .sx{color:#48b685}.highlight .bp{color:#2f1e2e}.highlight .fm{color:#06b6ef}.highlight .vc,.highlight .vg,.highlight .vi,.highlight .vm{color:#ef6155}.highlight .il{color:#f99b15}.literal-block .hll{background-color:#a39e9b}.literal-block{background:#e7e9db;color:#2f1e2e}.literal-block .c{color:#8d8687}.literal-block .err{color:#ef6155}.literal-block .k{color:#815ba4}.literal-block .l{color:#f99b15}.literal-block .n{color:#2f1e2e}.literal-block .o{color:#5bc4bf}.literal-block .p{color:#2f1e2e}.literal-block .c1,.literal-block .ch,.literal-block .cm,.literal-block .cp,.literal-block .cpf,.literal-block .cs{color:#8d8687}.literal-block .gd{color:#ef6155}.literal-block .ge{font-style:italic}.literal-block .gh{color:#2f1e2e;font-weight:700}.literal-block .gi{color:#48b685}.literal-block .gp{color:#8d8687;font-weight:700}.literal-block .gs{font-weight:700}.literal-block .gu{color:#5bc4bf;font-weight:700}.literal-block .kc,.literal-block .kd{color:#815ba4}.literal-block .kn{color:#5bc4bf}.literal-block .kp,.literal-block .kr{color:#815ba4}.literal-block .kt{color:#fec418}.literal-block .ld{color:#48b685}.literal-block .m{color:#f99b15}.literal-block .s{color:#48b685}.literal-block .na{color:#06b6ef}.literal-block .nb{color:#2f1e2e}.literal-block .nc{color:#fec418}.literal-block .no{color:#ef6155}.literal-block .nd{color:#5bc4bf}.literal-block .ni{color:#2f1e2e}.literal-block .ne{color:#ef6155}.literal-block .nf{color:#06b6ef}.literal-block .nl{color:#2f1e2e}.literal-block .nn{color:#fec418}.literal-block .nx{color:#06b6ef}.literal-block .py{color:#2f1e2e}.literal-block .nt{color:#5bc4bf}.literal-block .nv{color:#ef6155}.literal-block .ow{color:#5bc4bf}.literal-block .w{color:#2f1e2e}.literal-block .mb,.literal-block .mf,.literal-block .mh,.literal-block .mi,.literal-block .mo{color:#f99b15}.literal-block .sa,.literal-block .sb{color:#48b685}.literal-block .sc{color:#2f1e2e}.literal-block .dl{color:#48b685}.literal-block .sd{color:#8d8687}.literal-block .s2{color:#48b685}.literal-block .se{color:#f99b15}.literal-block .sh{color:#48b685}.literal-block .si{color:#f99b15}.literal-block .s1,.literal-block .sr,.literal-block .ss,.literal-block .sx{color:#48b685}.literal-block .bp{color:#2f1e2e}.literal-block .fm{color:#06b6ef}.literal-block .vc,.literal-block .vg,.literal-block .vi,.literal-block .vm{color:#ef6155}.literal-block .il{color:#f99b15}
|
|
@ -1,136 +0,0 @@
|
|||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #ffffff; }
|
||||
.highlight .c { color: #888888 } /* Comment */
|
||||
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
||||
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
|
||||
.highlight .ch { color: #888888 } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #888888 } /* Comment.Multiline */
|
||||
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #888888 } /* Comment.Single */
|
||||
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
|
||||
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
|
||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||
.highlight .gr { color: #aa0000 } /* Generic.Error */
|
||||
.highlight .gh { color: #333333 } /* Generic.Heading */
|
||||
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
|
||||
.highlight .go { color: #888888 } /* Generic.Output */
|
||||
.highlight .gp { color: #555555 } /* Generic.Prompt */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { color: #666666 } /* Generic.Subheading */
|
||||
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
|
||||
.highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
|
||||
.highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #008800 } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */
|
||||
.highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */
|
||||
.highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */
|
||||
.highlight .na { color: #336699 } /* Name.Attribute */
|
||||
.highlight .nb { color: #003388 } /* Name.Builtin */
|
||||
.highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */
|
||||
.highlight .no { color: #003366; font-weight: bold } /* Name.Constant */
|
||||
.highlight .nd { color: #555555 } /* Name.Decorator */
|
||||
.highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */
|
||||
.highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */
|
||||
.highlight .nl { color: #336699; font-style: italic } /* Name.Label */
|
||||
.highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */
|
||||
.highlight .py { color: #336699; font-weight: bold } /* Name.Property */
|
||||
.highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */
|
||||
.highlight .nv { color: #336699 } /* Name.Variable */
|
||||
.highlight .ow { color: #008800 } /* Operator.Word */
|
||||
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */
|
||||
.highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */
|
||||
.highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */
|
||||
.highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */
|
||||
.highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */
|
||||
.highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */
|
||||
.highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */
|
||||
.highlight .vc { color: #336699 } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #dd7700 } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #3333bb } /* Name.Variable.Instance */
|
||||
.highlight .vm { color: #336699 } /* Name.Variable.Magic */
|
||||
.highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
|
||||
.literal-block .hll { background-color: #ffffcc }
|
||||
.literal-block { background: #ffffff; }
|
||||
.literal-block .c { color: #888888 } /* Comment */
|
||||
.literal-block .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
||||
.literal-block .k { color: #008800; font-weight: bold } /* Keyword */
|
||||
.literal-block .ch { color: #888888 } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #888888 } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #888888 } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #888888 } /* Comment.Single */
|
||||
.literal-block .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
|
||||
.literal-block .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
|
||||
.literal-block .ge { font-style: italic } /* Generic.Emph */
|
||||
.literal-block .gr { color: #aa0000 } /* Generic.Error */
|
||||
.literal-block .gh { color: #333333 } /* Generic.Heading */
|
||||
.literal-block .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
|
||||
.literal-block .go { color: #888888 } /* Generic.Output */
|
||||
.literal-block .gp { color: #555555 } /* Generic.Prompt */
|
||||
.literal-block .gs { font-weight: bold } /* Generic.Strong */
|
||||
.literal-block .gu { color: #666666 } /* Generic.Subheading */
|
||||
.literal-block .gt { color: #aa0000 } /* Generic.Traceback */
|
||||
.literal-block .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
|
||||
.literal-block .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
|
||||
.literal-block .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
|
||||
.literal-block .kp { color: #008800 } /* Keyword.Pseudo */
|
||||
.literal-block .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
|
||||
.literal-block .kt { color: #888888; font-weight: bold } /* Keyword.Type */
|
||||
.literal-block .m { color: #0000DD; font-weight: bold } /* Literal.Number */
|
||||
.literal-block .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */
|
||||
.literal-block .na { color: #336699 } /* Name.Attribute */
|
||||
.literal-block .nb { color: #003388 } /* Name.Builtin */
|
||||
.literal-block .nc { color: #bb0066; font-weight: bold } /* Name.Class */
|
||||
.literal-block .no { color: #003366; font-weight: bold } /* Name.Constant */
|
||||
.literal-block .nd { color: #555555 } /* Name.Decorator */
|
||||
.literal-block .ne { color: #bb0066; font-weight: bold } /* Name.Exception */
|
||||
.literal-block .nf { color: #0066bb; font-weight: bold } /* Name.Function */
|
||||
.literal-block .nl { color: #336699; font-style: italic } /* Name.Label */
|
||||
.literal-block .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */
|
||||
.literal-block .py { color: #336699; font-weight: bold } /* Name.Property */
|
||||
.literal-block .nt { color: #bb0066; font-weight: bold } /* Name.Tag */
|
||||
.literal-block .nv { color: #336699 } /* Name.Variable */
|
||||
.literal-block .ow { color: #008800 } /* Operator.Word */
|
||||
.literal-block .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.literal-block .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */
|
||||
.literal-block .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */
|
||||
.literal-block .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */
|
||||
.literal-block .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
|
||||
.literal-block .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */
|
||||
.literal-block .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */
|
||||
.literal-block .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */
|
||||
.literal-block .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */
|
||||
.literal-block .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */
|
||||
.literal-block .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */
|
||||
.literal-block .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */
|
||||
.literal-block .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */
|
||||
.literal-block .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */
|
||||
.literal-block .bp { color: #003388 } /* Name.Builtin.Pseudo */
|
||||
.literal-block .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */
|
||||
.literal-block .vc { color: #336699 } /* Name.Variable.Class */
|
||||
.literal-block .vg { color: #dd7700 } /* Name.Variable.Global */
|
||||
.literal-block .vi { color: #3333bb } /* Name.Variable.Instance */
|
||||
.literal-block .vm { color: #336699 } /* Name.Variable.Magic */
|
||||
.literal-block .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
|
1
docs/blog/theme/pygments/pastie.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.highlight .hll{background-color:#ffc}.highlight{background:#fff}.highlight .c{color:#888}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .k{color:#080;font-weight:700}.highlight .ch,.highlight .cm{color:#888}.highlight .cp{color:#c00;font-weight:700}.highlight .c1,.highlight .cpf{color:#888}.highlight .cs{color:#c00;font-weight:700;background-color:#fff0f0}.highlight .gd{color:#000;background-color:#fdd}.highlight .ge{font-style:italic}.highlight .gr{color:#a00}.highlight .gh{color:#333}.highlight .gi{color:#000;background-color:#dfd}.highlight .go{color:#888}.highlight .gp{color:#555}.highlight .gs{font-weight:700}.highlight .gu{color:#666}.highlight .gt{color:#a00}.highlight .kc,.highlight .kd,.highlight .kn{color:#080;font-weight:700}.highlight .kp{color:#080}.highlight .kr{color:#080;font-weight:700}.highlight .kt{color:#888;font-weight:700}.highlight .m{color:#00d;font-weight:700}.highlight .s{color:#d20;background-color:#fff0f0}.highlight .na{color:#369}.highlight .nb{color:#038}.highlight .nc{color:#b06;font-weight:700}.highlight .no{color:#036;font-weight:700}.highlight .nd{color:#555}.highlight .ne{color:#b06;font-weight:700}.highlight .nf{color:#06b;font-weight:700}.highlight .nl{color:#369;font-style:italic}.highlight .nn{color:#b06;font-weight:700}.highlight .py{color:#369;font-weight:700}.highlight .nt{color:#b06;font-weight:700}.highlight .nv{color:#369}.highlight .ow{color:#080}.highlight .w{color:#bbb}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#00d;font-weight:700}.highlight .dl,.highlight .s2,.highlight .sa,.highlight .sb,.highlight .sc,.highlight .sd{color:#d20;background-color:#fff0f0}.highlight .se{color:#04d;background-color:#fff0f0}.highlight .sh{color:#d20;background-color:#fff0f0}.highlight .si{color:#33b;background-color:#fff0f0}.highlight .sx{color:#2b2;background-color:#f0fff0}.highlight .sr{color:#080;background-color:#fff0ff}.highlight .s1{color:#d20;background-color:#fff0f0}.highlight .ss{color:#a60;background-color:#fff0f0}.highlight .bp{color:#038}.highlight .fm{color:#06b;font-weight:700}.highlight .vc{color:#369}.highlight .vg{color:#d70}.highlight .vi{color:#33b}.highlight .vm{color:#369}.highlight .il{color:#00d;font-weight:700}.literal-block .hll{background-color:#ffc}.literal-block{background:#fff}.literal-block .c{color:#888}.literal-block .err{color:#a61717;background-color:#e3d2d2}.literal-block .k{color:#080;font-weight:700}.literal-block .ch,.literal-block .cm{color:#888}.literal-block .cp{color:#c00;font-weight:700}.literal-block .c1,.literal-block .cpf{color:#888}.literal-block .cs{color:#c00;font-weight:700;background-color:#fff0f0}.literal-block .gd{color:#000;background-color:#fdd}.literal-block .ge{font-style:italic}.literal-block .gr{color:#a00}.literal-block .gh{color:#333}.literal-block .gi{color:#000;background-color:#dfd}.literal-block .go{color:#888}.literal-block .gp{color:#555}.literal-block .gs{font-weight:700}.literal-block .gu{color:#666}.literal-block .gt{color:#a00}.literal-block .kc,.literal-block .kd,.literal-block .kn{color:#080;font-weight:700}.literal-block .kp{color:#080}.literal-block .kr{color:#080;font-weight:700}.literal-block .kt{color:#888;font-weight:700}.literal-block .m{color:#00d;font-weight:700}.literal-block .s{color:#d20;background-color:#fff0f0}.literal-block .na{color:#369}.literal-block .nb{color:#038}.literal-block .nc{color:#b06;font-weight:700}.literal-block .no{color:#036;font-weight:700}.literal-block .nd{color:#555}.literal-block .ne{color:#b06;font-weight:700}.literal-block .nf{color:#06b;font-weight:700}.literal-block .nl{color:#369;font-style:italic}.literal-block .nn{color:#b06;font-weight:700}.literal-block .py{color:#369;font-weight:700}.literal-block .nt{color:#b06;font-weight:700}.literal-block .nv{color:#369}.literal-block .ow{color:#080}.literal-block .w{color:#bbb}.literal-block .mb,.literal-block .mf,.literal-block .mh,.literal-block .mi,.literal-block .mo{color:#00d;font-weight:700}.literal-block .dl,.literal-block .s2,.literal-block .sa,.literal-block .sb,.literal-block .sc,.literal-block .sd{color:#d20;background-color:#fff0f0}.literal-block .se{color:#04d;background-color:#fff0f0}.literal-block .sh{color:#d20;background-color:#fff0f0}.literal-block .si{color:#33b;background-color:#fff0f0}.literal-block .sx{color:#2b2;background-color:#f0fff0}.literal-block .sr{color:#080;background-color:#fff0ff}.literal-block .s1{color:#d20;background-color:#fff0f0}.literal-block .ss{color:#a60;background-color:#fff0f0}.literal-block .bp{color:#038}.literal-block .fm{color:#06b;font-weight:700}.literal-block .vc{color:#369}.literal-block .vg{color:#d70}.literal-block .vi{color:#33b}.literal-block .vm{color:#369}.literal-block .il{color:#00d;font-weight:700}
|
|
@ -1,132 +0,0 @@
|
|||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #eeeedd; }
|
||||
.highlight .c { color: #228B22 } /* Comment */
|
||||
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
||||
.highlight .k { color: #8B008B; font-weight: bold } /* Keyword */
|
||||
.highlight .ch { color: #228B22 } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #228B22 } /* Comment.Multiline */
|
||||
.highlight .cp { color: #1e889b } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #228B22 } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #228B22 } /* Comment.Single */
|
||||
.highlight .cs { color: #8B008B; font-weight: bold } /* Comment.Special */
|
||||
.highlight .gd { color: #aa0000 } /* Generic.Deleted */
|
||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||
.highlight .gr { color: #aa0000 } /* Generic.Error */
|
||||
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
||||
.highlight .gi { color: #00aa00 } /* Generic.Inserted */
|
||||
.highlight .go { color: #888888 } /* Generic.Output */
|
||||
.highlight .gp { color: #555555 } /* Generic.Prompt */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
||||
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
|
||||
.highlight .kc { color: #8B008B; font-weight: bold } /* Keyword.Constant */
|
||||
.highlight .kd { color: #8B008B; font-weight: bold } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #8B008B; font-weight: bold } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #8B008B; font-weight: bold } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #8B008B; font-weight: bold } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #00688B; font-weight: bold } /* Keyword.Type */
|
||||
.highlight .m { color: #B452CD } /* Literal.Number */
|
||||
.highlight .s { color: #CD5555 } /* Literal.String */
|
||||
.highlight .na { color: #658b00 } /* Name.Attribute */
|
||||
.highlight .nb { color: #658b00 } /* Name.Builtin */
|
||||
.highlight .nc { color: #008b45; font-weight: bold } /* Name.Class */
|
||||
.highlight .no { color: #00688B } /* Name.Constant */
|
||||
.highlight .nd { color: #707a7c } /* Name.Decorator */
|
||||
.highlight .ne { color: #008b45; font-weight: bold } /* Name.Exception */
|
||||
.highlight .nf { color: #008b45 } /* Name.Function */
|
||||
.highlight .nn { color: #008b45; text-decoration: underline } /* Name.Namespace */
|
||||
.highlight .nt { color: #8B008B; font-weight: bold } /* Name.Tag */
|
||||
.highlight .nv { color: #00688B } /* Name.Variable */
|
||||
.highlight .ow { color: #8B008B } /* Operator.Word */
|
||||
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.highlight .mb { color: #B452CD } /* Literal.Number.Bin */
|
||||
.highlight .mf { color: #B452CD } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #B452CD } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #B452CD } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #B452CD } /* Literal.Number.Oct */
|
||||
.highlight .sa { color: #CD5555 } /* Literal.String.Affix */
|
||||
.highlight .sb { color: #CD5555 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #CD5555 } /* Literal.String.Char */
|
||||
.highlight .dl { color: #CD5555 } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #CD5555 } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #CD5555 } /* Literal.String.Double */
|
||||
.highlight .se { color: #CD5555 } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #1c7e71; font-style: italic } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #CD5555 } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #cb6c20 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #1c7e71 } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #CD5555 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #CD5555 } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #658b00 } /* Name.Builtin.Pseudo */
|
||||
.highlight .fm { color: #008b45 } /* Name.Function.Magic */
|
||||
.highlight .vc { color: #00688B } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #00688B } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #00688B } /* Name.Variable.Instance */
|
||||
.highlight .vm { color: #00688B } /* Name.Variable.Magic */
|
||||
.highlight .il { color: #B452CD } /* Literal.Number.Integer.Long */
|
||||
.literal-block .hll { background-color: #ffffcc }
|
||||
.literal-block { background: #eeeedd; }
|
||||
.literal-block .c { color: #228B22 } /* Comment */
|
||||
.literal-block .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
||||
.literal-block .k { color: #8B008B; font-weight: bold } /* Keyword */
|
||||
.literal-block .ch { color: #228B22 } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #228B22 } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #1e889b } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #228B22 } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #228B22 } /* Comment.Single */
|
||||
.literal-block .cs { color: #8B008B; font-weight: bold } /* Comment.Special */
|
||||
.literal-block .gd { color: #aa0000 } /* Generic.Deleted */
|
||||
.literal-block .ge { font-style: italic } /* Generic.Emph */
|
||||
.literal-block .gr { color: #aa0000 } /* Generic.Error */
|
||||
.literal-block .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
||||
.literal-block .gi { color: #00aa00 } /* Generic.Inserted */
|
||||
.literal-block .go { color: #888888 } /* Generic.Output */
|
||||
.literal-block .gp { color: #555555 } /* Generic.Prompt */
|
||||
.literal-block .gs { font-weight: bold } /* Generic.Strong */
|
||||
.literal-block .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
||||
.literal-block .gt { color: #aa0000 } /* Generic.Traceback */
|
||||
.literal-block .kc { color: #8B008B; font-weight: bold } /* Keyword.Constant */
|
||||
.literal-block .kd { color: #8B008B; font-weight: bold } /* Keyword.Declaration */
|
||||
.literal-block .kn { color: #8B008B; font-weight: bold } /* Keyword.Namespace */
|
||||
.literal-block .kp { color: #8B008B; font-weight: bold } /* Keyword.Pseudo */
|
||||
.literal-block .kr { color: #8B008B; font-weight: bold } /* Keyword.Reserved */
|
||||
.literal-block .kt { color: #00688B; font-weight: bold } /* Keyword.Type */
|
||||
.literal-block .m { color: #B452CD } /* Literal.Number */
|
||||
.literal-block .s { color: #CD5555 } /* Literal.String */
|
||||
.literal-block .na { color: #658b00 } /* Name.Attribute */
|
||||
.literal-block .nb { color: #658b00 } /* Name.Builtin */
|
||||
.literal-block .nc { color: #008b45; font-weight: bold } /* Name.Class */
|
||||
.literal-block .no { color: #00688B } /* Name.Constant */
|
||||
.literal-block .nd { color: #707a7c } /* Name.Decorator */
|
||||
.literal-block .ne { color: #008b45; font-weight: bold } /* Name.Exception */
|
||||
.literal-block .nf { color: #008b45 } /* Name.Function */
|
||||
.literal-block .nn { color: #008b45; text-decoration: underline } /* Name.Namespace */
|
||||
.literal-block .nt { color: #8B008B; font-weight: bold } /* Name.Tag */
|
||||
.literal-block .nv { color: #00688B } /* Name.Variable */
|
||||
.literal-block .ow { color: #8B008B } /* Operator.Word */
|
||||
.literal-block .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.literal-block .mb { color: #B452CD } /* Literal.Number.Bin */
|
||||
.literal-block .mf { color: #B452CD } /* Literal.Number.Float */
|
||||
.literal-block .mh { color: #B452CD } /* Literal.Number.Hex */
|
||||
.literal-block .mi { color: #B452CD } /* Literal.Number.Integer */
|
||||
.literal-block .mo { color: #B452CD } /* Literal.Number.Oct */
|
||||
.literal-block .sa { color: #CD5555 } /* Literal.String.Affix */
|
||||
.literal-block .sb { color: #CD5555 } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #CD5555 } /* Literal.String.Char */
|
||||
.literal-block .dl { color: #CD5555 } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #CD5555 } /* Literal.String.Doc */
|
||||
.literal-block .s2 { color: #CD5555 } /* Literal.String.Double */
|
||||
.literal-block .se { color: #CD5555 } /* Literal.String.Escape */
|
||||
.literal-block .sh { color: #1c7e71; font-style: italic } /* Literal.String.Heredoc */
|
||||
.literal-block .si { color: #CD5555 } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #cb6c20 } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #1c7e71 } /* Literal.String.Regex */
|
||||
.literal-block .s1 { color: #CD5555 } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #CD5555 } /* Literal.String.Symbol */
|
||||
.literal-block .bp { color: #658b00 } /* Name.Builtin.Pseudo */
|
||||
.literal-block .fm { color: #008b45 } /* Name.Function.Magic */
|
||||
.literal-block .vc { color: #00688B } /* Name.Variable.Class */
|
||||
.literal-block .vg { color: #00688B } /* Name.Variable.Global */
|
||||
.literal-block .vi { color: #00688B } /* Name.Variable.Instance */
|
||||
.literal-block .vm { color: #00688B } /* Name.Variable.Magic */
|
||||
.literal-block .il { color: #B452CD } /* Literal.Number.Integer.Long */
|
1
docs/blog/theme/pygments/perldoc.min.css
vendored
|
@ -1 +0,0 @@
|
|||
.highlight .hll{background-color:#ffc}.highlight{background:#eed}.highlight .c{color:#228b22}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .k{color:#8b008b;font-weight:700}.highlight .ch,.highlight .cm{color:#228b22}.highlight .cp{color:#1e889b}.highlight .c1,.highlight .cpf{color:#228b22}.highlight .cs{color:#8b008b;font-weight:700}.highlight .gd{color:#a00}.highlight .ge{font-style:italic}.highlight .gr{color:#a00}.highlight .gh{color:navy;font-weight:700}.highlight .gi{color:#0a0}.highlight .go{color:#888}.highlight .gp{color:#555}.highlight .gs,.highlight .gu{font-weight:700}.highlight .gu{color:purple}.highlight .gt{color:#a00}.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr{color:#8b008b;font-weight:700}.highlight .kt{color:#00688b;font-weight:700}.highlight .m{color:#b452cd}.highlight .s{color:#cd5555}.highlight .na,.highlight .nb{color:#658b00}.highlight .nc{color:#008b45;font-weight:700}.highlight .no{color:#00688b}.highlight .nd{color:#707a7c}.highlight .ne{color:#008b45;font-weight:700}.highlight .nf{color:#008b45}.highlight .nn{color:#008b45;text-decoration:underline}.highlight .nt{color:#8b008b;font-weight:700}.highlight .nv{color:#00688b}.highlight .ow{color:#8b008b}.highlight .w{color:#bbb}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#b452cd}.highlight .dl,.highlight .s2,.highlight .sa,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se{color:#cd5555}.highlight .sh{color:#1c7e71;font-style:italic}.highlight .si{color:#cd5555}.highlight .sx{color:#cb6c20}.highlight .sr{color:#1c7e71}.highlight .s1,.highlight .ss{color:#cd5555}.highlight .bp{color:#658b00}.highlight .fm{color:#008b45}.highlight .vc,.highlight .vg,.highlight .vi,.highlight .vm{color:#00688b}.highlight .il{color:#b452cd}.literal-block .hll{background-color:#ffc}.literal-block{background:#eed}.literal-block .c{color:#228b22}.literal-block .err{color:#a61717;background-color:#e3d2d2}.literal-block .k{color:#8b008b;font-weight:700}.literal-block .ch,.literal-block .cm{color:#228b22}.literal-block .cp{color:#1e889b}.literal-block .c1,.literal-block .cpf{color:#228b22}.literal-block .cs{color:#8b008b;font-weight:700}.literal-block .gd{color:#a00}.literal-block .ge{font-style:italic}.literal-block .gr{color:#a00}.literal-block .gh{color:navy;font-weight:700}.literal-block .gi{color:#0a0}.literal-block .go{color:#888}.literal-block .gp{color:#555}.literal-block .gs{font-weight:700}.literal-block .gu{color:purple;font-weight:700}.literal-block .gt{color:#a00}.literal-block .kc,.literal-block .kd,.literal-block .kn,.literal-block .kp,.literal-block .kr{color:#8b008b;font-weight:700}.literal-block .kt{color:#00688b;font-weight:700}.literal-block .m{color:#b452cd}.literal-block .s{color:#cd5555}.literal-block .na,.literal-block .nb{color:#658b00}.literal-block .nc{color:#008b45;font-weight:700}.literal-block .no{color:#00688b}.literal-block .nd{color:#707a7c}.literal-block .ne{color:#008b45;font-weight:700}.literal-block .nf{color:#008b45}.literal-block .nn{color:#008b45;text-decoration:underline}.literal-block .nt{color:#8b008b;font-weight:700}.literal-block .nv{color:#00688b}.literal-block .ow{color:#8b008b}.literal-block .w{color:#bbb}.literal-block .mb,.literal-block .mf,.literal-block .mh,.literal-block .mi,.literal-block .mo{color:#b452cd}.literal-block .dl,.literal-block .s2,.literal-block .sa,.literal-block .sb,.literal-block .sc,.literal-block .sd,.literal-block .se{color:#cd5555}.literal-block .sh{color:#1c7e71;font-style:italic}.literal-block .si{color:#cd5555}.literal-block .sx{color:#cb6c20}.literal-block .sr{color:#1c7e71}.literal-block .s1,.literal-block .ss{color:#cd5555}.literal-block .bp{color:#658b00}.literal-block .fm{color:#008b45}.literal-block .vc,.literal-block .vg,.literal-block .vi,.literal-block .vm{color:#00688b}.literal-block .il{color:#b452cd}
|
|
@ -1,124 +0,0 @@
|
|||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #ffffff; color: #4d4d4d }
|
||||
.highlight .c { color: #0080ff; font-style: italic } /* Comment */
|
||||
.highlight .err { color: #ffffff; background-color: #cc0000 } /* Error */
|
||||
.highlight .k { color: #2c5dcd; font-weight: bold } /* Keyword */
|
||||
.highlight .o { color: #2c5dcd } /* Operator */
|
||||
.highlight .ch { color: #0080ff; font-style: italic } /* Comment.Hashbang */
|
||||
.highlight .cm { color: #0080ff; font-style: italic } /* Comment.Multiline */
|
||||
.highlight .cp { color: #0080ff } /* Comment.Preproc */
|
||||
.highlight .cpf { color: #0080ff; font-style: italic } /* Comment.PreprocFile */
|
||||
.highlight .c1 { color: #0080ff; font-style: italic } /* Comment.Single */
|
||||
.highlight .cs { color: #0080ff; font-weight: bold; font-style: italic } /* Comment.Special */
|
||||
.highlight .gd { background-color: #ffcccc; border: 1px solid #c5060b } /* Generic.Deleted */
|
||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||
.highlight .gr { color: #ff0000 } /* Generic.Error */
|
||||
.highlight .gh { color: #2c5dcd; font-weight: bold } /* Generic.Heading */
|
||||
.highlight .gi { background-color: #ccffcc; border: 1px solid #00cc00 } /* Generic.Inserted */
|
||||
.highlight .go { color: #aaaaaa } /* Generic.Output */
|
||||
.highlight .gp { color: #2c5dcd; font-weight: bold } /* Generic.Prompt */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { color: #2c5dcd; font-weight: bold } /* Generic.Subheading */
|
||||
.highlight .gt { color: #c5060b } /* Generic.Traceback */
|
||||
.highlight .kc { color: #2c5dcd; font-weight: bold } /* Keyword.Constant */
|
||||
.highlight .kd { color: #2c5dcd; font-weight: bold } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #2c5dcd; font-weight: bold } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #2c5dcd } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #2c5dcd; font-weight: bold } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #5918bb; font-weight: bold } /* Keyword.Type */
|
||||
.highlight .m { color: #5918bb; font-weight: bold } /* Literal.Number */
|
||||
.highlight .s { color: #00cc66 } /* Literal.String */
|
||||
.highlight .na { color: #2c5dcd; font-style: italic } /* Name.Attribute */
|
||||
.highlight .nb { color: #5918bb; font-weight: bold } /* Name.Builtin */
|
||||
.highlight .nc { text-decoration: underline } /* Name.Class */
|
||||
.highlight .no { color: #318495 } /* Name.Constant */
|
||||
.highlight .nd { color: #ff8000; font-weight: bold } /* Name.Decorator */
|
||||
.highlight .ni { color: #5918bb; font-weight: bold } /* Name.Entity */
|
||||
.highlight .ne { color: #5918bb; font-weight: bold } /* Name.Exception */
|
||||
.highlight .nf { color: #ff8000; font-weight: bold } /* Name.Function */
|
||||
.highlight .nt { color: #2c5dcd; font-weight: bold } /* Name.Tag */
|
||||
.highlight .ow { color: #2c5dcd; font-weight: bold } /* Operator.Word */
|
||||
.highlight .w { color: #cbcbcb } /* Text.Whitespace */
|
||||
.highlight .mb { color: #5918bb; font-weight: bold } /* Literal.Number.Bin */
|
||||
.highlight .mf { color: #5918bb; font-weight: bold } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #5918bb; font-weight: bold } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #5918bb; font-weight: bold } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #5918bb; font-weight: bold } /* Literal.Number.Oct */
|
||||
.highlight .sa { color: #00cc66 } /* Literal.String.Affix */
|
||||
.highlight .sb { color: #00cc66 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #00cc66 } /* Literal.String.Char */
|
||||
.highlight .dl { color: #00cc66 } /* Literal.String.Delimiter */
|
||||
.highlight .sd { color: #00cc66; font-style: italic } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #00cc66 } /* Literal.String.Double */
|
||||
.highlight .se { color: #c5060b; font-weight: bold } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #00cc66 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #00cc66 } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #318495 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #00cc66 } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #00cc66 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #c5060b; font-weight: bold } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #5918bb; font-weight: bold } /* Name.Builtin.Pseudo */
|
||||
.highlight .fm { color: #ff8000; font-weight: bold } /* Name.Function.Magic */
|
||||
.highlight .il { color: #5918bb; font-weight: bold } /* Literal.Number.Integer.Long */
|
||||
.literal-block .hll { background-color: #ffffcc }
|
||||
.literal-block { background: #ffffff; color: #4d4d4d }
|
||||
.literal-block .c { color: #0080ff; font-style: italic } /* Comment */
|
||||
.literal-block .err { color: #ffffff; background-color: #cc0000 } /* Error */
|
||||
.literal-block .k { color: #2c5dcd; font-weight: bold } /* Keyword */
|
||||
.literal-block .o { color: #2c5dcd } /* Operator */
|
||||
.literal-block .ch { color: #0080ff; font-style: italic } /* Comment.Hashbang */
|
||||
.literal-block .cm { color: #0080ff; font-style: italic } /* Comment.Multiline */
|
||||
.literal-block .cp { color: #0080ff } /* Comment.Preproc */
|
||||
.literal-block .cpf { color: #0080ff; font-style: italic } /* Comment.PreprocFile */
|
||||
.literal-block .c1 { color: #0080ff; font-style: italic } /* Comment.Single */
|
||||
.literal-block .cs { color: #0080ff; font-weight: bold; font-style: italic } /* Comment.Special */
|
||||
.literal-block .gd { background-color: #ffcccc; border: 1px solid #c5060b } /* Generic.Deleted */
|
||||
.literal-block .ge { font-style: italic } /* Generic.Emph */
|
||||
.literal-block .gr { color: #ff0000 } /* Generic.Error */
|
||||
.literal-block .gh { color: #2c5dcd; font-weight: bold } /* Generic.Heading */
|
||||
.literal-block .gi { background-color: #ccffcc; border: 1px solid #00cc00 } /* Generic.Inserted */
|
||||
.literal-block .go { color: #aaaaaa } /* Generic.Output */
|
||||
.literal-block .gp { color: #2c5dcd; font-weight: bold } /* Generic.Prompt */
|
||||
.literal-block .gs { font-weight: bold } /* Generic.Strong */
|
||||
.literal-block .gu { color: #2c5dcd; font-weight: bold } /* Generic.Subheading */
|
||||
.literal-block .gt { color: #c5060b } /* Generic.Traceback */
|
||||
.literal-block .kc { color: #2c5dcd; font-weight: bold } /* Keyword.Constant */
|
||||
.literal-block .kd { color: #2c5dcd; font-weight: bold } /* Keyword.Declaration */
|
||||
.literal-block .kn { color: #2c5dcd; font-weight: bold } /* Keyword.Namespace */
|
||||
.literal-block .kp { color: #2c5dcd } /* Keyword.Pseudo */
|
||||
.literal-block .kr { color: #2c5dcd; font-weight: bold } /* Keyword.Reserved */
|
||||
.literal-block .kt { color: #5918bb; font-weight: bold } /* Keyword.Type */
|
||||
.literal-block .m { color: #5918bb; font-weight: bold } /* Literal.Number */
|
||||
.literal-block .s { color: #00cc66 } /* Literal.String */
|
||||
.literal-block .na { color: #2c5dcd; font-style: italic } /* Name.Attribute */
|
||||
.literal-block .nb { color: #5918bb; font-weight: bold } /* Name.Builtin */
|
||||
.literal-block .nc { text-decoration: underline } /* Name.Class */
|
||||
.literal-block .no { color: #318495 } /* Name.Constant */
|
||||
.literal-block .nd { color: #ff8000; font-weight: bold } /* Name.Decorator */
|
||||
.literal-block .ni { color: #5918bb; font-weight: bold } /* Name.Entity */
|
||||
.literal-block .ne { color: #5918bb; font-weight: bold } /* Name.Exception */
|
||||
.literal-block .nf { color: #ff8000; font-weight: bold } /* Name.Function */
|
||||
.literal-block .nt { color: #2c5dcd; font-weight: bold } /* Name.Tag */
|
||||
.literal-block .ow { color: #2c5dcd; font-weight: bold } /* Operator.Word */
|
||||
.literal-block .w { color: #cbcbcb } /* Text.Whitespace */
|
||||
.literal-block .mb { color: #5918bb; font-weight: bold } /* Literal.Number.Bin */
|
||||
.literal-block .mf { color: #5918bb; font-weight: bold } /* Literal.Number.Float */
|
||||
.literal-block .mh { color: #5918bb; font-weight: bold } /* Literal.Number.Hex */
|
||||
.literal-block .mi { color: #5918bb; font-weight: bold } /* Literal.Number.Integer */
|
||||
.literal-block .mo { color: #5918bb; font-weight: bold } /* Literal.Number.Oct */
|
||||
.literal-block .sa { color: #00cc66 } /* Literal.String.Affix */
|
||||
.literal-block .sb { color: #00cc66 } /* Literal.String.Backtick */
|
||||
.literal-block .sc { color: #00cc66 } /* Literal.String.Char */
|
||||
.literal-block .dl { color: #00cc66 } /* Literal.String.Delimiter */
|
||||
.literal-block .sd { color: #00cc66; font-style: italic } /* Literal.String.Doc */
|
||||
.literal-block .s2 { color: #00cc66 } /* Literal.String.Double */
|
||||
.literal-block .se { color: #c5060b; font-weight: bold } /* Literal.String.Escape */
|
||||
.literal-block .sh { color: #00cc66 } /* Literal.String.Heredoc */
|
||||
.literal-block .si { color: #00cc66 } /* Literal.String.Interpol */
|
||||
.literal-block .sx { color: #318495 } /* Literal.String.Other */
|
||||
.literal-block .sr { color: #00cc66 } /* Literal.String.Regex */
|
||||
.literal-block .s1 { color: #00cc66 } /* Literal.String.Single */
|
||||
.literal-block .ss { color: #c5060b; font-weight: bold } /* Literal.String.Symbol */
|
||||
.literal-block .bp { color: #5918bb; font-weight: bold } /* Name.Builtin.Pseudo */
|
||||
.literal-block .fm { color: #ff8000; font-weight: bold } /* Name.Function.Magic */
|
||||
.literal-block .il { color: #5918bb; font-weight: bold } /* Literal.Number.Integer.Long */
|