Updated pelican-bootstrap to v1.2

This commit is contained in:
Daan Debie
2014-01-27 23:38:37 +01:00
parent c35cbabcaf
commit fd1a4eaba4
56 changed files with 3145 additions and 615 deletions

View File

@@ -0,0 +1,16 @@
The primary author of this project is:
- [Daan Debie](https://github.com/DandyDev) aka `DandyDev`
And Pelican Bootstrap 3 would not have been possible without the outstanding contributions of the following fine people:
- [Magnun Leno](https://github.com/magnunleno) aka `magnunleno`
- [Hilmar Lapp](https://github.com/hlapp) aka `hlapp`
- [mwcz](https://github.com/mwcz)
- [Sebastian Kempken](https://github.com/skempken) aka `skempken`
- [Sagar Behere](https://github.com/sagarbehere) aka `sagarbehere`
- [Romulo Jales](https://github.com/romulojales) aka `romulojales`
- [Mike Abrahamsen](https://github.com/mikeabrahamsen) aka `mikeabrahamsen`
(For a full contribution overview [look here](https://github.com/DandyDev/pelican-bootstrap3/graphs/contributors).
If you name is missing, please tell me!)

View File

@@ -0,0 +1,16 @@
# Guidelines For Contributing
- Create a new git branch specific to your change, as opposed to making your commits in the master branch.
- Don't put multiple fixes/features in the same branch / pull request.
- Give a proper description in your pull request of what you're trying to fix.
- First line of your commit message should start with present-tense verb, be 50 characters or less, and include the
relevant issue number(s) if applicable. Example: _Ensure proper PLUGIN_PATH behavior. Refs #428._ If the commit completely
fixes an existing issue or request on the tracker, please use `Fixes #585` or `Fix #585` syntax (so the relevant issue is automatically closed
upon PR merge).
- Make sure that new features are configurable using a theme variable (eg. `DISPLAY_CHUCKNORRIS_ADVICE`). Should default to
_False_, so users will not get any surprises when upgrading.
- If you introduce new theme variables, new behaviour or changes from the default Pelican behaviour, make sure you make
mention of it in the [README](README.md)
- Make sure changes do not break backwards compatibility, especially with regards to settings.
- Only changes that stand to benefit a majority of users or use cases are suitable for contributing back to the main repository. For tweaks that are likely specific to your site or likings, try using `CUSTOM_CSS`.
- If doing so would require a CSS selector that isn't supported by the theme, create a patch that adds the necessary CSS selector, not the CSS tweak.

View File

@@ -1,10 +1,13 @@
# pelican-bootstrap3 # pelican-bootstrap3
This is a Bootstrap 3 theme for Pelican. It's fully responsive. Bootstrap 3 has seen an official, final release now, so I don't expect any breaking changes anymore. I will try to keep it up-to-date. This is a Bootstrap 3 theme for Pelican. It's fully responsive. Bootstrap 3 has seen an official, final release now, so
I don't expect any breaking changes anymore. I will try to keep it up-to-date.
## NOTE ## CONTRIBUTING
If you want to adjust this theme to your own liking, I encourage you to fork it. This theme has started to gather more and more attention in the form of stars and forks. I'm not seeing much real participation though :) If you make improvements that are useful to others and can make the theme better in general **please don't hesitate to make a pull request**. If you want to adjust this theme to your own liking, I encourage you to fork it. This theme has started to gather more
and more attention in the form of stars and forks. If you make improvements that are useful to others and can make the
theme better in general **please don't hesitate to make a pull request**. For contributing guidelines, [look here](CONTRIBUTING.md)
## Installation ## Installation
@@ -27,6 +30,7 @@ This theme honors the following standard Pelican settings:
* `DISPLAY_PAGES_ON_MENU` * `DISPLAY_PAGES_ON_MENU`
* `DISPLAY_CATEGORIES_ON_MENU` * `DISPLAY_CATEGORIES_ON_MENU`
* `MENUITEMS` * `MENUITEMS`
* `LINKS` (Blogroll will be put in the sidebar instead of the head)
* Analytics & Comments * Analytics & Comments
* `GOOGLE_ANALYTICS` * `GOOGLE_ANALYTICS`
* `DISQUS_SITENAME` * `DISQUS_SITENAME`
@@ -36,6 +40,75 @@ It uses the `tag_cloud` variable for displaying tags in the sidebar. You can con
## Extras ## Extras
### Custom CSS
If you want to add custom css to the theme, without having to clone and maintain your own version of the theme, you can use the `CUSTOM_CSS` variable. The value is the location where you tell Pelican to put the file (see below):
```
CUSTOM_CSS = 'static/custom.css'
```
To tell Pelican to copy the relevant file to the desired destination, add the path to `STATIC_PATHS` and the destination to `EXTRA_PATH_METADATA`, like so:
```
# Tell Pelican to add 'extra/custom.css' to the output dir
STATIC_PATHS = ['images', 'extra/custom.css']
# Tell Pelican to change the path to 'static/custom.css' in the output dir
EXTRA_PATH_METADATA = {
'extra/custom.css': {'path': 'static/custom.css'}
}
```
### Pygments
You can choose the syntax highlighting style by using the `PYGMENTS_STYLE` variable to specify one of the built-in Pygments styles. By default the `native` style is used. The following styles are avaiable:
- autumn
- borland
- bw
- colorful
- default
- emacs
- friendly
- fruity
- manni
- monokai
- murphy
- native
- pastie
- perldoc
- solarizeddark
- solarizedlight
- tango
- trac
- vim
- vs
For a demo of the different Pygment styles, have a look [here](http://pygments.org/demo/218030/)
### Site Brand
You can provide a logo for your site using `SITELOGO`. For example: `SITELOGO = 'images/my_site_logo.png'`. You can then define the size of the logo using `SITELOGO_SIZE`. The `width` of the `<img>` element will be set accordingly.
By default the `SITENAME` will be shown as well. It's also possible to hide the site name using the `HIDE_SITENAME` flag.
### Breadcrumbs
It's possible to show breadcrumbs in your site using the `DISPLAY_BREADCRUMBS` flag. By default the article category isn't shown in the breadcrumbs, if you wish to enable it, set the `DISPLAY_CATEGORY_IN_BREADCRUMBS` flag to _True_.
### Navbar
If you wish to use the inverse navbar from Bootstrap, set the flag `BOOTSTRAP_NAVBAR_INVERSE` to _True_.
### Related Posts
This theme has support for the [Related Posts plugin](https://github.com/getpelican/pelican-plugins/tree/master/related_posts). All you have to do, is enable the plugin, and the theme will do the rest.
### Favicon
Set the `FAVICON` option in your `pelicanconf.py`. For example: `FAVICON = 'images/favicon.png'`
### Sidebar options ### Sidebar options
The following things can be displayed on the sidebar: The following things can be displayed on the sidebar:
@@ -53,10 +126,30 @@ SOCIAL = (('twitter', 'http://twitter.com/DaanDebie'),
* **Recent Posts** will be shown if `DISPLAY_RECENT_POSTS_ON_SIDEBAR` is set to _True_ * **Recent Posts** will be shown if `DISPLAY_RECENT_POSTS_ON_SIDEBAR` is set to _True_
* Use `RECENT_POST_COUNT` to control the amount of recent posts. Defaults to **5** * Use `RECENT_POST_COUNT` to control the amount of recent posts. Defaults to **5**
To remove the sidebar entirely, set `HIDE_SIDEBAR` to _True_.
### reStructuredText styles ### reStructuredText styles
If you're using reStructuredText for writing articles and pages, you can include the extra CSS styles that are used by the `docutils`-generated HTML by setting `DOCUTIL_CSS` to True. This can be done as a global setting or setting it in the metadata of a specific article or page. If you're using reStructuredText for writing articles and pages, you can include the extra CSS styles that are used by the `docutils`-generated HTML by setting `DOCUTIL_CSS` to True. This can be done as a global setting or setting it in the metadata of a specific article or page.
### Disqus comments
* This theme sets identifiers for each article's comment threads. If you are switching from a theme that doesn't (such as the Pelican built-in default) this will result in existing comments getting lost. To prevent this, set DISQUS_NO_ID to _True_.
* Set DISQUS_ID_PREFIX_SLUG to _True_ if you have configured your article URLs such that the slug alone will likely not be unique. Ignored if DISQUS_NO_ID is _True_.
* To show Disqus comment counts on the index page, set DISQUS_DISPLAY_COUNTS to _True_.
### Content license
You can optionally declare a [Creative Commons license](http://creativecommons.org) for the content of your site. It will appear in the site's footer. To enable, use one of the following two ways for configuration.
* To choose the license by name, set `CC_LICENSE` to the common abbreviated name of the license: `"CC-BY"` (require attribution), `"CC-BY-SA"` (require ShareAlike), `"CC-BY-ND"` (NoDerivatives) , `"CC-BY-NC"` (require attribution, no commercial reuse), `"CC-BY-NC-SA"` (require ShareAlike, no commercial reuse), or `"CC-BY-NC-ND"` (NoDerivatives, no commercial reuse).
* Alternatively, choose the licence by features:
* `CC_LICENSE_DERIVATIVES` - `"yes"` if permitted, `"no"` if not permitted, and `"ShareAlike"` if derivatives must be shared under the same terms.
* `CC_LICENSE_COMMERCIAL` - `"yes"` if commercial reuse is permitted, and `"no"` otherwise.
* Optionally, you can include attribution markup in the license mark by setting `CC_ATTR_MARKUP` to _True_.
The license choice mirrors the [Creative Commons License Chooser](http://creativecommons.org/choose/). Source for the macro that renders the mark is at http://github.com/hlapp/cc-tools.
### GitHub ### GitHub
The theme can show your most recently active GitHub repos in the sidebar. To enable, provide a `GITHUB_USER`. Appearance and behaviour can be controlled using the following variables: The theme can show your most recently active GitHub repos in the sidebar. To enable, provide a `GITHUB_USER`. Appearance and behaviour can be controlled using the following variables:
@@ -77,11 +170,11 @@ You can enable sharing buttons through [AddThis](http://www.addthis.com/) by set
### Facebook Open Graph ### Facebook Open Graph
In order to make the Facebook like button work better, the template contains Open Graph metatags like `<meta property="og:type" content="article"/>`. You can disable them by setting `USE_OPEN_GRAPH` to `False`. You can use `OPEN_GRAPH_FB_APP_ID` to provide a Facebook _app id_. You can also provide a default image that will be passed to Facebook for the homepage of you site by setting `OPEN_GRAPH_IMAGE` to a relative file path, which will be prefixed by your site's static directory. In order to make the Facebook like button work better, the template contains Open Graph metatags like `<meta property="og:type" content="article"/>`. You can disable them by setting `USE_OPEN_GRAPH` to _False_. You can use `OPEN_GRAPH_FB_APP_ID` to provide a Facebook _app id_. You can also provide a default image that will be passed to Facebook for the homepage of you site by setting `OPEN_GRAPH_IMAGE` to a relative file path, which will be prefixed by your site's static directory.
### Footer ### Footer
The footer will display a copyright message using the AUTHOR variable and the year of the latest post. The footer will display a copyright message using the AUTHOR variable and the year of the latest post. If a content license mark is enabled (see above), that will be shown as well.
## Screenshot ## Screenshot

Binary file not shown.

Before

Width:  |  Height:  |  Size: 214 KiB

After

Width:  |  Height:  |  Size: 231 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 276 KiB

After

Width:  |  Height:  |  Size: 227 KiB

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@@ -1,69 +0,0 @@
.hll { background-color: #404040 }
.c { color: #999999; font-style: italic } /* Comment */
.err { color: #a61717; background-color: #e3d2d2 } /* Error */
.g { color: #d0d0d0 } /* Generic */
.k { color: #6ab825; font-weight: bold } /* Keyword */
.l { color: #d0d0d0 } /* Literal */
.n { color: #d0d0d0 } /* Name */
.o { color: #d0d0d0 } /* Operator */
.x { color: #d0d0d0 } /* Other */
.p { color: #d0d0d0 } /* Punctuation */
.cm { color: #999999; font-style: italic } /* Comment.Multiline */
.cp { color: #cd2828; font-weight: bold } /* Comment.Preproc */
.c1 { color: #999999; font-style: italic } /* Comment.Single */
.cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */
.gd { color: #d22323 } /* Generic.Deleted */
.ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */
.gr { color: #d22323 } /* Generic.Error */
.gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
.gi { color: #589819 } /* Generic.Inserted */
.go { color: #cccccc } /* Generic.Output */
.gp { color: #aaaaaa } /* Generic.Prompt */
.gs { color: #d0d0d0; font-weight: bold } /* Generic.Strong */
.gu { color: #ffffff; text-decoration: underline } /* Generic.Subheading */
.gt { color: #d22323 } /* Generic.Traceback */
.kc { color: #6ab825; font-weight: bold } /* Keyword.Constant */
.kd { color: #6ab825; font-weight: bold } /* Keyword.Declaration */
.kn { color: #6ab825; font-weight: bold } /* Keyword.Namespace */
.kp { color: #6ab825 } /* Keyword.Pseudo */
.kr { color: #6ab825; font-weight: bold } /* Keyword.Reserved */
.kt { color: #6ab825; font-weight: bold } /* Keyword.Type */
.ld { color: #d0d0d0 } /* Literal.Date */
.m { color: #3677a9 } /* Literal.Number */
.s { color: #ed9d13 } /* Literal.String */
.na { color: #bbbbbb } /* Name.Attribute */
.nb { color: #24909d } /* Name.Builtin */
.nc { color: #447fcf; text-decoration: underline } /* Name.Class */
.no { color: #40ffff } /* Name.Constant */
.nd { color: #ffa500 } /* Name.Decorator */
.ni { color: #d0d0d0 } /* Name.Entity */
.ne { color: #bbbbbb } /* Name.Exception */
.nf { color: #447fcf } /* Name.Function */
.nl { color: #d0d0d0 } /* Name.Label */
.nn { color: #447fcf; text-decoration: underline } /* Name.Namespace */
.nx { color: #d0d0d0 } /* Name.Other */
.py { color: #d0d0d0 } /* Name.Property */
.nt { color: #6ab825; font-weight: bold } /* Name.Tag */
.nv { color: #40ffff } /* Name.Variable */
.ow { color: #6ab825; font-weight: bold } /* Operator.Word */
.w { color: #666666 } /* Text.Whitespace */
.mf { color: #3677a9 } /* Literal.Number.Float */
.mh { color: #3677a9 } /* Literal.Number.Hex */
.mi { color: #3677a9 } /* Literal.Number.Integer */
.mo { color: #3677a9 } /* Literal.Number.Oct */
.sb { color: #ed9d13 } /* Literal.String.Backtick */
.sc { color: #ed9d13 } /* Literal.String.Char */
.sd { color: #ed9d13 } /* Literal.String.Doc */
.s2 { color: #ed9d13 } /* Literal.String.Double */
.se { color: #ed9d13 } /* Literal.String.Escape */
.sh { color: #ed9d13 } /* Literal.String.Heredoc */
.si { color: #ed9d13 } /* Literal.String.Interpol */
.sx { color: #ffa500 } /* Literal.String.Other */
.sr { color: #ed9d13 } /* Literal.String.Regex */
.s1 { color: #ed9d13 } /* Literal.String.Single */
.ss { color: #ed9d13 } /* Literal.String.Symbol */
.bp { color: #24909d } /* Name.Builtin.Pseudo */
.vc { color: #40ffff } /* Name.Variable.Class */
.vg { color: #40ffff } /* Name.Variable.Global */
.vi { color: #40ffff } /* Name.Variable.Instance */
.il { color: #3677a9 } /* Literal.Number.Integer.Long */

View File

@@ -0,0 +1,59 @@
.highlight pre .hll { background-color: #ffffcc }
.highlight pre, .highlighttable pre { background: #ffffff; }
.highlight pre .c { color: #aaaaaa; font-style: italic } /* Comment */
.highlight pre .err { color: #FF0000; background-color: #FFAAAA } /* Error */
.highlight pre .k { color: #0000aa } /* Keyword */
.highlight pre .cm { color: #aaaaaa; font-style: italic } /* Comment.Multiline */
.highlight pre .cp { color: #4c8317 } /* Comment.Preproc */
.highlight pre .c1 { color: #aaaaaa; font-style: italic } /* Comment.Single */
.highlight pre .cs { color: #0000aa; font-style: italic } /* Comment.Special */
.highlight pre .gd { color: #aa0000 } /* Generic.Deleted */
.highlight pre .ge { font-style: italic } /* Generic.Emph */
.highlight pre .gr { color: #aa0000 } /* Generic.Error */
.highlight pre .gh { color: #000080; font-weight: bold } /* Generic.Heading */
.highlight pre .gi { color: #00aa00 } /* Generic.Inserted */
.highlight pre .go { color: #888888 } /* Generic.Output */
.highlight pre .gp { color: #555555 } /* Generic.Prompt */
.highlight pre .gs { font-weight: bold } /* Generic.Strong */
.highlight pre .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.highlight pre .gt { color: #aa0000 } /* Generic.Traceback */
.highlight pre .kc { color: #0000aa } /* Keyword.Constant */
.highlight pre .kd { color: #0000aa } /* Keyword.Declaration */
.highlight pre .kn { color: #0000aa } /* Keyword.Namespace */
.highlight pre .kp { color: #0000aa } /* Keyword.Pseudo */
.highlight pre .kr { color: #0000aa } /* Keyword.Reserved */
.highlight pre .kt { color: #00aaaa } /* Keyword.Type */
.highlight pre .m { color: #009999 } /* Literal.Number */
.highlight pre .s { color: #aa5500 } /* Literal.String */
.highlight pre .na { color: #1e90ff } /* Name.Attribute */
.highlight pre .nb { color: #00aaaa } /* Name.Builtin */
.highlight pre .nc { color: #00aa00; text-decoration: underline } /* Name.Class */
.highlight pre .no { color: #aa0000 } /* Name.Constant */
.highlight pre .nd { color: #888888 } /* Name.Decorator */
.highlight pre .ni { color: #880000; font-weight: bold } /* Name.Entity */
.highlight pre .nf { color: #00aa00 } /* Name.Function */
.highlight pre .nn { color: #00aaaa; text-decoration: underline } /* Name.Namespace */
.highlight pre .nt { color: #1e90ff; font-weight: bold } /* Name.Tag */
.highlight pre .nv { color: #aa0000 } /* Name.Variable */
.highlight pre .ow { color: #0000aa } /* Operator.Word */
.highlight pre .w { color: #bbbbbb } /* Text.Whitespace */
.highlight pre .mf { color: #009999 } /* Literal.Number.Float */
.highlight pre .mh { color: #009999 } /* Literal.Number.Hex */
.highlight pre .mi { color: #009999 } /* Literal.Number.Integer */
.highlight pre .mo { color: #009999 } /* Literal.Number.Oct */
.highlight pre .sb { color: #aa5500 } /* Literal.String.Backtick */
.highlight pre .sc { color: #aa5500 } /* Literal.String.Char */
.highlight pre .sd { color: #aa5500 } /* Literal.String.Doc */
.highlight pre .s2 { color: #aa5500 } /* Literal.String.Double */
.highlight pre .se { color: #aa5500 } /* Literal.String.Escape */
.highlight pre .sh { color: #aa5500 } /* Literal.String.Heredoc */
.highlight pre .si { color: #aa5500 } /* Literal.String.Interpol */
.highlight pre .sx { color: #aa5500 } /* Literal.String.Other */
.highlight pre .sr { color: #009999 } /* Literal.String.Regex */
.highlight pre .s1 { color: #aa5500 } /* Literal.String.Single */
.highlight pre .ss { color: #0000aa } /* Literal.String.Symbol */
.highlight pre .bp { color: #00aaaa } /* Name.Builtin.Pseudo */
.highlight pre .vc { color: #aa0000 } /* Name.Variable.Class */
.highlight pre .vg { color: #aa0000 } /* Name.Variable.Global */
.highlight pre .vi { color: #aa0000 } /* Name.Variable.Instance */
.highlight pre .il { color: #009999 } /* Literal.Number.Integer.Long */

View File

@@ -0,0 +1,47 @@
.highlight pre .hll { background-color: #ffffcc }
.highlight pre, .highlighttable pre { background: #ffffff; }
.highlight pre .c { color: #008800; font-style: italic } /* Comment */
.highlight pre .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight pre .k { color: #000080; font-weight: bold } /* Keyword */
.highlight pre .cm { color: #008800; font-style: italic } /* Comment.Multiline */
.highlight pre .cp { color: #008080 } /* Comment.Preproc */
.highlight pre .c1 { color: #008800; font-style: italic } /* Comment.Single */
.highlight pre .cs { color: #008800; font-weight: bold } /* Comment.Special */
.highlight pre .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight pre .ge { font-style: italic } /* Generic.Emph */
.highlight pre .gr { color: #aa0000 } /* Generic.Error */
.highlight pre .gh { color: #999999 } /* Generic.Heading */
.highlight pre .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight pre .go { color: #888888 } /* Generic.Output */
.highlight pre .gp { color: #555555 } /* Generic.Prompt */
.highlight pre .gs { font-weight: bold } /* Generic.Strong */
.highlight pre .gu { color: #aaaaaa } /* Generic.Subheading */
.highlight pre .gt { color: #aa0000 } /* Generic.Traceback */
.highlight pre .kc { color: #000080; font-weight: bold } /* Keyword.Constant */
.highlight pre .kd { color: #000080; font-weight: bold } /* Keyword.Declaration */
.highlight pre .kn { color: #000080; font-weight: bold } /* Keyword.Namespace */
.highlight pre .kp { color: #000080; font-weight: bold } /* Keyword.Pseudo */
.highlight pre .kr { color: #000080; font-weight: bold } /* Keyword.Reserved */
.highlight pre .kt { color: #000080; font-weight: bold } /* Keyword.Type */
.highlight pre .m { color: #0000FF } /* Literal.Number */
.highlight pre .s { color: #0000FF } /* Literal.String */
.highlight pre .na { color: #FF0000 } /* Name.Attribute */
.highlight pre .nt { color: #000080; font-weight: bold } /* Name.Tag */
.highlight pre .ow { font-weight: bold } /* Operator.Word */
.highlight pre .w { color: #bbbbbb } /* Text.Whitespace */
.highlight pre .mf { color: #0000FF } /* Literal.Number.Float */
.highlight pre .mh { color: #0000FF } /* Literal.Number.Hex */
.highlight pre .mi { color: #0000FF } /* Literal.Number.Integer */
.highlight pre .mo { color: #0000FF } /* Literal.Number.Oct */
.highlight pre .sb { color: #0000FF } /* Literal.String.Backtick */
.highlight pre .sc { color: #800080 } /* Literal.String.Char */
.highlight pre .sd { color: #0000FF } /* Literal.String.Doc */
.highlight pre .s2 { color: #0000FF } /* Literal.String.Double */
.highlight pre .se { color: #0000FF } /* Literal.String.Escape */
.highlight pre .sh { color: #0000FF } /* Literal.String.Heredoc */
.highlight pre .si { color: #0000FF } /* Literal.String.Interpol */
.highlight pre .sx { color: #0000FF } /* Literal.String.Other */
.highlight pre .sr { color: #0000FF } /* Literal.String.Regex */
.highlight pre .s1 { color: #0000FF } /* Literal.String.Single */
.highlight pre .ss { color: #0000FF } /* Literal.String.Symbol */
.highlight pre .il { color: #0000FF } /* Literal.Number.Integer.Long */

View File

@@ -0,0 +1,35 @@
.highlight pre .hll { background-color: #ffffcc }
.highlight pre, .highlighttable pre { background: #ffffff; }
.highlight pre .c { font-style: italic } /* Comment */
.highlight pre .err { border: 1px solid #FF0000 } /* Error */
.highlight pre .k { font-weight: bold } /* Keyword */
.highlight pre .cm { font-style: italic } /* Comment.Multiline */
.highlight pre .c1 { font-style: italic } /* Comment.Single */
.highlight pre .cs { font-style: italic } /* Comment.Special */
.highlight pre .ge { font-style: italic } /* Generic.Emph */
.highlight pre .gh { font-weight: bold } /* Generic.Heading */
.highlight pre .gp { font-weight: bold } /* Generic.Prompt */
.highlight pre .gs { font-weight: bold } /* Generic.Strong */
.highlight pre .gu { font-weight: bold } /* Generic.Subheading */
.highlight pre .kc { font-weight: bold } /* Keyword.Constant */
.highlight pre .kd { font-weight: bold } /* Keyword.Declaration */
.highlight pre .kn { font-weight: bold } /* Keyword.Namespace */
.highlight pre .kr { font-weight: bold } /* Keyword.Reserved */
.highlight pre .s { font-style: italic } /* Literal.String */
.highlight pre .nc { font-weight: bold } /* Name.Class */
.highlight pre .ni { font-weight: bold } /* Name.Entity */
.highlight pre .ne { font-weight: bold } /* Name.Exception */
.highlight pre .nn { font-weight: bold } /* Name.Namespace */
.highlight pre .nt { font-weight: bold } /* Name.Tag */
.highlight pre .ow { font-weight: bold } /* Operator.Word */
.highlight pre .sb { font-style: italic } /* Literal.String.Backtick */
.highlight pre .sc { font-style: italic } /* Literal.String.Char */
.highlight pre .sd { font-style: italic } /* Literal.String.Doc */
.highlight pre .s2 { font-style: italic } /* Literal.String.Double */
.highlight pre .se { font-weight: bold; font-style: italic } /* Literal.String.Escape */
.highlight pre .sh { font-style: italic } /* Literal.String.Heredoc */
.highlight pre .si { font-weight: bold; font-style: italic } /* Literal.String.Interpol */
.highlight pre .sx { font-style: italic } /* Literal.String.Other */
.highlight pre .sr { font-style: italic } /* Literal.String.Regex */
.highlight pre .s1 { font-style: italic } /* Literal.String.Single */
.highlight pre .ss { font-style: italic } /* Literal.String.Symbol */

View File

@@ -0,0 +1,62 @@
.highlight pre .hll { background-color: #ffffcc }
.highlight pre, .highlighttable pre { background: #ffffff; }
.highlight pre .c { color: #888888 } /* Comment */
.highlight pre .err { color: #FF0000; background-color: #FFAAAA } /* Error */
.highlight pre .k { color: #008800; font-weight: bold } /* Keyword */
.highlight pre .o { color: #333333 } /* Operator */
.highlight pre .cm { color: #888888 } /* Comment.Multiline */
.highlight pre .cp { color: #557799 } /* Comment.Preproc */
.highlight pre .c1 { color: #888888 } /* Comment.Single */
.highlight pre .cs { color: #cc0000; font-weight: bold } /* Comment.Special */
.highlight pre .gd { color: #A00000 } /* Generic.Deleted */
.highlight pre .ge { font-style: italic } /* Generic.Emph */
.highlight pre .gr { color: #FF0000 } /* Generic.Error */
.highlight pre .gh { color: #000080; font-weight: bold } /* Generic.Heading */
.highlight pre .gi { color: #00A000 } /* Generic.Inserted */
.highlight pre .go { color: #888888 } /* Generic.Output */
.highlight pre .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
.highlight pre .gs { font-weight: bold } /* Generic.Strong */
.highlight pre .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.highlight pre .gt { color: #0044DD } /* Generic.Traceback */
.highlight pre .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
.highlight pre .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
.highlight pre .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
.highlight pre .kp { color: #003388; font-weight: bold } /* Keyword.Pseudo */
.highlight pre .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
.highlight pre .kt { color: #333399; font-weight: bold } /* Keyword.Type */
.highlight pre .m { color: #6600EE; font-weight: bold } /* Literal.Number */
.highlight pre .s { background-color: #fff0f0 } /* Literal.String */
.highlight pre .na { color: #0000CC } /* Name.Attribute */
.highlight pre .nb { color: #007020 } /* Name.Builtin */
.highlight pre .nc { color: #BB0066; font-weight: bold } /* Name.Class */
.highlight pre .no { color: #003366; font-weight: bold } /* Name.Constant */
.highlight pre .nd { color: #555555; font-weight: bold } /* Name.Decorator */
.highlight pre .ni { color: #880000; font-weight: bold } /* Name.Entity */
.highlight pre .ne { color: #FF0000; font-weight: bold } /* Name.Exception */
.highlight pre .nf { color: #0066BB; font-weight: bold } /* Name.Function */
.highlight pre .nl { color: #997700; font-weight: bold } /* Name.Label */
.highlight pre .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
.highlight pre .nt { color: #007700 } /* Name.Tag */
.highlight pre .nv { color: #996633 } /* Name.Variable */
.highlight pre .ow { color: #000000; font-weight: bold } /* Operator.Word */
.highlight pre .w { color: #bbbbbb } /* Text.Whitespace */
.highlight pre .mf { color: #6600EE; font-weight: bold } /* Literal.Number.Float */
.highlight pre .mh { color: #005588; font-weight: bold } /* Literal.Number.Hex */
.highlight pre .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
.highlight pre .mo { color: #4400EE; font-weight: bold } /* Literal.Number.Oct */
.highlight pre .sb { background-color: #fff0f0 } /* Literal.String.Backtick */
.highlight pre .sc { color: #0044DD } /* Literal.String.Char */
.highlight pre .sd { color: #DD4422 } /* Literal.String.Doc */
.highlight pre .s2 { background-color: #fff0f0 } /* Literal.String.Double */
.highlight pre .se { color: #666666; font-weight: bold; background-color: #fff0f0 } /* Literal.String.Escape */
.highlight pre .sh { background-color: #fff0f0 } /* Literal.String.Heredoc */
.highlight pre .si { background-color: #eeeeee } /* Literal.String.Interpol */
.highlight pre .sx { color: #DD2200; background-color: #fff0f0 } /* Literal.String.Other */
.highlight pre .sr { color: #000000; background-color: #fff0ff } /* Literal.String.Regex */
.highlight pre .s1 { background-color: #fff0f0 } /* Literal.String.Single */
.highlight pre .ss { color: #AA6600 } /* Literal.String.Symbol */
.highlight pre .bp { color: #007020 } /* Name.Builtin.Pseudo */
.highlight pre .vc { color: #336699 } /* Name.Variable.Class */
.highlight pre .vg { color: #dd7700; font-weight: bold } /* Name.Variable.Global */
.highlight pre .vi { color: #3333BB } /* Name.Variable.Instance */
.highlight pre .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */

View File

@@ -0,0 +1,62 @@
.highlight pre .hll { background-color: #ffffcc }
.highlight pre, .highlighttable pre { background: #f8f8f8; }
.highlight pre .c { color: #408080; font-style: italic } /* Comment */
.highlight pre .err { border: 1px solid #FF0000 } /* Error */
.highlight pre .k { color: #008000; font-weight: bold } /* Keyword */
.highlight pre .o { color: #666666 } /* Operator */
.highlight pre .cm { color: #408080; font-style: italic } /* Comment.Multiline */
.highlight pre .cp { color: #BC7A00 } /* Comment.Preproc */
.highlight pre .c1 { color: #408080; font-style: italic } /* Comment.Single */
.highlight pre .cs { color: #408080; font-style: italic } /* Comment.Special */
.highlight pre .gd { color: #A00000 } /* Generic.Deleted */
.highlight pre .ge { font-style: italic } /* Generic.Emph */
.highlight pre .gr { color: #FF0000 } /* Generic.Error */
.highlight pre .gh { color: #000080; font-weight: bold } /* Generic.Heading */
.highlight pre .gi { color: #00A000 } /* Generic.Inserted */
.highlight pre .go { color: #888888 } /* Generic.Output */
.highlight pre .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
.highlight pre .gs { font-weight: bold } /* Generic.Strong */
.highlight pre .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.highlight pre .gt { color: #0044DD } /* Generic.Traceback */
.highlight pre .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
.highlight pre .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
.highlight pre .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
.highlight pre .kp { color: #008000 } /* Keyword.Pseudo */
.highlight pre .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
.highlight pre .kt { color: #B00040 } /* Keyword.Type */
.highlight pre .m { color: #666666 } /* Literal.Number */
.highlight pre .s { color: #BA2121 } /* Literal.String */
.highlight pre .na { color: #7D9029 } /* Name.Attribute */
.highlight pre .nb { color: #008000 } /* Name.Builtin */
.highlight pre .nc { color: #0000FF; font-weight: bold } /* Name.Class */
.highlight pre .no { color: #880000 } /* Name.Constant */
.highlight pre .nd { color: #AA22FF } /* Name.Decorator */
.highlight pre .ni { color: #999999; font-weight: bold } /* Name.Entity */
.highlight pre .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
.highlight pre .nf { color: #0000FF } /* Name.Function */
.highlight pre .nl { color: #A0A000 } /* Name.Label */
.highlight pre .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
.highlight pre .nt { color: #008000; font-weight: bold } /* Name.Tag */
.highlight pre .nv { color: #19177C } /* Name.Variable */
.highlight pre .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
.highlight pre .w { color: #bbbbbb } /* Text.Whitespace */
.highlight pre .mf { color: #666666 } /* Literal.Number.Float */
.highlight pre .mh { color: #666666 } /* Literal.Number.Hex */
.highlight pre .mi { color: #666666 } /* Literal.Number.Integer */
.highlight pre .mo { color: #666666 } /* Literal.Number.Oct */
.highlight pre .sb { color: #BA2121 } /* Literal.String.Backtick */
.highlight pre .sc { color: #BA2121 } /* Literal.String.Char */
.highlight pre .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
.highlight pre .s2 { color: #BA2121 } /* Literal.String.Double */
.highlight pre .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
.highlight pre .sh { color: #BA2121 } /* Literal.String.Heredoc */
.highlight pre .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
.highlight pre .sx { color: #008000 } /* Literal.String.Other */
.highlight pre .sr { color: #BB6688 } /* Literal.String.Regex */
.highlight pre .s1 { color: #BA2121 } /* Literal.String.Single */
.highlight pre .ss { color: #19177C } /* Literal.String.Symbol */
.highlight pre .bp { color: #008000 } /* Name.Builtin.Pseudo */
.highlight pre .vc { color: #19177C } /* Name.Variable.Class */
.highlight pre .vg { color: #19177C } /* Name.Variable.Global */
.highlight pre .vi { color: #19177C } /* Name.Variable.Instance */
.highlight pre .il { color: #666666 } /* Literal.Number.Integer.Long */

View File

@@ -0,0 +1,62 @@
.highlight pre .hll { background-color: #ffffcc }
.highlight pre, .highlighttable pre { background: #f8f8f8; }
.highlight pre .c { color: #008800; font-style: italic } /* Comment */
.highlight pre .err { border: 1px solid #FF0000 } /* Error */
.highlight pre .k { color: #AA22FF; font-weight: bold } /* Keyword */
.highlight pre .o { color: #666666 } /* Operator */
.highlight pre .cm { color: #008800; font-style: italic } /* Comment.Multiline */
.highlight pre .cp { color: #008800 } /* Comment.Preproc */
.highlight pre .c1 { color: #008800; font-style: italic } /* Comment.Single */
.highlight pre .cs { color: #008800; font-weight: bold } /* Comment.Special */
.highlight pre .gd { color: #A00000 } /* Generic.Deleted */
.highlight pre .ge { font-style: italic } /* Generic.Emph */
.highlight pre .gr { color: #FF0000 } /* Generic.Error */
.highlight pre .gh { color: #000080; font-weight: bold } /* Generic.Heading */
.highlight pre .gi { color: #00A000 } /* Generic.Inserted */
.highlight pre .go { color: #888888 } /* Generic.Output */
.highlight pre .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
.highlight pre .gs { font-weight: bold } /* Generic.Strong */
.highlight pre .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.highlight pre .gt { color: #0044DD } /* Generic.Traceback */
.highlight pre .kc { color: #AA22FF; font-weight: bold } /* Keyword.Constant */
.highlight pre .kd { color: #AA22FF; font-weight: bold } /* Keyword.Declaration */
.highlight pre .kn { color: #AA22FF; font-weight: bold } /* Keyword.Namespace */
.highlight pre .kp { color: #AA22FF } /* Keyword.Pseudo */
.highlight pre .kr { color: #AA22FF; font-weight: bold } /* Keyword.Reserved */
.highlight pre .kt { color: #00BB00; font-weight: bold } /* Keyword.Type */
.highlight pre .m { color: #666666 } /* Literal.Number */
.highlight pre .s { color: #BB4444 } /* Literal.String */
.highlight pre .na { color: #BB4444 } /* Name.Attribute */
.highlight pre .nb { color: #AA22FF } /* Name.Builtin */
.highlight pre .nc { color: #0000FF } /* Name.Class */
.highlight pre .no { color: #880000 } /* Name.Constant */
.highlight pre .nd { color: #AA22FF } /* Name.Decorator */
.highlight pre .ni { color: #999999; font-weight: bold } /* Name.Entity */
.highlight pre .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
.highlight pre .nf { color: #00A000 } /* Name.Function */
.highlight pre .nl { color: #A0A000 } /* Name.Label */
.highlight pre .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
.highlight pre .nt { color: #008000; font-weight: bold } /* Name.Tag */
.highlight pre .nv { color: #B8860B } /* Name.Variable */
.highlight pre .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
.highlight pre .w { color: #bbbbbb } /* Text.Whitespace */
.highlight pre .mf { color: #666666 } /* Literal.Number.Float */
.highlight pre .mh { color: #666666 } /* Literal.Number.Hex */
.highlight pre .mi { color: #666666 } /* Literal.Number.Integer */
.highlight pre .mo { color: #666666 } /* Literal.Number.Oct */
.highlight pre .sb { color: #BB4444 } /* Literal.String.Backtick */
.highlight pre .sc { color: #BB4444 } /* Literal.String.Char */
.highlight pre .sd { color: #BB4444; font-style: italic } /* Literal.String.Doc */
.highlight pre .s2 { color: #BB4444 } /* Literal.String.Double */
.highlight pre .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
.highlight pre .sh { color: #BB4444 } /* Literal.String.Heredoc */
.highlight pre .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
.highlight pre .sx { color: #008000 } /* Literal.String.Other */
.highlight pre .sr { color: #BB6688 } /* Literal.String.Regex */
.highlight pre .s1 { color: #BB4444 } /* Literal.String.Single */
.highlight pre .ss { color: #B8860B } /* Literal.String.Symbol */
.highlight pre .bp { color: #AA22FF } /* Name.Builtin.Pseudo */
.highlight pre .vc { color: #B8860B } /* Name.Variable.Class */
.highlight pre .vg { color: #B8860B } /* Name.Variable.Global */
.highlight pre .vi { color: #B8860B } /* Name.Variable.Instance */
.highlight pre .il { color: #666666 } /* Literal.Number.Integer.Long */

View File

@@ -0,0 +1,62 @@
.highlight pre .hll { background-color: #ffffcc }
.highlight pre, .highlighttable pre { background: #f0f0f0; }
.highlight pre .c { color: #60a0b0; font-style: italic } /* Comment */
.highlight pre .err { border: 1px solid #FF0000 } /* Error */
.highlight pre .k { color: #007020; font-weight: bold } /* Keyword */
.highlight pre .o { color: #666666 } /* Operator */
.highlight pre .cm { color: #60a0b0; font-style: italic } /* Comment.Multiline */
.highlight pre .cp { color: #007020 } /* Comment.Preproc */
.highlight pre .c1 { color: #60a0b0; font-style: italic } /* Comment.Single */
.highlight pre .cs { color: #60a0b0; background-color: #fff0f0 } /* Comment.Special */
.highlight pre .gd { color: #A00000 } /* Generic.Deleted */
.highlight pre .ge { font-style: italic } /* Generic.Emph */
.highlight pre .gr { color: #FF0000 } /* Generic.Error */
.highlight pre .gh { color: #000080; font-weight: bold } /* Generic.Heading */
.highlight pre .gi { color: #00A000 } /* Generic.Inserted */
.highlight pre .go { color: #888888 } /* Generic.Output */
.highlight pre .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
.highlight pre .gs { font-weight: bold } /* Generic.Strong */
.highlight pre .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.highlight pre .gt { color: #0044DD } /* Generic.Traceback */
.highlight pre .kc { color: #007020; font-weight: bold } /* Keyword.Constant */
.highlight pre .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */
.highlight pre .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */
.highlight pre .kp { color: #007020 } /* Keyword.Pseudo */
.highlight pre .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */
.highlight pre .kt { color: #902000 } /* Keyword.Type */
.highlight pre .m { color: #40a070 } /* Literal.Number */
.highlight pre .s { color: #4070a0 } /* Literal.String */
.highlight pre .na { color: #4070a0 } /* Name.Attribute */
.highlight pre .nb { color: #007020 } /* Name.Builtin */
.highlight pre .nc { color: #0e84b5; font-weight: bold } /* Name.Class */
.highlight pre .no { color: #60add5 } /* Name.Constant */
.highlight pre .nd { color: #555555; font-weight: bold } /* Name.Decorator */
.highlight pre .ni { color: #d55537; font-weight: bold } /* Name.Entity */
.highlight pre .ne { color: #007020 } /* Name.Exception */
.highlight pre .nf { color: #06287e } /* Name.Function */
.highlight pre .nl { color: #002070; font-weight: bold } /* Name.Label */
.highlight pre .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
.highlight pre .nt { color: #062873; font-weight: bold } /* Name.Tag */
.highlight pre .nv { color: #bb60d5 } /* Name.Variable */
.highlight pre .ow { color: #007020; font-weight: bold } /* Operator.Word */
.highlight pre .w { color: #bbbbbb } /* Text.Whitespace */
.highlight pre .mf { color: #40a070 } /* Literal.Number.Float */
.highlight pre .mh { color: #40a070 } /* Literal.Number.Hex */
.highlight pre .mi { color: #40a070 } /* Literal.Number.Integer */
.highlight pre .mo { color: #40a070 } /* Literal.Number.Oct */
.highlight pre .sb { color: #4070a0 } /* Literal.String.Backtick */
.highlight pre .sc { color: #4070a0 } /* Literal.String.Char */
.highlight pre .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */
.highlight pre .s2 { color: #4070a0 } /* Literal.String.Double */
.highlight pre .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */
.highlight pre .sh { color: #4070a0 } /* Literal.String.Heredoc */
.highlight pre .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */
.highlight pre .sx { color: #c65d09 } /* Literal.String.Other */
.highlight pre .sr { color: #235388 } /* Literal.String.Regex */
.highlight pre .s1 { color: #4070a0 } /* Literal.String.Single */
.highlight pre .ss { color: #517918 } /* Literal.String.Symbol */
.highlight pre .bp { color: #007020 } /* Name.Builtin.Pseudo */
.highlight pre .vc { color: #bb60d5 } /* Name.Variable.Class */
.highlight pre .vg { color: #bb60d5 } /* Name.Variable.Global */
.highlight pre .vi { color: #bb60d5 } /* Name.Variable.Instance */
.highlight pre .il { color: #40a070 } /* Literal.Number.Integer.Long */

View File

@@ -0,0 +1,70 @@
.highlight pre .hll { background-color: #333333 }
.highlight pre, .highlighttable pre { background: #111111; color: #ffffff }
.highlight pre .c { color: #008800; font-style: italic; background-color: #0f140f } /* Comment */
.highlight pre .err { color: #ffffff } /* Error */
.highlight pre .g { color: #ffffff } /* Generic */
.highlight pre .k { color: #fb660a; font-weight: bold } /* Keyword */
.highlight pre .l { color: #ffffff } /* Literal */
.highlight pre .n { color: #ffffff } /* Name */
.highlight pre .o { color: #ffffff } /* Operator */
.highlight pre .x { color: #ffffff } /* Other */
.highlight pre .p { color: #ffffff } /* Punctuation */
.highlight pre .cm { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Multiline */
.highlight pre .cp { color: #ff0007; font-weight: bold; font-style: italic; background-color: #0f140f } /* Comment.Preproc */
.highlight pre .c1 { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Single */
.highlight pre .cs { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Special */
.highlight pre .gd { color: #ffffff } /* Generic.Deleted */
.highlight pre .ge { color: #ffffff } /* Generic.Emph */
.highlight pre .gr { color: #ffffff } /* Generic.Error */
.highlight pre .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
.highlight pre .gi { color: #ffffff } /* Generic.Inserted */
.highlight pre .go { color: #444444; background-color: #222222 } /* Generic.Output */
.highlight pre .gp { color: #ffffff } /* Generic.Prompt */
.highlight pre .gs { color: #ffffff } /* Generic.Strong */
.highlight pre .gu { color: #ffffff; font-weight: bold } /* Generic.Subheading */
.highlight pre .gt { color: #ffffff } /* Generic.Traceback */
.highlight pre .kc { color: #fb660a; font-weight: bold } /* Keyword.Constant */
.highlight pre .kd { color: #fb660a; font-weight: bold } /* Keyword.Declaration */
.highlight pre .kn { color: #fb660a; font-weight: bold } /* Keyword.Namespace */
.highlight pre .kp { color: #fb660a } /* Keyword.Pseudo */
.highlight pre .kr { color: #fb660a; font-weight: bold } /* Keyword.Reserved */
.highlight pre .kt { color: #cdcaa9; font-weight: bold } /* Keyword.Type */
.highlight pre .ld { color: #ffffff } /* Literal.Date */
.highlight pre .m { color: #0086f7; font-weight: bold } /* Literal.Number */
.highlight pre .s { color: #0086d2 } /* Literal.String */
.highlight pre .na { color: #ff0086; font-weight: bold } /* Name.Attribute */
.highlight pre .nb { color: #ffffff } /* Name.Builtin */
.highlight pre .nc { color: #ffffff } /* Name.Class */
.highlight pre .no { color: #0086d2 } /* Name.Constant */
.highlight pre .nd { color: #ffffff } /* Name.Decorator */
.highlight pre .ni { color: #ffffff } /* Name.Entity */
.highlight pre .ne { color: #ffffff } /* Name.Exception */
.highlight pre .nf { color: #ff0086; font-weight: bold } /* Name.Function */
.highlight pre .nl { color: #ffffff } /* Name.Label */
.highlight pre .nn { color: #ffffff } /* Name.Namespace */
.highlight pre .nx { color: #ffffff } /* Name.Other */
.highlight pre .py { color: #ffffff } /* Name.Property */
.highlight pre .nt { color: #fb660a; font-weight: bold } /* Name.Tag */
.highlight pre .nv { color: #fb660a } /* Name.Variable */
.highlight pre .ow { color: #ffffff } /* Operator.Word */
.highlight pre .w { color: #888888 } /* Text.Whitespace */
.highlight pre .mf { color: #0086f7; font-weight: bold } /* Literal.Number.Float */
.highlight pre .mh { color: #0086f7; font-weight: bold } /* Literal.Number.Hex */
.highlight pre .mi { color: #0086f7; font-weight: bold } /* Literal.Number.Integer */
.highlight pre .mo { color: #0086f7; font-weight: bold } /* Literal.Number.Oct */
.highlight pre .sb { color: #0086d2 } /* Literal.String.Backtick */
.highlight pre .sc { color: #0086d2 } /* Literal.String.Char */
.highlight pre .sd { color: #0086d2 } /* Literal.String.Doc */
.highlight pre .s2 { color: #0086d2 } /* Literal.String.Double */
.highlight pre .se { color: #0086d2 } /* Literal.String.Escape */
.highlight pre .sh { color: #0086d2 } /* Literal.String.Heredoc */
.highlight pre .si { color: #0086d2 } /* Literal.String.Interpol */
.highlight pre .sx { color: #0086d2 } /* Literal.String.Other */
.highlight pre .sr { color: #0086d2 } /* Literal.String.Regex */
.highlight pre .s1 { color: #0086d2 } /* Literal.String.Single */
.highlight pre .ss { color: #0086d2 } /* Literal.String.Symbol */
.highlight pre .bp { color: #ffffff } /* Name.Builtin.Pseudo */
.highlight pre .vc { color: #fb660a } /* Name.Variable.Class */
.highlight pre .vg { color: #fb660a } /* Name.Variable.Global */
.highlight pre .vi { color: #fb660a } /* Name.Variable.Instance */
.highlight pre .il { color: #0086f7; font-weight: bold } /* Literal.Number.Integer.Long */

View File

@@ -0,0 +1,62 @@
.highlight pre .hll { background-color: #ffffcc }
.highlight pre, .highlighttable pre { background: #f0f3f3; }
.highlight pre .c { color: #0099FF; font-style: italic } /* Comment */
.highlight pre .err { color: #AA0000; background-color: #FFAAAA } /* Error */
.highlight pre .k { color: #006699; font-weight: bold } /* Keyword */
.highlight pre .o { color: #555555 } /* Operator */
.highlight pre .cm { color: #0099FF; font-style: italic } /* Comment.Multiline */
.highlight pre .cp { color: #009999 } /* Comment.Preproc */
.highlight pre .c1 { color: #0099FF; font-style: italic } /* Comment.Single */
.highlight pre .cs { color: #0099FF; font-weight: bold; font-style: italic } /* Comment.Special */
.highlight pre .gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */
.highlight pre .ge { font-style: italic } /* Generic.Emph */
.highlight pre .gr { color: #FF0000 } /* Generic.Error */
.highlight pre .gh { color: #003300; font-weight: bold } /* Generic.Heading */
.highlight pre .gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */
.highlight pre .go { color: #AAAAAA } /* Generic.Output */
.highlight pre .gp { color: #000099; font-weight: bold } /* Generic.Prompt */
.highlight pre .gs { font-weight: bold } /* Generic.Strong */
.highlight pre .gu { color: #003300; font-weight: bold } /* Generic.Subheading */
.highlight pre .gt { color: #99CC66 } /* Generic.Traceback */
.highlight pre .kc { color: #006699; font-weight: bold } /* Keyword.Constant */
.highlight pre .kd { color: #006699; font-weight: bold } /* Keyword.Declaration */
.highlight pre .kn { color: #006699; font-weight: bold } /* Keyword.Namespace */
.highlight pre .kp { color: #006699 } /* Keyword.Pseudo */
.highlight pre .kr { color: #006699; font-weight: bold } /* Keyword.Reserved */
.highlight pre .kt { color: #007788; font-weight: bold } /* Keyword.Type */
.highlight pre .m { color: #FF6600 } /* Literal.Number */
.highlight pre .s { color: #CC3300 } /* Literal.String */
.highlight pre .na { color: #330099 } /* Name.Attribute */
.highlight pre .nb { color: #336666 } /* Name.Builtin */
.highlight pre .nc { color: #00AA88; font-weight: bold } /* Name.Class */
.highlight pre .no { color: #336600 } /* Name.Constant */
.highlight pre .nd { color: #9999FF } /* Name.Decorator */
.highlight pre .ni { color: #999999; font-weight: bold } /* Name.Entity */
.highlight pre .ne { color: #CC0000; font-weight: bold } /* Name.Exception */
.highlight pre .nf { color: #CC00FF } /* Name.Function */
.highlight pre .nl { color: #9999FF } /* Name.Label */
.highlight pre .nn { color: #00CCFF; font-weight: bold } /* Name.Namespace */
.highlight pre .nt { color: #330099; font-weight: bold } /* Name.Tag */
.highlight pre .nv { color: #003333 } /* Name.Variable */
.highlight pre .ow { color: #000000; font-weight: bold } /* Operator.Word */
.highlight pre .w { color: #bbbbbb } /* Text.Whitespace */
.highlight pre .mf { color: #FF6600 } /* Literal.Number.Float */
.highlight pre .mh { color: #FF6600 } /* Literal.Number.Hex */
.highlight pre .mi { color: #FF6600 } /* Literal.Number.Integer */
.highlight pre .mo { color: #FF6600 } /* Literal.Number.Oct */
.highlight pre .sb { color: #CC3300 } /* Literal.String.Backtick */
.highlight pre .sc { color: #CC3300 } /* Literal.String.Char */
.highlight pre .sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */
.highlight pre .s2 { color: #CC3300 } /* Literal.String.Double */
.highlight pre .se { color: #CC3300; font-weight: bold } /* Literal.String.Escape */
.highlight pre .sh { color: #CC3300 } /* Literal.String.Heredoc */
.highlight pre .si { color: #AA0000 } /* Literal.String.Interpol */
.highlight pre .sx { color: #CC3300 } /* Literal.String.Other */
.highlight pre .sr { color: #33AAAA } /* Literal.String.Regex */
.highlight pre .s1 { color: #CC3300 } /* Literal.String.Single */
.highlight pre .ss { color: #FFCC33 } /* Literal.String.Symbol */
.highlight pre .bp { color: #336666 } /* Name.Builtin.Pseudo */
.highlight pre .vc { color: #003333 } /* Name.Variable.Class */
.highlight pre .vg { color: #003333 } /* Name.Variable.Global */
.highlight pre .vi { color: #003333 } /* Name.Variable.Instance */
.highlight pre .il { color: #FF6600 } /* Literal.Number.Integer.Long */

View File

@@ -0,0 +1,60 @@
.highlight pre .hll { background-color: #49483e }
.highlight pre, .highlighttable pre { background: #272822; color: #f8f8f2 }
.highlight pre .c { color: #75715e } /* Comment */
.highlight pre .err { color: #960050; background-color: #1e0010 } /* Error */
.highlight pre .k { color: #66d9ef } /* Keyword */
.highlight pre .l { color: #ae81ff } /* Literal */
.highlight pre .n { color: #f8f8f2 } /* Name */
.highlight pre .o { color: #f92672 } /* Operator */
.highlight pre .p { color: #f8f8f2 } /* Punctuation */
.highlight pre .cm { color: #75715e } /* Comment.Multiline */
.highlight pre .cp { color: #75715e } /* Comment.Preproc */
.highlight pre .c1 { color: #75715e } /* Comment.Single */
.highlight pre .cs { color: #75715e } /* Comment.Special */
.highlight pre .ge { font-style: italic } /* Generic.Emph */
.highlight pre .gs { font-weight: bold } /* Generic.Strong */
.highlight pre .kc { color: #66d9ef } /* Keyword.Constant */
.highlight pre .kd { color: #66d9ef } /* Keyword.Declaration */
.highlight pre .kn { color: #f92672 } /* Keyword.Namespace */
.highlight pre .kp { color: #66d9ef } /* Keyword.Pseudo */
.highlight pre .kr { color: #66d9ef } /* Keyword.Reserved */
.highlight pre .kt { color: #66d9ef } /* Keyword.Type */
.highlight pre .ld { color: #e6db74 } /* Literal.Date */
.highlight pre .m { color: #ae81ff } /* Literal.Number */
.highlight pre .s { color: #e6db74 } /* Literal.String */
.highlight pre .na { color: #a6e22e } /* Name.Attribute */
.highlight pre .nb { color: #f8f8f2 } /* Name.Builtin */
.highlight pre .nc { color: #a6e22e } /* Name.Class */
.highlight pre .no { color: #66d9ef } /* Name.Constant */
.highlight pre .nd { color: #a6e22e } /* Name.Decorator */
.highlight pre .ni { color: #f8f8f2 } /* Name.Entity */
.highlight pre .ne { color: #a6e22e } /* Name.Exception */
.highlight pre .nf { color: #a6e22e } /* Name.Function */
.highlight pre .nl { color: #f8f8f2 } /* Name.Label */
.highlight pre .nn { color: #f8f8f2 } /* Name.Namespace */
.highlight pre .nx { color: #a6e22e } /* Name.Other */
.highlight pre .py { color: #f8f8f2 } /* Name.Property */
.highlight pre .nt { color: #f92672 } /* Name.Tag */
.highlight pre .nv { color: #f8f8f2 } /* Name.Variable */
.highlight pre .ow { color: #f92672 } /* Operator.Word */
.highlight pre .w { color: #f8f8f2 } /* Text.Whitespace */
.highlight pre .mf { color: #ae81ff } /* Literal.Number.Float */
.highlight pre .mh { color: #ae81ff } /* Literal.Number.Hex */
.highlight pre .mi { color: #ae81ff } /* Literal.Number.Integer */
.highlight pre .mo { color: #ae81ff } /* Literal.Number.Oct */
.highlight pre .sb { color: #e6db74 } /* Literal.String.Backtick */
.highlight pre .sc { color: #e6db74 } /* Literal.String.Char */
.highlight pre .sd { color: #e6db74 } /* Literal.String.Doc */
.highlight pre .s2 { color: #e6db74 } /* Literal.String.Double */
.highlight pre .se { color: #ae81ff } /* Literal.String.Escape */
.highlight pre .sh { color: #e6db74 } /* Literal.String.Heredoc */
.highlight pre .si { color: #e6db74 } /* Literal.String.Interpol */
.highlight pre .sx { color: #e6db74 } /* Literal.String.Other */
.highlight pre .sr { color: #e6db74 } /* Literal.String.Regex */
.highlight pre .s1 { color: #e6db74 } /* Literal.String.Single */
.highlight pre .ss { color: #e6db74 } /* Literal.String.Symbol */
.highlight pre .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
.highlight pre .vc { color: #f8f8f2 } /* Name.Variable.Class */
.highlight pre .vg { color: #f8f8f2 } /* Name.Variable.Global */
.highlight pre .vi { color: #f8f8f2 } /* Name.Variable.Instance */
.highlight pre .il { color: #ae81ff } /* Literal.Number.Integer.Long */

View File

@@ -0,0 +1,62 @@
.highlight pre .hll { background-color: #ffffcc }
.highlight pre, .highlighttable pre { background: #ffffff; }
.highlight pre .c { color: #666666; font-style: italic } /* Comment */
.highlight pre .err { color: #FF0000; background-color: #FFAAAA } /* Error */
.highlight pre .k { color: #228899; font-weight: bold } /* Keyword */
.highlight pre .o { color: #333333 } /* Operator */
.highlight pre .cm { color: #666666; font-style: italic } /* Comment.Multiline */
.highlight pre .cp { color: #557799 } /* Comment.Preproc */
.highlight pre .c1 { color: #666666; font-style: italic } /* Comment.Single */
.highlight pre .cs { color: #cc0000; font-weight: bold; font-style: italic } /* Comment.Special */
.highlight pre .gd { color: #A00000 } /* Generic.Deleted */
.highlight pre .ge { font-style: italic } /* Generic.Emph */
.highlight pre .gr { color: #FF0000 } /* Generic.Error */
.highlight pre .gh { color: #000080; font-weight: bold } /* Generic.Heading */
.highlight pre .gi { color: #00A000 } /* Generic.Inserted */
.highlight pre .go { color: #888888 } /* Generic.Output */
.highlight pre .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
.highlight pre .gs { font-weight: bold } /* Generic.Strong */
.highlight pre .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.highlight pre .gt { color: #0044DD } /* Generic.Traceback */
.highlight pre .kc { color: #228899; font-weight: bold } /* Keyword.Constant */
.highlight pre .kd { color: #228899; font-weight: bold } /* Keyword.Declaration */
.highlight pre .kn { color: #228899; font-weight: bold } /* Keyword.Namespace */
.highlight pre .kp { color: #0088ff; font-weight: bold } /* Keyword.Pseudo */
.highlight pre .kr { color: #228899; font-weight: bold } /* Keyword.Reserved */
.highlight pre .kt { color: #6666ff; font-weight: bold } /* Keyword.Type */
.highlight pre .m { color: #6600EE; font-weight: bold } /* Literal.Number */
.highlight pre .s { background-color: #e0e0ff } /* Literal.String */
.highlight pre .na { color: #000077 } /* Name.Attribute */
.highlight pre .nb { color: #007722 } /* Name.Builtin */
.highlight pre .nc { color: #ee99ee; font-weight: bold } /* Name.Class */
.highlight pre .no { color: #55eedd; font-weight: bold } /* Name.Constant */
.highlight pre .nd { color: #555555; font-weight: bold } /* Name.Decorator */
.highlight pre .ni { color: #880000 } /* Name.Entity */
.highlight pre .ne { color: #FF0000; font-weight: bold } /* Name.Exception */
.highlight pre .nf { color: #55eedd; font-weight: bold } /* Name.Function */
.highlight pre .nl { color: #997700; font-weight: bold } /* Name.Label */
.highlight pre .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
.highlight pre .nt { color: #007700 } /* Name.Tag */
.highlight pre .nv { color: #003366 } /* Name.Variable */
.highlight pre .ow { color: #000000; font-weight: bold } /* Operator.Word */
.highlight pre .w { color: #bbbbbb } /* Text.Whitespace */
.highlight pre .mf { color: #6600EE; font-weight: bold } /* Literal.Number.Float */
.highlight pre .mh { color: #005588; font-weight: bold } /* Literal.Number.Hex */
.highlight pre .mi { color: #6666ff; font-weight: bold } /* Literal.Number.Integer */
.highlight pre .mo { color: #4400EE; font-weight: bold } /* Literal.Number.Oct */
.highlight pre .sb { background-color: #e0e0ff } /* Literal.String.Backtick */
.highlight pre .sc { color: #8888FF } /* Literal.String.Char */
.highlight pre .sd { color: #DD4422 } /* Literal.String.Doc */
.highlight pre .s2 { background-color: #e0e0ff } /* Literal.String.Double */
.highlight pre .se { color: #666666; font-weight: bold; background-color: #e0e0ff } /* Literal.String.Escape */
.highlight pre .sh { background-color: #e0e0ff } /* Literal.String.Heredoc */
.highlight pre .si { background-color: #eeeeee } /* Literal.String.Interpol */
.highlight pre .sx { color: #ff8888; background-color: #e0e0ff } /* Literal.String.Other */
.highlight pre .sr { color: #000000; background-color: #e0e0ff } /* Literal.String.Regex */
.highlight pre .s1 { background-color: #e0e0ff } /* Literal.String.Single */
.highlight pre .ss { color: #ffcc88 } /* Literal.String.Symbol */
.highlight pre .bp { color: #007722 } /* Name.Builtin.Pseudo */
.highlight pre .vc { color: #ccccff } /* Name.Variable.Class */
.highlight pre .vg { color: #ff8844 } /* Name.Variable.Global */
.highlight pre .vi { color: #aaaaff } /* Name.Variable.Instance */
.highlight pre .il { color: #6666ff; font-weight: bold } /* Literal.Number.Integer.Long */

View File

@@ -0,0 +1,70 @@
.highlight pre .hll { background-color: #404040 }
.highlight pre, .highlighttable pre { background: #202020; color: #d0d0d0 }
.highlight pre .c { color: #999999; font-style: italic } /* Comment */
.highlight pre .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight pre .g { color: #d0d0d0 } /* Generic */
.highlight pre .k { color: #6ab825; font-weight: bold } /* Keyword */
.highlight pre .l { color: #d0d0d0 } /* Literal */
.highlight pre .n { color: #d0d0d0 } /* Name */
.highlight pre .o { color: #d0d0d0 } /* Operator */
.highlight pre .x { color: #d0d0d0 } /* Other */
.highlight pre .p { color: #d0d0d0 } /* Punctuation */
.highlight pre .cm { color: #999999; font-style: italic } /* Comment.Multiline */
.highlight pre .cp { color: #cd2828; font-weight: bold } /* Comment.Preproc */
.highlight pre .c1 { color: #999999; font-style: italic } /* Comment.Single */
.highlight pre .cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */
.highlight pre .gd { color: #d22323 } /* Generic.Deleted */
.highlight pre .ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */
.highlight pre .gr { color: #d22323 } /* Generic.Error */
.highlight pre .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
.highlight pre .gi { color: #589819 } /* Generic.Inserted */
.highlight pre .go { color: #cccccc } /* Generic.Output */
.highlight pre .gp { color: #aaaaaa } /* Generic.Prompt */
.highlight pre .gs { color: #d0d0d0; font-weight: bold } /* Generic.Strong */
.highlight pre .gu { color: #ffffff; text-decoration: underline } /* Generic.Subheading */
.highlight pre .gt { color: #d22323 } /* Generic.Traceback */
.highlight pre .kc { color: #6ab825; font-weight: bold } /* Keyword.Constant */
.highlight pre .kd { color: #6ab825; font-weight: bold } /* Keyword.Declaration */
.highlight pre .kn { color: #6ab825; font-weight: bold } /* Keyword.Namespace */
.highlight pre .kp { color: #6ab825 } /* Keyword.Pseudo */
.highlight pre .kr { color: #6ab825; font-weight: bold } /* Keyword.Reserved */
.highlight pre .kt { color: #6ab825; font-weight: bold } /* Keyword.Type */
.highlight pre .ld { color: #d0d0d0 } /* Literal.Date */
.highlight pre .m { color: #3677a9 } /* Literal.Number */
.highlight pre .s { color: #ed9d13 } /* Literal.String */
.highlight pre .na { color: #bbbbbb } /* Name.Attribute */
.highlight pre .nb { color: #24909d } /* Name.Builtin */
.highlight pre .nc { color: #447fcf; text-decoration: underline } /* Name.Class */
.highlight pre .no { color: #40ffff } /* Name.Constant */
.highlight pre .nd { color: #ffa500 } /* Name.Decorator */
.highlight pre .ni { color: #d0d0d0 } /* Name.Entity */
.highlight pre .ne { color: #bbbbbb } /* Name.Exception */
.highlight pre .nf { color: #447fcf } /* Name.Function */
.highlight pre .nl { color: #d0d0d0 } /* Name.Label */
.highlight pre .nn { color: #447fcf; text-decoration: underline } /* Name.Namespace */
.highlight pre .nx { color: #d0d0d0 } /* Name.Other */
.highlight pre .py { color: #d0d0d0 } /* Name.Property */
.highlight pre .nt { color: #6ab825; font-weight: bold } /* Name.Tag */
.highlight pre .nv { color: #40ffff } /* Name.Variable */
.highlight pre .ow { color: #6ab825; font-weight: bold } /* Operator.Word */
.highlight pre .w { color: #666666 } /* Text.Whitespace */
.highlight pre .mf { color: #3677a9 } /* Literal.Number.Float */
.highlight pre .mh { color: #3677a9 } /* Literal.Number.Hex */
.highlight pre .mi { color: #3677a9 } /* Literal.Number.Integer */
.highlight pre .mo { color: #3677a9 } /* Literal.Number.Oct */
.highlight pre .sb { color: #ed9d13 } /* Literal.String.Backtick */
.highlight pre .sc { color: #ed9d13 } /* Literal.String.Char */
.highlight pre .sd { color: #ed9d13 } /* Literal.String.Doc */
.highlight pre .s2 { color: #ed9d13 } /* Literal.String.Double */
.highlight pre .se { color: #ed9d13 } /* Literal.String.Escape */
.highlight pre .sh { color: #ed9d13 } /* Literal.String.Heredoc */
.highlight pre .si { color: #ed9d13 } /* Literal.String.Interpol */
.highlight pre .sx { color: #ffa500 } /* Literal.String.Other */
.highlight pre .sr { color: #ed9d13 } /* Literal.String.Regex */
.highlight pre .s1 { color: #ed9d13 } /* Literal.String.Single */
.highlight pre .ss { color: #ed9d13 } /* Literal.String.Symbol */
.highlight pre .bp { color: #24909d } /* Name.Builtin.Pseudo */
.highlight pre .vc { color: #40ffff } /* Name.Variable.Class */
.highlight pre .vg { color: #40ffff } /* Name.Variable.Global */
.highlight pre .vi { color: #40ffff } /* Name.Variable.Instance */
.highlight pre .il { color: #3677a9 } /* Literal.Number.Integer.Long */

View File

@@ -0,0 +1,61 @@
.highlight pre .hll { background-color: #ffffcc }
.highlight pre, .highlighttable pre { background: #ffffff; }
.highlight pre .c { color: #888888 } /* Comment */
.highlight pre .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight pre .k { color: #008800; font-weight: bold } /* Keyword */
.highlight pre .cm { color: #888888 } /* Comment.Multiline */
.highlight pre .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight pre .c1 { color: #888888 } /* Comment.Single */
.highlight pre .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
.highlight pre .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight pre .ge { font-style: italic } /* Generic.Emph */
.highlight pre .gr { color: #aa0000 } /* Generic.Error */
.highlight pre .gh { color: #333333 } /* Generic.Heading */
.highlight pre .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight pre .go { color: #888888 } /* Generic.Output */
.highlight pre .gp { color: #555555 } /* Generic.Prompt */
.highlight pre .gs { font-weight: bold } /* Generic.Strong */
.highlight pre .gu { color: #666666 } /* Generic.Subheading */
.highlight pre .gt { color: #aa0000 } /* Generic.Traceback */
.highlight pre .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
.highlight pre .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
.highlight pre .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
.highlight pre .kp { color: #008800 } /* Keyword.Pseudo */
.highlight pre .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
.highlight pre .kt { color: #888888; font-weight: bold } /* Keyword.Type */
.highlight pre .m { color: #0000DD; font-weight: bold } /* Literal.Number */
.highlight pre .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */
.highlight pre .na { color: #336699 } /* Name.Attribute */
.highlight pre .nb { color: #003388 } /* Name.Builtin */
.highlight pre .nc { color: #bb0066; font-weight: bold } /* Name.Class */
.highlight pre .no { color: #003366; font-weight: bold } /* Name.Constant */
.highlight pre .nd { color: #555555 } /* Name.Decorator */
.highlight pre .ne { color: #bb0066; font-weight: bold } /* Name.Exception */
.highlight pre .nf { color: #0066bb; font-weight: bold } /* Name.Function */
.highlight pre .nl { color: #336699; font-style: italic } /* Name.Label */
.highlight pre .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */
.highlight pre .py { color: #336699; font-weight: bold } /* Name.Property */
.highlight pre .nt { color: #bb0066; font-weight: bold } /* Name.Tag */
.highlight pre .nv { color: #336699 } /* Name.Variable */
.highlight pre .ow { color: #008800 } /* Operator.Word */
.highlight pre .w { color: #bbbbbb } /* Text.Whitespace */
.highlight pre .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */
.highlight pre .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */
.highlight pre .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
.highlight pre .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */
.highlight pre .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */
.highlight pre .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */
.highlight pre .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */
.highlight pre .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */
.highlight pre .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */
.highlight pre .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */
.highlight pre .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */
.highlight pre .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */
.highlight pre .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */
.highlight pre .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */
.highlight pre .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */
.highlight pre .bp { color: #003388 } /* Name.Builtin.Pseudo */
.highlight pre .vc { color: #336699 } /* Name.Variable.Class */
.highlight pre .vg { color: #dd7700 } /* Name.Variable.Global */
.highlight pre .vi { color: #3333bb } /* Name.Variable.Instance */
.highlight pre .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */

View File

@@ -0,0 +1,59 @@
.highlight pre .hll { background-color: #ffffcc }
.highlight pre, .highlighttable pre { background: #eeeedd; }
.highlight pre .c { color: #228B22 } /* Comment */
.highlight pre .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight pre .k { color: #8B008B; font-weight: bold } /* Keyword */
.highlight pre .cm { color: #228B22 } /* Comment.Multiline */
.highlight pre .cp { color: #1e889b } /* Comment.Preproc */
.highlight pre .c1 { color: #228B22 } /* Comment.Single */
.highlight pre .cs { color: #8B008B; font-weight: bold } /* Comment.Special */
.highlight pre .gd { color: #aa0000 } /* Generic.Deleted */
.highlight pre .ge { font-style: italic } /* Generic.Emph */
.highlight pre .gr { color: #aa0000 } /* Generic.Error */
.highlight pre .gh { color: #000080; font-weight: bold } /* Generic.Heading */
.highlight pre .gi { color: #00aa00 } /* Generic.Inserted */
.highlight pre .go { color: #888888 } /* Generic.Output */
.highlight pre .gp { color: #555555 } /* Generic.Prompt */
.highlight pre .gs { font-weight: bold } /* Generic.Strong */
.highlight pre .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.highlight pre .gt { color: #aa0000 } /* Generic.Traceback */
.highlight pre .kc { color: #8B008B; font-weight: bold } /* Keyword.Constant */
.highlight pre .kd { color: #8B008B; font-weight: bold } /* Keyword.Declaration */
.highlight pre .kn { color: #8B008B; font-weight: bold } /* Keyword.Namespace */
.highlight pre .kp { color: #8B008B; font-weight: bold } /* Keyword.Pseudo */
.highlight pre .kr { color: #8B008B; font-weight: bold } /* Keyword.Reserved */
.highlight pre .kt { color: #a7a7a7; font-weight: bold } /* Keyword.Type */
.highlight pre .m { color: #B452CD } /* Literal.Number */
.highlight pre .s { color: #CD5555 } /* Literal.String */
.highlight pre .na { color: #658b00 } /* Name.Attribute */
.highlight pre .nb { color: #658b00 } /* Name.Builtin */
.highlight pre .nc { color: #008b45; font-weight: bold } /* Name.Class */
.highlight pre .no { color: #00688B } /* Name.Constant */
.highlight pre .nd { color: #707a7c } /* Name.Decorator */
.highlight pre .ne { color: #008b45; font-weight: bold } /* Name.Exception */
.highlight pre .nf { color: #008b45 } /* Name.Function */
.highlight pre .nn { color: #008b45; text-decoration: underline } /* Name.Namespace */
.highlight pre .nt { color: #8B008B; font-weight: bold } /* Name.Tag */
.highlight pre .nv { color: #00688B } /* Name.Variable */
.highlight pre .ow { color: #8B008B } /* Operator.Word */
.highlight pre .w { color: #bbbbbb } /* Text.Whitespace */
.highlight pre .mf { color: #B452CD } /* Literal.Number.Float */
.highlight pre .mh { color: #B452CD } /* Literal.Number.Hex */
.highlight pre .mi { color: #B452CD } /* Literal.Number.Integer */
.highlight pre .mo { color: #B452CD } /* Literal.Number.Oct */
.highlight pre .sb { color: #CD5555 } /* Literal.String.Backtick */
.highlight pre .sc { color: #CD5555 } /* Literal.String.Char */
.highlight pre .sd { color: #CD5555 } /* Literal.String.Doc */
.highlight pre .s2 { color: #CD5555 } /* Literal.String.Double */
.highlight pre .se { color: #CD5555 } /* Literal.String.Escape */
.highlight pre .sh { color: #1c7e71; font-style: italic } /* Literal.String.Heredoc */
.highlight pre .si { color: #CD5555 } /* Literal.String.Interpol */
.highlight pre .sx { color: #cb6c20 } /* Literal.String.Other */
.highlight pre .sr { color: #1c7e71 } /* Literal.String.Regex */
.highlight pre .s1 { color: #CD5555 } /* Literal.String.Single */
.highlight pre .ss { color: #CD5555 } /* Literal.String.Symbol */
.highlight pre .bp { color: #658b00 } /* Name.Builtin.Pseudo */
.highlight pre .vc { color: #00688B } /* Name.Variable.Class */
.highlight pre .vg { color: #00688B } /* Name.Variable.Global */
.highlight pre .vi { color: #00688B } /* Name.Variable.Instance */
.highlight pre .il { color: #B452CD } /* Literal.Number.Integer.Long */

View File

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

View File

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

View File

@@ -0,0 +1,70 @@
.highlight pre .hll { background-color: #ffffcc }
.highlight pre, .highlighttable pre { background: #f8f8f8; }
.highlight pre .c { color: #8f5902; font-style: italic } /* Comment */
.highlight pre .err { color: #a40000; border: 1px solid #ef2929 } /* Error */
.highlight pre .g { color: #000000 } /* Generic */
.highlight pre .k { color: #204a87; font-weight: bold } /* Keyword */
.highlight pre .l { color: #000000 } /* Literal */
.highlight pre .n { color: #000000 } /* Name */
.highlight pre .o { color: #ce5c00; font-weight: bold } /* Operator */
.highlight pre .x { color: #000000 } /* Other */
.highlight pre .p { color: #000000; font-weight: bold } /* Punctuation */
.highlight pre .cm { color: #8f5902; font-style: italic } /* Comment.Multiline */
.highlight pre .cp { color: #8f5902; font-style: italic } /* Comment.Preproc */
.highlight pre .c1 { color: #8f5902; font-style: italic } /* Comment.Single */
.highlight pre .cs { color: #8f5902; font-style: italic } /* Comment.Special */
.highlight pre .gd { color: #a40000 } /* Generic.Deleted */
.highlight pre .ge { color: #000000; font-style: italic } /* Generic.Emph */
.highlight pre .gr { color: #ef2929 } /* Generic.Error */
.highlight pre .gh { color: #000080; font-weight: bold } /* Generic.Heading */
.highlight pre .gi { color: #00A000 } /* Generic.Inserted */
.highlight pre .go { color: #000000; font-style: italic } /* Generic.Output */
.highlight pre .gp { color: #8f5902 } /* Generic.Prompt */
.highlight pre .gs { color: #000000; font-weight: bold } /* Generic.Strong */
.highlight pre .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.highlight pre .gt { color: #a40000; font-weight: bold } /* Generic.Traceback */
.highlight pre .kc { color: #204a87; font-weight: bold } /* Keyword.Constant */
.highlight pre .kd { color: #204a87; font-weight: bold } /* Keyword.Declaration */
.highlight pre .kn { color: #204a87; font-weight: bold } /* Keyword.Namespace */
.highlight pre .kp { color: #204a87; font-weight: bold } /* Keyword.Pseudo */
.highlight pre .kr { color: #204a87; font-weight: bold } /* Keyword.Reserved */
.highlight pre .kt { color: #204a87; font-weight: bold } /* Keyword.Type */
.highlight pre .ld { color: #000000 } /* Literal.Date */
.highlight pre .m { color: #0000cf; font-weight: bold } /* Literal.Number */
.highlight pre .s { color: #4e9a06 } /* Literal.String */
.highlight pre .na { color: #c4a000 } /* Name.Attribute */
.highlight pre .nb { color: #204a87 } /* Name.Builtin */
.highlight pre .nc { color: #000000 } /* Name.Class */
.highlight pre .no { color: #000000 } /* Name.Constant */
.highlight pre .nd { color: #5c35cc; font-weight: bold } /* Name.Decorator */
.highlight pre .ni { color: #ce5c00 } /* Name.Entity */
.highlight pre .ne { color: #cc0000; font-weight: bold } /* Name.Exception */
.highlight pre .nf { color: #000000 } /* Name.Function */
.highlight pre .nl { color: #f57900 } /* Name.Label */
.highlight pre .nn { color: #000000 } /* Name.Namespace */
.highlight pre .nx { color: #000000 } /* Name.Other */
.highlight pre .py { color: #000000 } /* Name.Property */
.highlight pre .nt { color: #204a87; font-weight: bold } /* Name.Tag */
.highlight pre .nv { color: #000000 } /* Name.Variable */
.highlight pre .ow { color: #204a87; font-weight: bold } /* Operator.Word */
.highlight pre .w { color: #f8f8f8; text-decoration: underline } /* Text.Whitespace */
.highlight pre .mf { color: #0000cf; font-weight: bold } /* Literal.Number.Float */
.highlight pre .mh { color: #0000cf; font-weight: bold } /* Literal.Number.Hex */
.highlight pre .mi { color: #0000cf; font-weight: bold } /* Literal.Number.Integer */
.highlight pre .mo { color: #0000cf; font-weight: bold } /* Literal.Number.Oct */
.highlight pre .sb { color: #4e9a06 } /* Literal.String.Backtick */
.highlight pre .sc { color: #4e9a06 } /* Literal.String.Char */
.highlight pre .sd { color: #8f5902; font-style: italic } /* Literal.String.Doc */
.highlight pre .s2 { color: #4e9a06 } /* Literal.String.Double */
.highlight pre .se { color: #4e9a06 } /* Literal.String.Escape */
.highlight pre .sh { color: #4e9a06 } /* Literal.String.Heredoc */
.highlight pre .si { color: #4e9a06 } /* Literal.String.Interpol */
.highlight pre .sx { color: #4e9a06 } /* Literal.String.Other */
.highlight pre .sr { color: #4e9a06 } /* Literal.String.Regex */
.highlight pre .s1 { color: #4e9a06 } /* Literal.String.Single */
.highlight pre .ss { color: #4e9a06 } /* Literal.String.Symbol */
.highlight pre .bp { color: #3465a4 } /* Name.Builtin.Pseudo */
.highlight pre .vc { color: #000000 } /* Name.Variable.Class */
.highlight pre .vg { color: #000000 } /* Name.Variable.Global */
.highlight pre .vi { color: #000000 } /* Name.Variable.Instance */
.highlight pre .il { color: #0000cf; font-weight: bold } /* Literal.Number.Integer.Long */

View File

@@ -0,0 +1,60 @@
.highlight pre .hll { background-color: #ffffcc }
.highlight pre, .highlighttable pre { background: #ffffff; }
.highlight pre .c { color: #999988; font-style: italic } /* Comment */
.highlight pre .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight pre .k { font-weight: bold } /* Keyword */
.highlight pre .o { font-weight: bold } /* Operator */
.highlight pre .cm { color: #999988; font-style: italic } /* Comment.Multiline */
.highlight pre .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
.highlight pre .c1 { color: #999988; font-style: italic } /* Comment.Single */
.highlight pre .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
.highlight pre .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight pre .ge { font-style: italic } /* Generic.Emph */
.highlight pre .gr { color: #aa0000 } /* Generic.Error */
.highlight pre .gh { color: #999999 } /* Generic.Heading */
.highlight pre .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight pre .go { color: #888888 } /* Generic.Output */
.highlight pre .gp { color: #555555 } /* Generic.Prompt */
.highlight pre .gs { font-weight: bold } /* Generic.Strong */
.highlight pre .gu { color: #aaaaaa } /* Generic.Subheading */
.highlight pre .gt { color: #aa0000 } /* Generic.Traceback */
.highlight pre .kc { font-weight: bold } /* Keyword.Constant */
.highlight pre .kd { font-weight: bold } /* Keyword.Declaration */
.highlight pre .kn { font-weight: bold } /* Keyword.Namespace */
.highlight pre .kp { font-weight: bold } /* Keyword.Pseudo */
.highlight pre .kr { font-weight: bold } /* Keyword.Reserved */
.highlight pre .kt { color: #445588; font-weight: bold } /* Keyword.Type */
.highlight pre .m { color: #009999 } /* Literal.Number */
.highlight pre .s { color: #bb8844 } /* Literal.String */
.highlight pre .na { color: #008080 } /* Name.Attribute */
.highlight pre .nb { color: #999999 } /* Name.Builtin */
.highlight pre .nc { color: #445588; font-weight: bold } /* Name.Class */
.highlight pre .no { color: #008080 } /* Name.Constant */
.highlight pre .ni { color: #800080 } /* Name.Entity */
.highlight pre .ne { color: #990000; font-weight: bold } /* Name.Exception */
.highlight pre .nf { color: #990000; font-weight: bold } /* Name.Function */
.highlight pre .nn { color: #555555 } /* Name.Namespace */
.highlight pre .nt { color: #000080 } /* Name.Tag */
.highlight pre .nv { color: #008080 } /* Name.Variable */
.highlight pre .ow { font-weight: bold } /* Operator.Word */
.highlight pre .w { color: #bbbbbb } /* Text.Whitespace */
.highlight pre .mf { color: #009999 } /* Literal.Number.Float */
.highlight pre .mh { color: #009999 } /* Literal.Number.Hex */
.highlight pre .mi { color: #009999 } /* Literal.Number.Integer */
.highlight pre .mo { color: #009999 } /* Literal.Number.Oct */
.highlight pre .sb { color: #bb8844 } /* Literal.String.Backtick */
.highlight pre .sc { color: #bb8844 } /* Literal.String.Char */
.highlight pre .sd { color: #bb8844 } /* Literal.String.Doc */
.highlight pre .s2 { color: #bb8844 } /* Literal.String.Double */
.highlight pre .se { color: #bb8844 } /* Literal.String.Escape */
.highlight pre .sh { color: #bb8844 } /* Literal.String.Heredoc */
.highlight pre .si { color: #bb8844 } /* Literal.String.Interpol */
.highlight pre .sx { color: #bb8844 } /* Literal.String.Other */
.highlight pre .sr { color: #808000 } /* Literal.String.Regex */
.highlight pre .s1 { color: #bb8844 } /* Literal.String.Single */
.highlight pre .ss { color: #bb8844 } /* Literal.String.Symbol */
.highlight pre .bp { color: #999999 } /* Name.Builtin.Pseudo */
.highlight pre .vc { color: #008080 } /* Name.Variable.Class */
.highlight pre .vg { color: #008080 } /* Name.Variable.Global */
.highlight pre .vi { color: #008080 } /* Name.Variable.Instance */
.highlight pre .il { color: #009999 } /* Literal.Number.Integer.Long */

View File

@@ -0,0 +1,70 @@
.highlight pre .hll { background-color: #222222 }
.highlight pre, .highlighttable pre { background: #000000; color: #cccccc }
.highlight pre .c { color: #000080 } /* Comment */
.highlight pre .err { color: #cccccc; border: 1px solid #FF0000 } /* Error */
.highlight pre .g { color: #cccccc } /* Generic */
.highlight pre .k { color: #cdcd00 } /* Keyword */
.highlight pre .l { color: #cccccc } /* Literal */
.highlight pre .n { color: #cccccc } /* Name */
.highlight pre .o { color: #3399cc } /* Operator */
.highlight pre .x { color: #cccccc } /* Other */
.highlight pre .p { color: #cccccc } /* Punctuation */
.highlight pre .cm { color: #000080 } /* Comment.Multiline */
.highlight pre .cp { color: #000080 } /* Comment.Preproc */
.highlight pre .c1 { color: #000080 } /* Comment.Single */
.highlight pre .cs { color: #cd0000; font-weight: bold } /* Comment.Special */
.highlight pre .gd { color: #cd0000 } /* Generic.Deleted */
.highlight pre .ge { color: #cccccc; font-style: italic } /* Generic.Emph */
.highlight pre .gr { color: #FF0000 } /* Generic.Error */
.highlight pre .gh { color: #000080; font-weight: bold } /* Generic.Heading */
.highlight pre .gi { color: #00cd00 } /* Generic.Inserted */
.highlight pre .go { color: #888888 } /* Generic.Output */
.highlight pre .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
.highlight pre .gs { color: #cccccc; font-weight: bold } /* Generic.Strong */
.highlight pre .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.highlight pre .gt { color: #0044DD } /* Generic.Traceback */
.highlight pre .kc { color: #cdcd00 } /* Keyword.Constant */
.highlight pre .kd { color: #00cd00 } /* Keyword.Declaration */
.highlight pre .kn { color: #cd00cd } /* Keyword.Namespace */
.highlight pre .kp { color: #cdcd00 } /* Keyword.Pseudo */
.highlight pre .kr { color: #cdcd00 } /* Keyword.Reserved */
.highlight pre .kt { color: #00cd00 } /* Keyword.Type */
.highlight pre .ld { color: #cccccc } /* Literal.Date */
.highlight pre .m { color: #cd00cd } /* Literal.Number */
.highlight pre .s { color: #cd0000 } /* Literal.String */
.highlight pre .na { color: #cccccc } /* Name.Attribute */
.highlight pre .nb { color: #cd00cd } /* Name.Builtin */
.highlight pre .nc { color: #00cdcd } /* Name.Class */
.highlight pre .no { color: #cccccc } /* Name.Constant */
.highlight pre .nd { color: #cccccc } /* Name.Decorator */
.highlight pre .ni { color: #cccccc } /* Name.Entity */
.highlight pre .ne { color: #666699; font-weight: bold } /* Name.Exception */
.highlight pre .nf { color: #cccccc } /* Name.Function */
.highlight pre .nl { color: #cccccc } /* Name.Label */
.highlight pre .nn { color: #cccccc } /* Name.Namespace */
.highlight pre .nx { color: #cccccc } /* Name.Other */
.highlight pre .py { color: #cccccc } /* Name.Property */
.highlight pre .nt { color: #cccccc } /* Name.Tag */
.highlight pre .nv { color: #00cdcd } /* Name.Variable */
.highlight pre .ow { color: #cdcd00 } /* Operator.Word */
.highlight pre .w { color: #cccccc } /* Text.Whitespace */
.highlight pre .mf { color: #cd00cd } /* Literal.Number.Float */
.highlight pre .mh { color: #cd00cd } /* Literal.Number.Hex */
.highlight pre .mi { color: #cd00cd } /* Literal.Number.Integer */
.highlight pre .mo { color: #cd00cd } /* Literal.Number.Oct */
.highlight pre .sb { color: #cd0000 } /* Literal.String.Backtick */
.highlight pre .sc { color: #cd0000 } /* Literal.String.Char */
.highlight pre .sd { color: #cd0000 } /* Literal.String.Doc */
.highlight pre .s2 { color: #cd0000 } /* Literal.String.Double */
.highlight pre .se { color: #cd0000 } /* Literal.String.Escape */
.highlight pre .sh { color: #cd0000 } /* Literal.String.Heredoc */
.highlight pre .si { color: #cd0000 } /* Literal.String.Interpol */
.highlight pre .sx { color: #cd0000 } /* Literal.String.Other */
.highlight pre .sr { color: #cd0000 } /* Literal.String.Regex */
.highlight pre .s1 { color: #cd0000 } /* Literal.String.Single */
.highlight pre .ss { color: #cd0000 } /* Literal.String.Symbol */
.highlight pre .bp { color: #cd00cd } /* Name.Builtin.Pseudo */
.highlight pre .vc { color: #00cdcd } /* Name.Variable.Class */
.highlight pre .vg { color: #00cdcd } /* Name.Variable.Global */
.highlight pre .vi { color: #00cdcd } /* Name.Variable.Instance */
.highlight pre .il { color: #cd00cd } /* Literal.Number.Integer.Long */

View File

@@ -0,0 +1,34 @@
.highlight pre .hll { background-color: #ffffcc }
.highlight pre, .highlighttable pre { background: #ffffff; }
.highlight pre .c { color: #008000 } /* Comment */
.highlight pre .err { border: 1px solid #FF0000 } /* Error */
.highlight pre .k { color: #0000ff } /* Keyword */
.highlight pre .cm { color: #008000 } /* Comment.Multiline */
.highlight pre .cp { color: #0000ff } /* Comment.Preproc */
.highlight pre .c1 { color: #008000 } /* Comment.Single */
.highlight pre .cs { color: #008000 } /* Comment.Special */
.highlight pre .ge { font-style: italic } /* Generic.Emph */
.highlight pre .gh { font-weight: bold } /* Generic.Heading */
.highlight pre .gp { font-weight: bold } /* Generic.Prompt */
.highlight pre .gs { font-weight: bold } /* Generic.Strong */
.highlight pre .gu { font-weight: bold } /* Generic.Subheading */
.highlight pre .kc { color: #0000ff } /* Keyword.Constant */
.highlight pre .kd { color: #0000ff } /* Keyword.Declaration */
.highlight pre .kn { color: #0000ff } /* Keyword.Namespace */
.highlight pre .kp { color: #0000ff } /* Keyword.Pseudo */
.highlight pre .kr { color: #0000ff } /* Keyword.Reserved */
.highlight pre .kt { color: #2b91af } /* Keyword.Type */
.highlight pre .s { color: #a31515 } /* Literal.String */
.highlight pre .nc { color: #2b91af } /* Name.Class */
.highlight pre .ow { color: #0000ff } /* Operator.Word */
.highlight pre .sb { color: #a31515 } /* Literal.String.Backtick */
.highlight pre .sc { color: #a31515 } /* Literal.String.Char */
.highlight pre .sd { color: #a31515 } /* Literal.String.Doc */
.highlight pre .s2 { color: #a31515 } /* Literal.String.Double */
.highlight pre .se { color: #a31515 } /* Literal.String.Escape */
.highlight pre .sh { color: #a31515 } /* Literal.String.Heredoc */
.highlight pre .si { color: #a31515 } /* Literal.String.Interpol */
.highlight pre .sx { color: #a31515 } /* Literal.String.Other */
.highlight pre .sr { color: #a31515 } /* Literal.String.Regex */
.highlight pre .s1 { color: #a31515 } /* Literal.String.Single */
.highlight pre .ss { color: #a31515 } /* Literal.String.Symbol */

View File

@@ -6,6 +6,18 @@ body {
background-color: transparent; background-color: transparent;
} }
/* for list-groups nested within a list-group-item, reset the bottom margin */
.list-group-item > .list-group {
margin-bottom: 0px;
}
/* for list-group-items nested within a list-group-item, reset the bottom
padding of the last item, b/c the containing item has paddimg already
*/
.list-group-item .list-group-item:last-child {
padding-bottom: 0px;
}
.list-group-item { .list-group-item {
border: none; border: none;
} }
@@ -28,14 +40,27 @@ body {
#sidebar { #sidebar {
padding-top: 0px; padding-top: 0px;
-ms-word-break: break-all;
word-break: break-all;
word-break: break-word;
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
} }
#sidebar a { #sidebar a {
color: inherit; color: inherit;
} }
i { .icon-label {
margin-right: 10px; margin-left: 10px;
}
/* Example for how to control spacing between icon and label in specific
lists in the sidebar. To change, override in your CUSTOM_CSS */
#sidebar #social i {
margin-right: 3px;
} }
a, a:hover { a, a:hover {
@@ -57,9 +82,49 @@ a, a:hover {
height: auto; height: auto;
} }
.highlight pre { .entry-content figcaption, .caption {
background-color: #202020; font-size: small;
color: #777; margin-bottom: 2px;
}
.floatright, .align-right {
float: right;
}
.floatleft, .align-left {
float: left;
}
.floatcenter, .align-center {
display: block;
margin-left: auto;
margin-right: auto;
}
figure.floatright, .align-right {
margin-left: 4px;
}
figure.floatleft, .align-left {
margin-right: 4px;
}
figure.floatcenter, .align-center {
margin-bottom: 11px;
}
.highlighttable pre {
/* Removes bootstrap default margin-bottom */
margin-bottom: 0px;
}
.highlighttable {
/* Adds them margin-bottom to highlightable instead of <pre> */
margin-bottom: 11px;
}
.highlighttable .code {
width: 100%;
} }
#categories ul, #tags ul { #categories ul, #tags ul {
@@ -78,3 +143,10 @@ a, a:hover {
white-space: inherit; white-space: inherit;
border-radius: inherit; border-radius: inherit;
} }
.categories-timestamp {
color: #AAAAAA;
font-size: 0.9em;
margin-right: 10px;
}

View File

@@ -280,8 +280,8 @@
<glyph unicode="&#xf113;" horiz-adv-x="1664" d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320 q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86 t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218 q0 -87 -27 -168q136 -160 136 -398z" /> <glyph unicode="&#xf113;" horiz-adv-x="1664" d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320 q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86 t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218 q0 -87 -27 -168q136 -160 136 -398z" />
<glyph unicode="&#xf114;" horiz-adv-x="1664" d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320 q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" /> <glyph unicode="&#xf114;" horiz-adv-x="1664" d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320 q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf115;" horiz-adv-x="1920" d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68 v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z " /> <glyph unicode="&#xf115;" horiz-adv-x="1920" d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68 v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z " />
<glyph unicode="&#xf116;" horiz-adv-x="1152" d="M896 608v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224h224q14 0 23 -9t9 -23zM1024 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 -28 t-28 -68v-704q0 -40 28 -68t68 -28h704q40 0 68 28t28 68zM1152 928v-704q0 -92 -65.5 -158t-158.5 -66h-704q-93 0 -158.5 66t-65.5 158v704q0 93 65.5 158.5t158.5 65.5h704q93 0 158.5 -65.5t65.5 -158.5z" /> <glyph unicode="&#xf116;" horiz-adv-x="1792" />
<glyph unicode="&#xf117;" horiz-adv-x="1152" d="M928 1152q93 0 158.5 -65.5t65.5 -158.5v-704q0 -92 -65.5 -158t-158.5 -66h-704q-93 0 -158.5 66t-65.5 158v704q0 93 65.5 158.5t158.5 65.5h704zM1024 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 -28t-28 -68v-704q0 -40 28 -68t68 -28h704q40 0 68 28t28 68z M864 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576z" /> <glyph unicode="&#xf117;" horiz-adv-x="1792" />
<glyph unicode="&#xf118;" d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5 t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> <glyph unicode="&#xf118;" d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5 t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf119;" d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204 t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> <glyph unicode="&#xf119;" d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204 t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf11a;" d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> <glyph unicode="&#xf11a;" d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
@@ -310,7 +310,7 @@
<glyph unicode="&#xf133;" horiz-adv-x="1664" d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" /> <glyph unicode="&#xf133;" horiz-adv-x="1664" d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf134;" horiz-adv-x="1408" d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800 q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113 q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" /> <glyph unicode="&#xf134;" horiz-adv-x="1408" d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800 q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113 q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" />
<glyph unicode="&#xf135;" horiz-adv-x="1664" d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1 q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" /> <glyph unicode="&#xf135;" horiz-adv-x="1664" d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1 q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" />
<glyph unicode="&#xf136;" horiz-adv-x="1792" d="M1708 881l-188 -881h-304l181 849q4 21 1 43q-4 20 -16 35q-10 14 -28 24q-18 9 -40 9h-197l-205 -960h-303l204 960h-304l-205 -960h-304l272 1280h1139q157 0 245 -118q86 -116 52 -281z" /> <glyph unicode="&#xf136;" horiz-adv-x="1792" d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" />
<glyph unicode="&#xf137;" d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> <glyph unicode="&#xf137;" d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf138;" d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> <glyph unicode="&#xf138;" d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf139;" d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" /> <glyph unicode="&#xf139;" d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
@@ -342,7 +342,7 @@
<glyph unicode="&#xf155;" horiz-adv-x="1024" d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43 t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5 t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50 t53 -63.5t31.5 -76.5t13 -94z" /> <glyph unicode="&#xf155;" horiz-adv-x="1024" d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43 t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5 t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50 t53 -63.5t31.5 -76.5t13 -94z" />
<glyph unicode="&#xf156;" horiz-adv-x="898" d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102 q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" /> <glyph unicode="&#xf156;" horiz-adv-x="898" d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102 q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf157;" horiz-adv-x="1027" d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61 l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" /> <glyph unicode="&#xf157;" horiz-adv-x="1027" d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61 l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" />
<glyph unicode="&#xf158;" horiz-adv-x="1664" d="M1664 352v-32q0 -132 -94 -226t-226 -94h-128q-132 0 -226 94t-94 226v480h-224q-2 -102 -14.5 -190.5t-30.5 -156t-48.5 -126.5t-57 -99.5t-67.5 -77.5t-69.5 -58.5t-74 -44t-69 -32t-65.5 -25.5q-4 -2 -32 -13q-8 -2 -12 -2q-22 0 -30 20l-71 178q-5 13 0 25t17 17 q7 3 20 7.5t18 6.5q31 12 46.5 18.5t44.5 20t45.5 26t42 32.5t40.5 42.5t34.5 53.5t30.5 68.5t22.5 83.5t17 103t6.5 123h-256q-14 0 -23 9t-9 23v160q0 14 9 23t23 9h1216q14 0 23 -9t9 -23v-160q0 -14 -9 -23t-23 -9h-224v-512q0 -26 19 -45t45 -19h128q26 0 45 19t19 45 v64q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1280 1376v-160q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v160q0 14 9 23t23 9h960q14 0 23 -9t9 -23z" /> <glyph unicode="&#xf158;" horiz-adv-x="1280" d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128 q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" />
<glyph unicode="&#xf159;" horiz-adv-x="1792" d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23 t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28 q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" /> <glyph unicode="&#xf159;" horiz-adv-x="1792" d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23 t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28 q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf15a;" horiz-adv-x="1280" d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164 l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30 t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" /> <glyph unicode="&#xf15a;" horiz-adv-x="1280" d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164 l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30 t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" />
<glyph unicode="&#xf15b;" horiz-adv-x="1280" d="M1280 768v-800q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h544v-544q0 -40 28 -68t68 -28h544zM1277 896h-509v509q82 -15 132 -65l312 -312q50 -50 65 -132z" /> <glyph unicode="&#xf15b;" horiz-adv-x="1280" d="M1280 768v-800q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h544v-544q0 -40 28 -68t68 -28h544zM1277 896h-509v509q82 -15 132 -65l312 -312q50 -50 65 -132z" />
@@ -390,10 +390,25 @@
<glyph unicode="&#xf188;" horiz-adv-x="1664" d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207 q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19 t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" /> <glyph unicode="&#xf188;" horiz-adv-x="1664" d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207 q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19 t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" />
<glyph unicode="&#xf189;" horiz-adv-x="1920" d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-78 -100 -90 -131q-17 -41 14 -81q17 -21 81 -82h1l1 -1l1 -1l2 -2q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58 t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6 q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q17 19 38 30q53 26 239 24 q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2 q39 5 64 -2.5t31 -16.5z" /> <glyph unicode="&#xf189;" horiz-adv-x="1920" d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-78 -100 -90 -131q-17 -41 14 -81q17 -21 81 -82h1l1 -1l1 -1l2 -2q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58 t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6 q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q17 19 38 30q53 26 239 24 q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2 q39 5 64 -2.5t31 -16.5z" />
<glyph unicode="&#xf18a;" horiz-adv-x="1792" d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12 q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422 q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178 q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" /> <glyph unicode="&#xf18a;" horiz-adv-x="1792" d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12 q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422 q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178 q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" />
<glyph unicode="&#xf18b;" horiz-adv-x="1920" d="M805 163q-122 -67 -261 -67q-141 0 -261 67q98 61 167 149t94 191q25 -103 94 -191t167 -149zM453 1176v-344q0 -179 -89.5 -326t-234.5 -217q-129 152 -129 351q0 200 129.5 352t323.5 184zM958 991q-128 -152 -128 -351q0 -201 128 -351q-145 70 -234.5 218t-89.5 328 v341q196 -33 324 -185zM1638 163q-122 -67 -261 -67q-141 0 -261 67q98 61 167 149t94 191q25 -103 94 -191t167 -149zM1286 1176v-344q0 -179 -91 -326t-237 -217v0q133 154 133 351q0 195 -133 351q129 151 328 185zM1920 640q0 -201 -129 -351q-145 70 -234.5 218 t-89.5 328v341q194 -32 323.5 -184t129.5 -352z" /> <glyph unicode="&#xf18b;" d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495 q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" />
<glyph unicode="&#xf18c;" horiz-adv-x="1792" /> <glyph unicode="&#xf18c;" horiz-adv-x="1408" d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5 t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56 t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -5 1 -50.5t-1 -71.5q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5 t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" />
<glyph unicode="&#xf18d;" horiz-adv-x="1792" /> <glyph unicode="&#xf18d;" horiz-adv-x="1280" d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z " />
<glyph unicode="&#xf18e;" horiz-adv-x="1792" /> <glyph unicode="&#xf18e;" d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf190;" d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf191;" d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf192;" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5 t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf193;" horiz-adv-x="1664" d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128 q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 16 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" />
<glyph unicode="&#xf194;" d="M1254 899q16 85 -21 132q-52 65 -187 45q-17 -3 -41 -12.5t-57.5 -30.5t-64.5 -48.5t-59.5 -70t-44.5 -91.5q80 7 113.5 -16t26.5 -99q-5 -52 -52 -143q-43 -78 -71 -99q-44 -32 -87 14q-23 24 -37.5 64.5t-19 73t-10 84t-8.5 71.5q-23 129 -34 164q-12 37 -35.5 69 t-50.5 40q-57 16 -127 -25q-54 -32 -136.5 -106t-122.5 -102v-7q16 -8 25.5 -26t21.5 -20q21 -3 54.5 8.5t58 10.5t41.5 -30q11 -18 18.5 -38.5t15 -48t12.5 -40.5q17 -46 53 -187q36 -146 57 -197q42 -99 103 -125q43 -12 85 -1.5t76 31.5q131 77 250 237 q104 139 172.5 292.5t82.5 226.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf195;" horiz-adv-x="1152" d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160 q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf196;" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832 q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf197;" horiz-adv-x="1792" />
<glyph unicode="&#xf198;" horiz-adv-x="1792" />
<glyph unicode="&#xf199;" horiz-adv-x="1792" />
<glyph unicode="&#xf19a;" horiz-adv-x="1792" />
<glyph unicode="&#xf19b;" horiz-adv-x="1792" />
<glyph unicode="&#xf19c;" horiz-adv-x="1792" />
<glyph unicode="&#xf19d;" horiz-adv-x="1792" />
<glyph unicode="&#xf19e;" horiz-adv-x="1792" />
<glyph unicode="&#xf500;" horiz-adv-x="1792" /> <glyph unicode="&#xf500;" horiz-adv-x="1792" />
</font> </font>
</defs></svg> </defs></svg>

Before

Width:  |  Height:  |  Size: 193 KiB

After

Width:  |  Height:  |  Size: 197 KiB

View File

@@ -4,10 +4,12 @@ var github = (function(){
} }
function render(target, repos){ function render(target, repos){
var i = 0, fragment = '', t = $(target)[0]; var i = 0, fragment = '', t = $(target)[0];
fragment += '<ul class="list-group" id="github">';
for(i = 0; i < repos.length; i++) { for(i = 0; i < repos.length; i++) {
fragment += '<li class="list-group-item"><a href="'+repos[i].html_url+'">'+repos[i].name+'</a><p><small>'+escapeHtml(repos[i].description||'')+'</small></p></li>'; fragment += '<li class="list-group-item"><a href="'+repos[i].html_url+'">'+repos[i].name+'</a><p><small>'+escapeHtml(repos[i].description||'')+'</small></p></li>';
} }
fragment += '</ul>';
t.innerHTML = fragment; t.innerHTML = fragment;
} }
return { return {

View File

@@ -1,4 +1,14 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block title %}Archives - {{ SITENAME }}{% endblock %}
{% block breadcrumbs %}
{% if DISPLAY_BREADCRUMBS %}
<ol class="breadcrumb">
<li><a href="{{ SITEURL }}" title="{{ SITENAME }}"><i class="fa fa-home fa-lg"></i></a></li>
<li class="active">Archives</li>
</ol>
{% endif %}
{% endblock %}
{% block content %} {% block content %}
<section id="content"> <section id="content">
<h1>Archives for {{ SITENAME }}</h1> <h1>Archives for {{ SITENAME }}</h1>

View File

@@ -1,5 +1,23 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block title %}{{ article.title|striptags }}{% endblock %} {% block title %}{{ article.title|striptags }} - {{ SITENAME }}{% endblock %}
{% block breadcrumbs %}
{% if DISPLAY_BREADCRUMBS %}
{% if DISPLAY_CATEGORY_IN_BREADCRUMBS %}
<ol class="breadcrumb">
<li><a href="{{ SITEURL }}" title="{{ SITENAME }}"><i class="fa fa-home fa-lg"></i></a></li>
<li><a href="{{ SITEURL }}/{{ article.category.url }}" title="{{ article.category }}">{{ article.category }}</a></li>
<li class="active">{{ article.title }}</li>
</ol>
{% else %}
<ol class="breadcrumb">
<li><a href="{{ SITEURL }}" title="{{ SITENAME }}"><i class="fa fa-home fa-lg"></i></a></li>
<li class="active">{{ article.title }}</li>
</ol>
{% endif %}
{% endif %}
{% endblock %}
{% block content %} {% block content %}
<section id="content"> <section id="content">
<article> <article>
@@ -21,6 +39,7 @@
{{ article.content }} {{ article.content }}
</div> </div>
<!-- /.entry-content --> <!-- /.entry-content -->
{% include 'includes/related-posts.html' %}
{% include 'includes/addthis.html' %} {% include 'includes/addthis.html' %}
{% include 'includes/comments.html' %} {% include 'includes/comments.html' %}
</article> </article>

View File

@@ -9,12 +9,16 @@
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Open Graph tags --> {% if FAVICON %}
<link href="{{ SITEURL }}/{{ FAVICON }}" rel="icon">
{% endif %}
{# Open Graph tags #}
{% if USE_OPEN_GRAPH is not defined %} {% if USE_OPEN_GRAPH is not defined %}
{% set USE_OPEN_GRAPH = True %} {% set USE_OPEN_GRAPH = True %}
{% endif %} {% endif %}
{% if USE_OPEN_GRAPH %} {% if USE_OPEN_GRAPH %}
<!-- Open Graph tags -->
{% if OPEN_GRAPH_FB_APP_ID %} {% if OPEN_GRAPH_FB_APP_ID %}
<meta property="fb:app_id" content="{{ OPEN_GRAPH_FB_APP_ID }}"/> <meta property="fb:app_id" content="{{ OPEN_GRAPH_FB_APP_ID }}"/>
{% endif %} {% endif %}
@@ -35,10 +39,10 @@
{% if OPEN_GRAPH_IMAGE %} {% if OPEN_GRAPH_IMAGE %}
<meta property="og:image" <meta property="og:image"
content="{{ SITEURL }}/static/{{ OPEN_GRAPH_IMAGE }}"/> content="{{ SITEURL }}/static/{{ OPEN_GRAPH_IMAGE }}"/>
{% endif %}
{% endif %} {% endif %}
{% endif %}
{% endif %} {% endif %}
<!-- Bootstrap --> <!-- Bootstrap -->
{% if BOOTSTRAP_THEME %} {% if BOOTSTRAP_THEME %}
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/bootstrap.{{ BOOTSTRAP_THEME }}.min.css" type="text/css"/> <link rel="stylesheet" href="{{ SITEURL }}/theme/css/bootstrap.{{ BOOTSTRAP_THEME }}.min.css" type="text/css"/>
@@ -46,7 +50,8 @@
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/bootstrap.min.css" type="text/css"/> <link rel="stylesheet" href="{{ SITEURL }}/theme/css/bootstrap.min.css" type="text/css"/>
{% endif %} {% endif %}
<link href="{{ SITEURL }}/theme/css/font-awesome.min.css" rel="stylesheet"> <link href="{{ SITEURL }}/theme/css/font-awesome.min.css" rel="stylesheet">
<link href="{{ SITEURL }}/theme/css/pygments.css" rel="stylesheet">
<link href="{{ SITEURL }}/theme/css/pygments/{{ PYGMENTS_STYLE|default('native') }}.css" rel="stylesheet">
{% if DOCUTIL_CSS %} {% if DOCUTIL_CSS %}
<link href="{{ SITEURL }}/theme/css/html4css1.css" rel="stylesheet"> <link href="{{ SITEURL }}/theme/css/html4css1.css" rel="stylesheet">
{% endif %} {% endif %}
@@ -54,8 +59,9 @@
<link href="{{ SITEURL }}/theme/css/typogrify.css" rel="stylesheet"> <link href="{{ SITEURL }}/theme/css/typogrify.css" rel="stylesheet">
{% endif %} {% endif %}
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/style.css" type="text/css"/> <link rel="stylesheet" href="{{ SITEURL }}/theme/css/style.css" type="text/css"/>
<!-- JavaScript plugins (requires jQuery) --> {% if CUSTOM_CSS %}
<script src="http://code.jquery.com/jquery.js"></script> <link href="{{ SITEURL }}/{{ CUSTOM_CSS }}" rel="stylesheet">
{% endif %}
{% if FEED_ALL_ATOM %} {% if FEED_ALL_ATOM %}
<link href="{{ SITEURL }}/{{ FEED_ALL_ATOM }}" type="application/atom+xml" rel="alternate" <link href="{{ SITEURL }}/{{ FEED_ALL_ATOM }}" type="application/atom+xml" rel="alternate"
@@ -66,10 +72,10 @@
title="{{ SITENAME }} RSS Feed"/> title="{{ SITENAME }} RSS Feed"/>
{% endif %} {% endif %}
{% include 'includes/ga.html' %}
</head> </head>
<body> <body>
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="navbar {% if BOOTSTRAP_NAVBAR_INVERSE %}navbar-inverse{% else %}navbar-default{% endif %} navbar-fixed-top" role="navigation">
<div class="container"> <div class="container">
<div class="navbar-header"> <div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
@@ -78,7 +84,10 @@
<span class="icon-bar"></span> <span class="icon-bar"></span>
<span class="icon-bar"></span> <span class="icon-bar"></span>
</button> </button>
<a href="{{ SITEURL }}" class="navbar-brand">{{ SITENAME }}</a> <a href="{{ SITEURL }}/" class="navbar-brand">
{% if SITELOGO %}<img src="{{ SITEURL }}/{{ SITELOGO }}" width="{{ SITELOGO_SIZE }}"/> {% endif %}
{% if not HIDE_SITENAME %}{{ SITENAME }}{% endif %}
</a>
</div> </div>
<div class="collapse navbar-collapse navbar-ex1-collapse"> <div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav"> <ul class="nav navbar-nav">
@@ -101,53 +110,46 @@
{% endif %} {% endif %}
</ul> </ul>
<ul class="nav navbar-nav navbar-right"> <ul class="nav navbar-nav navbar-right">
<li><a href="{{ SITEURL }}/{{ ARCHIVES_URL | default('archives.html') }}"><i class="icon-th-list"></i>Archives</a></li> <li><a href="{{ SITEURL }}/{{ ARCHIVES_URL | default('archives.html') }}"><i class="fa fa-th-list"></i><span class="icon-label">Archives</span></a></li>
</ul> </ul>
</div> </div>
<!-- /.navbar-collapse --> <!-- /.navbar-collapse -->
</div> </div>
</nav> </div> <!-- /.navbar -->
<!-- /.navbar -->
<div class="container"> <div class="container">
<div class="row"> <div class="row">
<div class="col-lg-9"> {% if not HIDE_SIDEBAR %}
{% block content %} <div class="col-sm-9">
{% endblock %} {% else %}
<div class="col-lg-12">
{% endif %}
{% block breadcrumbs %}
{% endblock %}
{% block content %}
{% endblock %}
</div> </div>
<div class="col-lg-3 well well-sm" id="sidebar"> {% if not HIDE_SIDEBAR %}
<div class="col-sm-3 well well-sm" id="sidebar">
{% include 'includes/sidebar.html' %} {% include 'includes/sidebar.html' %}
</div> </div>
{% endif %}
</div> </div>
</div> </div>
{% include 'includes/footer.html' %} {% include 'includes/footer.html' %}
<script src="http://code.jquery.com/jquery.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed --> <!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="{{ SITEURL }}/theme/js/bootstrap.min.js"></script> <script src="{{ SITEURL }}/theme/js/bootstrap.min.js"></script>
<!-- Enable responsive features in IE8 with Respond.js (https://github.com/scottjehl/Respond) --> <!-- Enable responsive features in IE8 with Respond.js (https://github.com/scottjehl/Respond) -->
<script src="{{ SITEURL }}/theme/js/respond.min.js"></script> <script src="{{ SITEURL }}/theme/js/respond.min.js"></script>
{% include 'includes/github-js.html' %}
{% include 'includes/disqus_script.html' %} {% include 'includes/disqus_script.html' %}
{% include 'includes/ga.html' %}
{% if PIWIK_SITE_ID and PIWIK_URL %} {% include 'includes/piwik.html' %}
{% if PIWIK_SSL_URL is not defined %}
{% set PIWIK_SSL_URL = PIWIK_URL %}
{% endif %}
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(["trackPageView"]);
_paq.push(["enableLinkTracking"]);
(function() {
var u=(("https:" == document.location.protocol) ? "https://{{ PIWIK_SSL_URL }}/" : "http://{{ PIWIK_URL }}/");
_paq.push(["setTrackerUrl", u+"piwik.php"]);
_paq.push(["setSiteId", "{{ PIWIK_SITE_ID }}"]);
var d=document, g=d.createElement("script"), s=d.getElementsByTagName("script")[0]; g.type="text/javascript";
g.defer=true; g.async=true; g.src=u+"piwik.js"; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Piwik Code -->
{% endif %}
</body> </body>
</html> </html>

View File

@@ -1,13 +1,36 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block title %}{{ SITENAME }} - Categories{% endblock %} {% block title %}Categories - {{ SITENAME }}{% endblock %}
{% block breadcrumbs %}
{% if DISPLAY_BREADCRUMBS %}
<ol class="breadcrumb">
<li><a href="{{ SITEURL }}" title="{{ SITENAME }}"><i class="fa fa-home fa-lg"></i></a></li>
<li class="active">Categories</li>
</ol>
{% endif %}
{% endblock %}
{% block content %} {% block content %}
<section id="categories"> <section id="categories">
<h1>Categories for {{ SITENAME }}</h1> <h1>All Categories for {{ SITENAME }}</h1>
<ul> <div class="panel-group" id="accordion">
{% for category, articles in categories %} {% for category, articles in categories %}
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li> <div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapse-{{category.slug}}">{{ category }} <span class="badge pull-right">{{ articles|count }}</span></a>
</h4>
</div>
<div id="collapse-{{category.slug}}" class="panel-collapse collapse">
<div class="panel-body">
{% for article in articles %}
<p><span class="categories-timestamp"><time datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time></span> <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></p>
{% endfor %}
</div>
</div>
</div>
{% endfor %} {% endfor %}
</ul> </div>
</section> </section>
{% endblock %} {% endblock %}

View File

@@ -1,2 +1,11 @@
{% extends "index.html" %} {% extends "index.html" %}
{% block title %}{{ SITENAME }} - {{ category }}{% endblock %} {% block title %}{{ category }} - {{ SITENAME }}{% endblock %}
{% block breadcrumbs %}
{% if DISPLAY_BREADCRUMBS %}
<ol class="breadcrumb">
<li><a href="{{ SITEURL }}" title="{{ SITENAME }}"><i class="fa fa-home fa-lg"></i></a></li>
<li><a href="{{ SITEURL}}/{{ CATEGORIES_URL }}" title="{{ SITENAME }} Categories">Categories</a></li>
<li class="active">{{ category }}</li>
</ol>
{% endif %}
{% endblock %}

View File

@@ -1,12 +1,12 @@
<footer class="post-info"> <footer class="post-info">
<span class="label label-default">Date</span> <span class="label label-default">Date</span>
<span class="published"> <span class="published">
<i class="icon-calendar"></i>{{ article.locale_date }} <i class="fa fa-calendar"></i><time datetime="{{ article.date.isoformat() }}"> {{ article.locale_date }}</time>
</span> </span>
{# Uncomment if you want the author shown #} {# Uncomment if you want the author shown #}
{#{% if article.author %}#} {#{% if article.author %}#}
{#<span class="label">By</span>#} {#<span class="label">By</span>#}
{#<a href="{{ SITEURL }}/{{ article.author.url }}"><i class="icon-user"></i>{{ article.author }}</a>#} {#<a href="{{ SITEURL }}/{{ article.author.url }}"><i class="fa fa-user"></i> {{ article.author }}</a>#}
{#{% endif %}#} {#{% endif %}#}
{# Uncomment if you want to show Categories#} {# Uncomment if you want to show Categories#}
@@ -20,5 +20,6 @@
{% endif %} {% endif %}
{% include 'includes/taglist.html' %} {% include 'includes/taglist.html' %}
{% include 'includes/translations.html' %} {% import 'includes/translations.html' as translations with context %}
{{ translations.translations_for(article) }}
</footer><!-- /.post-info --> </footer><!-- /.post-info -->

View File

@@ -0,0 +1,64 @@
{# ------------------------------------------------------------------------ #}
{# Creative Commons license mark generator for Jinja2 templates, including #}
{# Pelican-generated static sites (or blogs). #}
{# ------------------------------------------------------------------------ #}
{# To use, put this file in a location where your template can import it. #}
{# Then import into the template, for example like this: #}
{# {% from '/path/to/where/you/placed/the/file' import cc_license_mark %} #}
{# Then call as simply as {{ cc_license_mark("CC-BY") }}. #}
{# #}
{# If full attribution markup is desired in a Pelican template, the #}
{# attr_props dict can be defaulted to the following when calling the macro:#}
{# attr_props={'title':SITENAME,'name':AUTHOR,'url':SITEURL}
{# ------------------------------------------------------------------------ #}
{# Generate a license mark for Creative Commons licensed content. #}
{# Choose the license either by name (CC-BY, CC-BY-SA, CC-BY-NC-SA, or #}
{# CC-BY-NC-ND), or by its features (allow derivatives: Yes, No, ShareAlike;#}
{# allow commercial reuse: Yes, No). Name, if provided, takes precedence, #}
{# and case is ignored. #}
{# #}
{# Optional: #}
{# br_after_icon: if true put a line break after the license icon #}
{# attr_markup: if true create markup for fulll attribution #}
{# attr_props: if attr_markup, a dict with title, name, and url keys #}
{# specifying how under which title, to which creator, and #}
{# to which URL to attribute the work #}
{# The parameters all mirror the Creative Commone license chooser: #}
{# http://creativecommons.org/choose/ #}
{# ------------------------------------------------------------------------ #}
{# Copyright (c) 1994 Hilmar Lapp, hlapp@drycafe.net. #}
{# Licensed under the terms of the MIT License. #}
{# Source at http://github.com/hlapp/cc-tools. Please fork & contribute. #}
{# ------------------------------------------------------------------------ #}
{% macro cc_license_mark(cc_name,
derivatives, commercial,
br_after_icon=false,
attr_markup=false,
attr_props={}) %}
{% if cc_name %}
{% set cc_name = cc_name|lower|replace("cc-","") %}
{% else %}
{% set cc_name = "by" %}
{% set cc_title_suffix = "" %}
{% if (not commercial) or (commercial|lower == "no") %}
{% set cc_name = cc_name ~ "-nc" %}
{% set cc_title_suffix = "-NonCommercial" %}
{% endif %}
{% if derivatives|lower == "no" %}
{% set cc_name = cc_name ~ "-nd" %}
{% set cc_title_suffix = cc_title_suffix ~ "-NoDerivatives" %}
{% elif derivatives|lower == "sharealike" %}
{% set cc_name = cc_name ~ "-sa" %}
{% set cc_title_suffix = cc_title_suffix ~ "-ShareAlike" %}
{% endif %}
{% endif %}
{% set cc_title, cc_uri, cc_icon = ("Creative Commons Attribution 4.0 InternationalCCSUFFIX License","http://creativecommons.org/licenses/CCNAME/4.0/","http://i.creativecommons.org/l/CCNAME/4.0/80x15.png") %}
<a rel="license" href="{{ cc_uri|replace('CCNAME',cc_name) }}"><img alt="Creative Commons License" style="border-width:0" src="{{ cc_icon|replace('CCNAME',cc_name) }}" /></a>
{% if br_after_img %}<br/>{% endif %}
{% if attr_markup %}
&quot;<span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">{{ attr_props['title'] }}</span>&quot; by <a xmlns:cc="http://creativecommons.org/ns#" href="{{ attr_props['url'] }}" property="cc:attributionName" rel="cc:attributionURL">{{ attr_props['name'] }}</a> is
{% else %}
Content
{% endif %}
licensed under a <a rel="license" href="{{ cc_uri|replace('CCNAME',cc_name) }}">{{ cc_title|replace('CCSUFFIX',cc_title_suffix) }}</a>, except where indicated otherwise.
{% endmacro %}

View File

@@ -1 +1 @@
{% if DISQUS_SITENAME %}<p><small>There are <a href="{{ SITEURL }}/{{ article.url }}#disqus_thread" data-disqus-identifier="{{ article.slug }}">comments</a>.</small></p>{% endif %} {% if DISQUS_SITENAME and DISQUS_DISPLAY_COUNTS %}<p><small>There are <a href="{{ SITEURL }}/{{ article.url }}#disqus_thread" {% if not DISQUS_NO_ID %}data-disqus-identifier="{{ article.date|strftime('%Y-%m-') ~ article.slug if DISQUS_ID_PREFIX_SLUG else article.slug }}"{% endif %}>comments</a>.</small></p>{% endif %}

View File

@@ -6,8 +6,13 @@
<script type="text/javascript"> <script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */ /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = '{{ DISQUS_SITENAME }}'; // required: replace example with your forum shortname var disqus_shortname = '{{ DISQUS_SITENAME }}'; // required: replace example with your forum shortname
var disqus_identifier = '{{ article.slug }}'; {% if not DISQUS_NO_ID %}
var disqus_identifier = '{{ article.date|strftime('%Y-%m-') ~ article.slug if DISQUS_ID_PREFIX_SLUG else article.slug }}';
{% endif %}
var disqus_url = '{{ SITEURL }}/{{ article.url }}'; var disqus_url = '{{ SITEURL }}/{{ article.url }}';
var disqus_config = function () {
this.language = "{{ DEFAULT_LANG }}";
};
/* * * DON'T EDIT BELOW THIS LINE * * */ /* * * DON'T EDIT BELOW THIS LINE * * */
(function () { (function () {

View File

@@ -1,16 +1,22 @@
<footer> <footer>
<div class="container"> <div class="container">
<hr> <hr>
<p class="pull-right"><i class="icon-arrow-up"></i> <a href="#">Back to top</a></p> <div class="row">
{% if articles %}
{% if articles %}
{% set copy_date = articles[0].date.strftime('%Y') %} {% set copy_date = articles[0].date.strftime('%Y') %}
{% else %} {% else %}
{% set copy_date = '' %} {% set copy_date = '' %}
{% endif %} {% endif %}
<div class="col-xs-10">&copy; {{ copy_date }} {{ AUTHOR }}
<p>&copy; {{ copy_date }} {{ AUTHOR }} &middot; Powered by <a href="https://github.com/DandyDev/pelican-bootstrap3" target="_blank">pelican-bootstrap3</a>, &middot; Powered by <a href="https://github.com/DandyDev/pelican-bootstrap3" target="_blank">pelican-bootstrap3</a>,
<a href="http://docs.getpelican.com/" target="_blank">Pelican</a>, <a href="http://docs.getpelican.com/" target="_blank">Pelican</a>,
<a href="http://getbootstrap.com" target="_blank">Bootstrap</a></p> <a href="http://getbootstrap.com" target="_blank">Bootstrap</a>
</div> {%- if CC_LICENSE or CC_LICENSE_DERIVATIVES or CC_LICENSE_COMMERCIAL %}
{% from 'includes/cc-license.html' import cc_license_mark %}
<p><small>{{ cc_license_mark(cc_name=CC_LICENSE,derivatives=CC_LICENSE_DERIVATIVES,commercial=CC_LICENSE_COMMERCIAL,attr_markup=CC_ATTR_MARKUP,attr_props={'title':SITENAME,'name':article.author if article else AUTHOR,'url':SITEURL}) }}</small></p>
{% endif %}
</div>
<div class="col-xs-2"><p class="pull-right"><i class="fa fa-arrow-up"></i> <a href="#">Back to top</a></p></div>
</div>
</div>
</footer> </footer>

View File

@@ -0,0 +1,33 @@
{% if GITHUB_USER %}
{% if GITHUB_REPO_COUNT is not defined %}
{% set GITHUB_REPO_COUNT = 5 %}
{% endif %}
{% if GITHUB_SKIP_FORK is not defined %}
{% set GITHUB_SKIP_FORK = "false" %}
{% else %}
{% if GITHUB_SKIP_FORK %}
{% set GITHUB_SKIP_FORK = "true" %}
{% else %}
{% set GITHUB_SKIP_FORK = "false" %}
{% endif %}
{% endif %}
<script type="text/javascript">
$(document).ready(function () {
if (!window.jXHR) {
var jxhr = document.createElement('script');
jxhr.type = 'text/javascript';
jxhr.src = '{{ SITEURL }}/theme/js/jXHR.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(jxhr, s);
}
github.showRepos({
user: '{{ GITHUB_USER }}',
count: {{ GITHUB_REPO_COUNT }},
skip_forks: {{ GITHUB_SKIP_FORK }},
target: '#gh_repos'
});
});
</script>
<script src="{{ SITEURL }}/theme/js/github.js" type="text/javascript"></script>
{% endif %}

View File

@@ -1,46 +1,11 @@
{% if GITHUB_USER %} {% if GITHUB_USER %}
{% if GITHUB_REPO_COUNT is not defined %} <li class="list-group-item"><h4><i class="fa fa-github fa-lg"></i><span class="icon-label">GitHub Repos</span></h4>
{% set GITHUB_REPO_COUNT = 5 %}
{% endif %}
{% if GITHUB_SKIP_FORK is not defined %}
{% set GITHUB_SKIP_FORK = "false" %}
{% else %}
{% if GITHUB_SKIP_FORK %}
{% set GITHUB_SKIP_FORK = "true" %}
{% else %}
{% set GITHUB_SKIP_FORK = "false" %}
{% endif %}
{% endif %}
<section>
<ul class="list-group list-group-flush">
<li class="list-group-item"><h4><i class="icon-github icon-large"></i>GitHub Repos</h4></li>
<div id="gh_repos"> <div id="gh_repos">
<p class="list-group-item">Status updating...</p> <p class="list-group-item">Status updating...</p>
</div> </div>
{% if GITHUB_SHOW_USER_LINK is defined %} {% if GITHUB_SHOW_USER_LINK is defined %}
<a href="https://github.com/{{ GITHUB_USER }}">@{{ GITHUB_USER }}</a> on GitHub <a href="https://github.com/{{ GITHUB_USER }}">@{{ GITHUB_USER }}</a> on GitHub
{% endif %} {% endif %}
</ul> </li>
<script type="text/javascript">
$(document).ready(function () {
if (!window.jXHR) {
var jxhr = document.createElement('script');
jxhr.type = 'text/javascript';
jxhr.src = '{{ SITEURL }}/theme/js/jXHR.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(jxhr, s);
}
github.showRepos({
user: '{{ GITHUB_USER }}',
count: {{ GITHUB_REPO_COUNT }},
skip_forks: {{ GITHUB_SKIP_FORK }},
target: '#gh_repos'
});
});
</script>
<script src="{{ SITEURL }}/theme/js/github.js" type="text/javascript"></script>
</section>
{% endif %} {% endif %}

View File

@@ -0,0 +1,13 @@
{% if LINKS %}
<li class="list-group-item"><h4><i class="fa fa-external-link-square fa-lg"></i><span class="icon-label">Links</span></h4>
<ul class="list-group" id="links">
{% for name, link in LINKS %}
<li class="list-group-item">
<a href="{{ link }}" target="_blank">
{{ name }}
</a>
</li>
{% endfor %}
</ul>
</li>
{% endif %}

View File

@@ -0,0 +1,20 @@
{% if PIWIK_SITE_ID and PIWIK_URL %}
{% if PIWIK_SSL_URL is not defined %}
{% set PIWIK_SSL_URL = PIWIK_URL %}
{% endif %}
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(["trackPageView"]);
_paq.push(["enableLinkTracking"]);
(function() {
var u=(("https:" == document.location.protocol) ? "https://{{ PIWIK_SSL_URL }}/" : "http://{{ PIWIK_URL }}/");
_paq.push(["setTrackerUrl", u+"piwik.php"]);
_paq.push(["setSiteId", "{{ PIWIK_SITE_ID }}"]);
var d=document, g=d.createElement("script"), s=d.getElementsByTagName("script")[0]; g.type="text/javascript";
g.defer=true; g.async=true; g.src=u+"piwik.js"; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Piwik Code -->
{% endif %}

View File

@@ -0,0 +1,10 @@
{% if article.related_posts %}
<section class="well" id="related-posts">
<h4>{{ RELATED_POSTS_TEXT|default('Related Posts:') }}</h4>
<ul>
{% for related_post in article.related_posts %}
<li><a href="{{ SITEURL }}/{{ related_post.url }}">{{ related_post.title }}</a></li>
{% endfor %}
</ul>
</section>
{% endif %}

View File

@@ -6,19 +6,23 @@
<section> <section>
<ul class="list-group list-group-flush"> <ul class="list-group list-group-flush">
{% if SOCIAL %} {% if SOCIAL %}
<li class="list-group-item"><h4><i class="icon-home icon-large"></i>Social</h4></li> <li class="list-group-item"><h4><i class="fa fa-home fa-lg"></i><span class="icon-label">Social</span></h4>
{% for name, link in SOCIAL %} <ul class="list-group" id="social">
{% for name, link in SOCIAL %}
<li class="list-group-item"><a href="{{ link }}"><i <li class="list-group-item"><a href="{{ link }}"><i
class="icon-{{ name }}-sign icon-large"></i>{{ name }} class="fa fa-{{ name|lower|replace('+','-plus') }}-square fa-lg"></i> {{ name }}
</a></li> </a></li>
{% endfor %} {% endfor %}
</ul>
</li>
{% endif %} {% endif %}
{% if DISPLAY_RECENT_POSTS_ON_SIDEBAR %} {% if DISPLAY_RECENT_POSTS_ON_SIDEBAR %}
{% if RECENT_POST_COUNT is not defined %} {% if RECENT_POST_COUNT is not defined %}
{% set RECENT_POST_COUNT = 5 %} {% set RECENT_POST_COUNT = 5 %}
{% endif %} {% endif %}
<li class="list-group-item"><h4><i class="icon-home icon-large"></i>Recent Posts</h4></li> <li class="list-group-item"><h4><i class="fa fa-home fa-lg"></i><span class="icon-label">Recent Posts</span></h4>
<ul class="list-group" id="recentposts">
{% for article in articles[:RECENT_POST_COUNT] %} {% for article in articles[:RECENT_POST_COUNT] %}
<li class="list-group-item"> <li class="list-group-item">
<a href="{{ SITEURL }}/{{ article.url }}"> <a href="{{ SITEURL }}/{{ article.url }}">
@@ -26,31 +30,40 @@
</a> </a>
</li> </li>
{% endfor %} {% endfor %}
</ul>
</li>
{% endif %} {% endif %}
{% if DISPLAY_CATEGORIES_ON_SIDEBAR %} {% if DISPLAY_CATEGORIES_ON_SIDEBAR %}
<li class="list-group-item"><a href="{{ SITEURL }}/{{ CATEGORIES_URL }}"><h4><i class="fa fa-home fa-lg"></i><span class="icon-label">Categories</span></h4></a>
<li class="list-group-item"><h4><i class="icon-home icon-large"></i>Categories</h4></li> <ul class="list-group" id="categories">
{% for cat, null in categories %} {% for cat, null in categories %}
<li class="list-group-item"> <li class="list-group-item">
<a href="{{ SITEURL }}/{{ cat.url }}"> <a href="{{ SITEURL }}/{{ cat.url }}">
<i class="icon-folder-open icon-large"></i>{{ cat }} <i class="fa fa-folder-open fa-lg"></i> {{ cat }}
</a> </a>
</li> </li>
{% endfor %} {% endfor %}
</li>
{% endif %} {% endif %}
{% if DISPLAY_TAGS_ON_SIDEBAR %} {% if DISPLAY_TAGS_ON_SIDEBAR %}
<li class="list-group-item"><a href="{{ SITEURL }}/tags.html"><h4><i class="icon-tags icon-large"></i>Tags</h4></a></li> <li class="list-group-item"><a href="{{ SITEURL }}/{{ TAGS_URL }}"><h4><i class="fa fa-tags fa-lg"></i><span class="icon-label">Tags</span></h4></a>
<ul class="list-group" id="tags">
{% for tag in tag_cloud|sort(attribute='1') %} {% for tag in tag_cloud|sort(attribute='1') %}
<li class="list-group-item tag-{{ tag.1 }}"> <li class="list-group-item tag-{{ tag.1 }}">
<a href="{{ SITEURL }}/{{ tag.0.url }}"> <a href="{{ SITEURL }}/{{ tag.0.url }}">
{{ tag.0 }} {{ tag.0 }}
</a> </a>
</li> </li>
{% endfor %} {% endfor %}
</ul>
</li>
{% endif %} {% endif %}
{% include 'includes/github.html' %}
{% include 'includes/links.html' %}
</ul> </ul>
</section> </section>
{% include 'includes/github.html' %}
</aside> </aside>

View File

@@ -1,6 +1,8 @@
{% macro translations_for(article) %}
{% if article.translations %} {% if article.translations %}
<span class="label label-default">Lang</span> <span class="label label-default">Lang</span>
{% for translation in article.translations %} {% for translation in article.translations %}
<a href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a> <a href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a>
{% endfor %} {% endfor %}
{% endif %} {% endif %}
{% endmacro %}

View File

@@ -5,8 +5,7 @@
<article> <article>
<h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2> <h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2>
<div class="summary">{{ article.summary }} <div class="summary">{{ article.summary }}
{# Uncomment if you want to show comment counts #} {% include 'includes/comment_count.html' %}
{#{% include 'includes/comment_count.html' %}#}
<a class="btn btn-default btn-xs" href="{{ SITEURL }}/{{ article.url }}">more ...</a> <a class="btn btn-default btn-xs" href="{{ SITEURL }}/{{ article.url }}">more ...</a>
</div> </div>
</article> </article>

View File

@@ -1,8 +1,20 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block title %}{{ page.title }}{% endblock %} {% block title %}{{ page.title }} - {{ SITENAME }}{% endblock %}
{% block breadcrumbs %}
{% if DISPLAY_BREADCRUMBS %}
<ol class="breadcrumb">
<li><a href="{{ SITEURL }}" title="{{ SITENAME }}"><i class="fa fa-home fa-lg"></i></a></li>
<li class="active">{{ page.title }}</li>
</ol>
{% endif %}
{% endblock %}
{% block content %} {% block content %}
<section id="content" class="body"> <section id="content" class="body">
<h1 class="entry-title">{{ page.title }}</h1> <h1 class="entry-title">{{ page.title }}</h1>
{% import 'includes/translations.html' as translations with context %}
{{ translations.translations_for(page) }}
{% if PDF_PROCESSOR %} {% if PDF_PROCESSOR %}
<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf"> <a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">
get the pdf get the pdf

View File

@@ -1,2 +1,11 @@
{% extends "index.html" %} {% extends "index.html" %}
{% block title %}{{ SITENAME }} - {{ tag }}{% endblock %} {% block breadcrumbs %}
{% if DISPLAY_BREADCRUMBS %}
<ol class="breadcrumb">
<li><a href="{{ SITEURL }}" title="{{ SITENAME }}"><i class="fa fa-home fa-lg"></i></a></li>
<li><a href="{{ SITEURL }}/{{ TAGS_URL }}" title="Tags">Tags</a></li>
<li class="active">{{ tag }}</li>
</ol>
{% endif %}
{% endblock %}
{% block title %}{{ tag }} - {{ SITENAME }}{% endblock %}

View File

@@ -1,13 +1,37 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block title %}{{ SITENAME }} - Tags{% endblock %}
{% block title %}Tags - {{ SITENAME }}{% endblock %}
{% block breadcrumbs %}
{% if DISPLAY_BREADCRUMBS %}
<ol class="breadcrumb">
<li><a href="{{ SITEURL }}" title="{{ SITENAME }}"><i class="fa fa-home fa-lg"></i></a></li>
<li class="active">Tags</li>
</ol>
{% endif %}
{% endblock %}
{% block content %} {% block content %}
<section id="tags"> <section id="tags">
<h1>Tags for {{ SITENAME }}</h1> <h1>Tags for {{ SITENAME }}</h1>
<ul> <div class="panel-group" id="accordion">
{%- for tag, articles in tags|sort %} {%- for tag, articles in tags|sort %}
<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> ({{ articles|count }})</li> <div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapse-{{tag.slug}}">{{ tag }} <span class="badge pull-right">{{ articles|count }}</span></a>
</h4>
</div>
<div id="collapse-{{tag.slug}}" class="panel-collapse collapse">
<div class="panel-body">
{% for article in articles %}
<p><span class="categories-timestamp"><time datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time></span> <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></p>
{% endfor %}
</div>
</div>
</div>
{% endfor %} {% endfor %}
</ul> </div>
</section> </section>
{% endblock %} {% endblock %}