diff options
56 files changed, 3145 insertions, 615 deletions
diff --git a/pelican-bootstrap3/AUTHORS.md b/pelican-bootstrap3/AUTHORS.md new file mode 100644 index 0000000..de337eb --- /dev/null +++ b/pelican-bootstrap3/AUTHORS.md @@ -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!)
\ No newline at end of file diff --git a/pelican-bootstrap3/CONTRIBUTING.md b/pelican-bootstrap3/CONTRIBUTING.md new file mode 100644 index 0000000..1cb4d5d --- /dev/null +++ b/pelican-bootstrap3/CONTRIBUTING.md @@ -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. diff --git a/pelican-bootstrap3/README.md b/pelican-bootstrap3/README.md index b0106d5..2535f81 100644 --- a/pelican-bootstrap3/README.md +++ b/pelican-bootstrap3/README.md @@ -1,10 +1,13 @@ # 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 @@ -27,6 +30,7 @@ This theme honors the following standard Pelican settings: * `DISPLAY_PAGES_ON_MENU` * `DISPLAY_CATEGORIES_ON_MENU` * `MENUITEMS` + * `LINKS` (Blogroll will be put in the sidebar instead of the head) * Analytics & Comments * `GOOGLE_ANALYTICS` * `DISQUS_SITENAME` @@ -36,6 +40,75 @@ It uses the `tag_cloud` variable for displaying tags in the sidebar. You can con ## 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 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_ * 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 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 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 -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 -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 @@ -91,4 +184,4 @@ The footer will display a copyright message using the AUTHOR variable and the ye ## Live example -[This is my website](http://dandydev.net)
\ No newline at end of file +[This is my website](http://dandydev.net) diff --git a/pelican-bootstrap3/screenshot-article.png b/pelican-bootstrap3/screenshot-article.png Binary files differindex 3e44cc0..3dfc096 100644 --- a/pelican-bootstrap3/screenshot-article.png +++ b/pelican-bootstrap3/screenshot-article.png diff --git a/pelican-bootstrap3/screenshot.png b/pelican-bootstrap3/screenshot.png Binary files differindex f851766..b925810 100644 --- a/pelican-bootstrap3/screenshot.png +++ b/pelican-bootstrap3/screenshot.png diff --git a/pelican-bootstrap3/static/css/font-awesome.css b/pelican-bootstrap3/static/css/font-awesome.css new file mode 100644 index 0000000..048cff9 --- /dev/null +++ b/pelican-bootstrap3/static/css/font-awesome.css @@ -0,0 +1,1338 @@ +/*! + * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */ +/* FONT PATH + * -------------------------- */ +@font-face { + font-family: 'FontAwesome'; + src: url('../fonts/fontawesome-webfont.eot?v=4.0.3'); + src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff?v=4.0.3') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.0.3') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg'); + font-weight: normal; + font-style: normal; +} +.fa { + display: inline-block; + font-family: FontAwesome; + font-style: normal; + font-weight: normal; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +/* makes the font 33% larger relative to the icon container */ +.fa-lg { + font-size: 1.3333333333333333em; + line-height: 0.75em; + vertical-align: -15%; +} +.fa-2x { + font-size: 2em; +} +.fa-3x { + font-size: 3em; +} +.fa-4x { + font-size: 4em; +} +.fa-5x { + font-size: 5em; +} +.fa-fw { + width: 1.2857142857142858em; + text-align: center; +} +.fa-ul { + padding-left: 0; + margin-left: 2.142857142857143em; + list-style-type: none; +} +.fa-ul > li { + position: relative; +} +.fa-li { + position: absolute; + left: -2.142857142857143em; + width: 2.142857142857143em; + top: 0.14285714285714285em; + text-align: center; +} +.fa-li.fa-lg { + left: -1.8571428571428572em; +} +.fa-border { + padding: .2em .25em .15em; + border: solid 0.08em #eeeeee; + border-radius: .1em; +} +.pull-right { + float: right; +} +.pull-left { + float: left; +} +.fa.pull-left { + margin-right: .3em; +} +.fa.pull-right { + margin-left: .3em; +} +.fa-spin { + -webkit-animation: spin 2s infinite linear; + -moz-animation: spin 2s infinite linear; + -o-animation: spin 2s infinite linear; + animation: spin 2s infinite linear; +} +@-moz-keyframes spin { + 0% { + -moz-transform: rotate(0deg); + } + 100% { + -moz-transform: rotate(359deg); + } +} +@-webkit-keyframes spin { + 0% { + -webkit-transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + } +} +@-o-keyframes spin { + 0% { + -o-transform: rotate(0deg); + } + 100% { + -o-transform: rotate(359deg); + } +} +@-ms-keyframes spin { + 0% { + -ms-transform: rotate(0deg); + } + 100% { + -ms-transform: rotate(359deg); + } +} +@keyframes spin { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(359deg); + } +} +.fa-rotate-90 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); + -webkit-transform: rotate(90deg); + -moz-transform: rotate(90deg); + -ms-transform: rotate(90deg); + -o-transform: rotate(90deg); + transform: rotate(90deg); +} +.fa-rotate-180 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); + -webkit-transform: rotate(180deg); + -moz-transform: rotate(180deg); + -ms-transform: rotate(180deg); + -o-transform: rotate(180deg); + transform: rotate(180deg); +} +.fa-rotate-270 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); + -webkit-transform: rotate(270deg); + -moz-transform: rotate(270deg); + -ms-transform: rotate(270deg); + -o-transform: rotate(270deg); + transform: rotate(270deg); +} +.fa-flip-horizontal { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); + -webkit-transform: scale(-1, 1); + -moz-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + -o-transform: scale(-1, 1); + transform: scale(-1, 1); +} +.fa-flip-vertical { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); + -webkit-transform: scale(1, -1); + -moz-transform: scale(1, -1); + -ms-transform: scale(1, -1); + -o-transform: scale(1, -1); + transform: scale(1, -1); +} +.fa-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; +} +.fa-stack-1x, +.fa-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; +} +.fa-stack-1x { + line-height: inherit; +} +.fa-stack-2x { + font-size: 2em; +} +.fa-inverse { + color: #ffffff; +} +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ +.fa-glass:before { + content: "\f000"; +} +.fa-music:before { + content: "\f001"; +} +.fa-search:before { + content: "\f002"; +} +.fa-envelope-o:before { + content: "\f003"; +} +.fa-heart:before { + content: "\f004"; +} +.fa-star:before { + content: "\f005"; +} +.fa-star-o:before { + content: "\f006"; +} +.fa-user:before { + content: "\f007"; +} +.fa-film:before { + content: "\f008"; +} +.fa-th-large:before { + content: "\f009"; +} +.fa-th:before { + content: "\f00a"; +} +.fa-th-list:before { + content: "\f00b"; +} +.fa-check:before { + content: "\f00c"; +} +.fa-times:before { + content: "\f00d"; +} +.fa-search-plus:before { + content: "\f00e"; +} +.fa-search-minus:before { + content: "\f010"; +} +.fa-power-off:before { + content: "\f011"; +} +.fa-signal:before { + content: "\f012"; +} +.fa-gear:before, +.fa-cog:before { + content: "\f013"; +} +.fa-trash-o:before { + content: "\f014"; +} +.fa-home:before { + content: "\f015"; +} +.fa-file-o:before { + content: "\f016"; +} +.fa-clock-o:before { + content: "\f017"; +} +.fa-road:before { + content: "\f018"; +} +.fa-download:before { + content: "\f019"; +} +.fa-arrow-circle-o-down:before { + content: "\f01a"; +} +.fa-arrow-circle-o-up:before { + content: "\f01b"; +} +.fa-inbox:before { + content: "\f01c"; +} +.fa-play-circle-o:before { + content: "\f01d"; +} +.fa-rotate-right:before, +.fa-repeat:before { + content: "\f01e"; +} +.fa-refresh:before { + content: "\f021"; +} +.fa-list-alt:before { + content: "\f022"; +} +.fa-lock:before { + content: "\f023"; +} +.fa-flag:before { + content: "\f024"; +} +.fa-headphones:before { + content: "\f025"; +} +.fa-volume-off:before { + content: "\f026"; +} +.fa-volume-down:before { + content: "\f027"; +} +.fa-volume-up:before { + content: "\f028"; +} +.fa-qrcode:before { + content: "\f029"; +} +.fa-barcode:before { + content: "\f02a"; +} +.fa-tag:before { + content: "\f02b"; +} +.fa-tags:before { + content: "\f02c"; +} +.fa-book:before { + content: "\f02d"; +} +.fa-bookmark:before { + content: "\f02e"; +} +.fa-print:before { + content: "\f02f"; +} +.fa-camera:before { + content: "\f030"; +} +.fa-font:before { + content: "\f031"; +} +.fa-bold:before { + content: "\f032"; +} +.fa-italic:before { + content: "\f033"; +} +.fa-text-height:before { + content: "\f034"; +} +.fa-text-width:before { + content: "\f035"; +} +.fa-align-left:before { + content: "\f036"; +} +.fa-align-center:before { + content: "\f037"; +} +.fa-align-right:before { + content: "\f038"; +} +.fa-align-justify:before { + content: "\f039"; +} +.fa-list:before { + content: "\f03a"; +} +.fa-dedent:before, +.fa-outdent:before { + content: "\f03b"; +} +.fa-indent:before { + content: "\f03c"; +} +.fa-video-camera:before { + content: "\f03d"; +} +.fa-picture-o:before { + content: "\f03e"; +} +.fa-pencil:before { + content: "\f040"; +} +.fa-map-marker:before { + content: "\f041"; +} +.fa-adjust:before { + content: "\f042"; +} +.fa-tint:before { + content: "\f043"; +} +.fa-edit:before, +.fa-pencil-square-o:before { + content: "\f044"; +} +.fa-share-square-o:before { + content: "\f045"; +} +.fa-check-square-o:before { + content: "\f046"; +} +.fa-arrows:before { + content: "\f047"; +} +.fa-step-backward:before { + content: "\f048"; +} +.fa-fast-backward:before { + content: "\f049"; +} +.fa-backward:before { + content: "\f04a"; +} +.fa-play:before { + content: "\f04b"; +} +.fa-pause:before { + content: "\f04c"; +} +.fa-stop:before { + content: "\f04d"; +} +.fa-forward:before { + content: "\f04e"; +} +.fa-fast-forward:before { + content: "\f050"; +} +.fa-step-forward:before { + content: "\f051"; +} +.fa-eject:before { + content: "\f052"; +} +.fa-chevron-left:before { + content: "\f053"; +} +.fa-chevron-right:before { + content: "\f054"; +} +.fa-plus-circle:before { + content: "\f055"; +} +.fa-minus-circle:before { + content: "\f056"; +} +.fa-times-circle:before { + content: "\f057"; +} +.fa-check-circle:before { + content: "\f058"; +} +.fa-question-circle:before { + content: "\f059"; +} +.fa-info-circle:before { + content: "\f05a"; +} +.fa-crosshairs:before { + content: "\f05b"; +} +.fa-times-circle-o:before { + content: "\f05c"; +} +.fa-check-circle-o:before { + content: "\f05d"; +} +.fa-ban:before { + content: "\f05e"; +} +.fa-arrow-left:before { + content: "\f060"; +} +.fa-arrow-right:before { + content: "\f061"; +} +.fa-arrow-up:before { + content: "\f062"; +} +.fa-arrow-down:before { + content: "\f063"; +} +.fa-mail-forward:before, +.fa-share:before { + content: "\f064"; +} +.fa-expand:before { + content: "\f065"; +} +.fa-compress:before { + content: "\f066"; +} +.fa-plus:before { + content: "\f067"; +} +.fa-minus:before { + content: "\f068"; +} +.fa-asterisk:before { + content: "\f069"; +} +.fa-exclamation-circle:before { + content: "\f06a"; +} +.fa-gift:before { + content: "\f06b"; +} +.fa-leaf:before { + content: "\f06c"; +} +.fa-fire:before { + content: "\f06d"; +} +.fa-eye:before { + content: "\f06e"; +} +.fa-eye-slash:before { + content: "\f070"; +} +.fa-warning:before, +.fa-exclamation-triangle:before { + content: "\f071"; +} +.fa-plane:before { + content: "\f072"; +} +.fa-calendar:before { + content: "\f073"; +} +.fa-random:before { + content: "\f074"; +} +.fa-comment:before { + content: "\f075"; +} +.fa-magnet:before { + content: "\f076"; +} +.fa-chevron-up:before { + content: "\f077"; +} +.fa-chevron-down:before { + content: "\f078"; +} +.fa-retweet:before { + content: "\f079"; +} +.fa-shopping-cart:before { + content: "\f07a"; +} +.fa-folder:before { + content: "\f07b"; +} +.fa-folder-open:before { + content: "\f07c"; +} +.fa-arrows-v:before { + content: "\f07d"; +} +.fa-arrows-h:before { + content: "\f07e"; +} +.fa-bar-chart-o:before { + content: "\f080"; +} +.fa-twitter-square:before { + content: "\f081"; +} +.fa-facebook-square:before { + content: "\f082"; +} +.fa-camera-retro:before { + content: "\f083"; +} +.fa-key:before { + content: "\f084"; +} +.fa-gears:before, +.fa-cogs:before { + content: "\f085"; +} +.fa-comments:before { + content: "\f086"; +} +.fa-thumbs-o-up:before { + content: "\f087"; +} +.fa-thumbs-o-down:before { + content: "\f088"; +} +.fa-star-half:before { + content: "\f089"; +} +.fa-heart-o:before { + content: "\f08a"; +} +.fa-sign-out:before { + content: "\f08b"; +} +.fa-linkedin-square:before { + content: "\f08c"; +} +.fa-thumb-tack:before { + content: "\f08d"; +} +.fa-external-link:before { + content: "\f08e"; +} +.fa-sign-in:before { + content: "\f090"; +} +.fa-trophy:before { + content: "\f091"; +} +.fa-github-square:before { + content: "\f092"; +} +.fa-upload:before { + content: "\f093"; +} +.fa-lemon-o:before { + content: "\f094"; +} +.fa-phone:before { + content: "\f095"; +} +.fa-square-o:before { + content: "\f096"; +} +.fa-bookmark-o:before { + content: "\f097"; +} +.fa-phone-square:before { + content: "\f098"; +} +.fa-twitter:before { + content: "\f099"; +} +.fa-facebook:before { + content: "\f09a"; +} +.fa-github:before { + content: "\f09b"; +} +.fa-unlock:before { + content: "\f09c"; +} +.fa-credit-card:before { + content: "\f09d"; +} +.fa-rss:before { + content: "\f09e"; +} +.fa-hdd-o:before { + content: "\f0a0"; +} +.fa-bullhorn:before { + content: "\f0a1"; +} +.fa-bell:before { + content: "\f0f3"; +} +.fa-certificate:before { + content: "\f0a3"; +} +.fa-hand-o-right:before { + content: "\f0a4"; +} +.fa-hand-o-left:before { + content: "\f0a5"; +} +.fa-hand-o-up:before { + content: "\f0a6"; +} +.fa-hand-o-down:before { + content: "\f0a7"; +} +.fa-arrow-circle-left:before { + content: "\f0a8"; +} +.fa-arrow-circle-right:before { + content: "\f0a9"; +} +.fa-arrow-circle-up:before { + content: "\f0aa"; +} +.fa-arrow-circle-down:before { + content: "\f0ab"; +} +.fa-globe:before { + content: "\f0ac"; +} +.fa-wrench:before { + content: "\f0ad"; +} +.fa-tasks:before { + content: "\f0ae"; +} +.fa-filter:before { + content: "\f0b0"; +} +.fa-briefcase:before { + content: "\f0b1"; +} +.fa-arrows-alt:before { + content: "\f0b2"; +} +.fa-group:before, +.fa-users:before { + content: "\f0c0"; +} +.fa-chain:before, +.fa-link:before { + content: "\f0c1"; +} +.fa-cloud:before { + content: "\f0c2"; +} +.fa-flask:before { + content: "\f0c3"; +} +.fa-cut:before, +.fa-scissors:before { + content: "\f0c4"; +} +.fa-copy:before, +.fa-files-o:before { + content: "\f0c5"; +} +.fa-paperclip:before { + content: "\f0c6"; +} +.fa-save:before, +.fa-floppy-o:before { + content: "\f0c7"; +} +.fa-square:before { + content: "\f0c8"; +} +.fa-bars:before { + content: "\f0c9"; +} +.fa-list-ul:before { + content: "\f0ca"; +} +.fa-list-ol:before { + content: "\f0cb"; +} +.fa-strikethrough:before { + content: "\f0cc"; +} +.fa-underline:before { + content: "\f0cd"; +} +.fa-table:before { + content: "\f0ce"; +} +.fa-magic:before { + content: "\f0d0"; +} +.fa-truck:before { + content: "\f0d1"; +} +.fa-pinterest:before { + content: "\f0d2"; +} +.fa-pinterest-square:before { + content: "\f0d3"; +} +.fa-google-plus-square:before { + content: "\f0d4"; +} +.fa-google-plus:before { + content: "\f0d5"; +} +.fa-money:before { + content: "\f0d6"; +} +.fa-caret-down:before { + content: "\f0d7"; +} +.fa-caret-up:before { + content: "\f0d8"; +} +.fa-caret-left:before { + content: "\f0d9"; +} +.fa-caret-right:before { + content: "\f0da"; +} +.fa-columns:before { + content: "\f0db"; +} +.fa-unsorted:before, +.fa-sort:before { + content: "\f0dc"; +} +.fa-sort-down:before, +.fa-sort-asc:before { + content: "\f0dd"; +} +.fa-sort-up:before, +.fa-sort-desc:before { + content: "\f0de"; +} +.fa-envelope:before { + content: "\f0e0"; +} +.fa-linkedin:before { + content: "\f0e1"; +} +.fa-rotate-left:before, +.fa-undo:before { + content: "\f0e2"; +} +.fa-legal:before, +.fa-gavel:before { + content: "\f0e3"; +} +.fa-dashboard:before, +.fa-tachometer:before { + content: "\f0e4"; +} +.fa-comment-o:before { + content: "\f0e5"; +} +.fa-comments-o:before { + content: "\f0e6"; +} +.fa-flash:before, +.fa-bolt:before { + content: "\f0e7"; +} +.fa-sitemap:before { + content: "\f0e8"; +} +.fa-umbrella:before { + content: "\f0e9"; +} +.fa-paste:before, +.fa-clipboard:before { + content: "\f0ea"; +} +.fa-lightbulb-o:before { + content: "\f0eb"; +} +.fa-exchange:before { + content: "\f0ec"; +} +.fa-cloud-download:before { + content: "\f0ed"; +} +.fa-cloud-upload:before { + content: "\f0ee"; +} +.fa-user-md:before { + content: "\f0f0"; +} +.fa-stethoscope:before { + content: "\f0f1"; +} +.fa-suitcase:before { + content: "\f0f2"; +} +.fa-bell-o:before { + content: "\f0a2"; +} +.fa-coffee:before { + content: "\f0f4"; +} +.fa-cutlery:before { + content: "\f0f5"; +} +.fa-file-text-o:before { + content: "\f0f6"; +} +.fa-building-o:before { + content: "\f0f7"; +} +.fa-hospital-o:before { + content: "\f0f8"; +} +.fa-ambulance:before { + content: "\f0f9"; +} +.fa-medkit:before { + content: "\f0fa"; +} +.fa-fighter-jet:before { + content: "\f0fb"; +} +.fa-beer:before { + content: "\f0fc"; +} +.fa-h-square:before { + content: "\f0fd"; +} +.fa-plus-square:before { + content: "\f0fe"; +} +.fa-angle-double-left:before { + content: "\f100"; +} +.fa-angle-double-right:before { + content: "\f101"; +} +.fa-angle-double-up:before { + content: "\f102"; +} +.fa-angle-double-down:before { + content: "\f103"; +} +.fa-angle-left:before { + content: "\f104"; +} +.fa-angle-right:before { + content: "\f105"; +} +.fa-angle-up:before { + content: "\f106"; +} +.fa-angle-down:before { + content: "\f107"; +} +.fa-desktop:before { + content: "\f108"; +} +.fa-laptop:before { + content: "\f109"; +} +.fa-tablet:before { + content: "\f10a"; +} +.fa-mobile-phone:before, +.fa-mobile:before { + content: "\f10b"; +} +.fa-circle-o:before { + content: "\f10c"; +} +.fa-quote-left:before { + content: "\f10d"; +} +.fa-quote-right:before { + content: "\f10e"; +} +.fa-spinner:before { + content: "\f110"; +} +.fa-circle:before { + content: "\f111"; +} +.fa-mail-reply:before, +.fa-reply:before { + content: "\f112"; +} +.fa-github-alt:before { + content: "\f113"; +} +.fa-folder-o:before { + content: "\f114"; +} +.fa-folder-open-o:before { + content: "\f115"; +} +.fa-smile-o:before { + content: "\f118"; +} +.fa-frown-o:before { + content: "\f119"; +} +.fa-meh-o:before { + content: "\f11a"; +} +.fa-gamepad:before { + content: "\f11b"; +} +.fa-keyboard-o:before { + content: "\f11c"; +} +.fa-flag-o:before { + content: "\f11d"; +} +.fa-flag-checkered:before { + content: "\f11e"; +} +.fa-terminal:before { + content: "\f120"; +} +.fa-code:before { + content: "\f121"; +} +.fa-reply-all:before { + content: "\f122"; +} +.fa-mail-reply-all:before { + content: "\f122"; +} +.fa-star-half-empty:before, +.fa-star-half-full:before, +.fa-star-half-o:before { + content: "\f123"; +} +.fa-location-arrow:before { + content: "\f124"; +} +.fa-crop:before { + content: "\f125"; +} +.fa-code-fork:before { + content: "\f126"; +} +.fa-unlink:before, +.fa-chain-broken:before { + content: "\f127"; +} +.fa-question:before { + content: "\f128"; +} +.fa-info:before { + content: "\f129"; +} +.fa-exclamation:before { + content: "\f12a"; +} +.fa-superscript:before { + content: "\f12b"; +} +.fa-subscript:before { + content: "\f12c"; +} +.fa-eraser:before { + content: "\f12d"; +} +.fa-puzzle-piece:before { + content: "\f12e"; +} +.fa-microphone:before { + content: "\f130"; +} +.fa-microphone-slash:before { + content: "\f131"; +} +.fa-shield:before { + content: "\f132"; +} +.fa-calendar-o:before { + content: "\f133"; +} +.fa-fire-extinguisher:before { + content: "\f134"; +} +.fa-rocket:before { + content: "\f135"; +} +.fa-maxcdn:before { + content: "\f136"; +} +.fa-chevron-circle-left:before { + content: "\f137"; +} +.fa-chevron-circle-right:before { + content: "\f138"; +} +.fa-chevron-circle-up:before { + content: "\f139"; +} +.fa-chevron-circle-down:before { + content: "\f13a"; +} +.fa-html5:before { + content: "\f13b"; +} +.fa-css3:before { + content: "\f13c"; +} +.fa-anchor:before { + content: "\f13d"; +} +.fa-unlock-alt:before { + content: "\f13e"; +} +.fa-bullseye:before { + content: "\f140"; +} +.fa-ellipsis-h:before { + content: "\f141"; +} +.fa-ellipsis-v:before { + content: "\f142"; +} +.fa-rss-square:before { + content: "\f143"; +} +.fa-play-circle:before { + content: "\f144"; +} +.fa-ticket:before { + content: "\f145"; +} +.fa-minus-square:before { + content: "\f146"; +} +.fa-minus-square-o:before { + content: "\f147"; +} +.fa-level-up:before { + content: "\f148"; +} +.fa-level-down:before { + content: "\f149"; +} +.fa-check-square:before { + content: "\f14a"; +} +.fa-pencil-square:before { + content: "\f14b"; +} +.fa-external-link-square:before { + content: "\f14c"; +} +.fa-share-square:before { + content: "\f14d"; +} +.fa-compass:before { + content: "\f14e"; +} +.fa-toggle-down:before, +.fa-caret-square-o-down:before { + content: "\f150"; +} +.fa-toggle-up:before, +.fa-caret-square-o-up:before { + content: "\f151"; +} +.fa-toggle-right:before, +.fa-caret-square-o-right:before { + content: "\f152"; +} +.fa-euro:before, +.fa-eur:before { + content: "\f153"; +} +.fa-gbp:before { + content: "\f154"; +} +.fa-dollar:before, +.fa-usd:before { + content: "\f155"; +} +.fa-rupee:before, +.fa-inr:before { + content: "\f156"; +} +.fa-cny:before, +.fa-rmb:before, +.fa-yen:before, +.fa-jpy:before { + content: "\f157"; +} +.fa-ruble:before, +.fa-rouble:before, +.fa-rub:before { + content: "\f158"; +} +.fa-won:before, +.fa-krw:before { + content: "\f159"; +} +.fa-bitcoin:before, +.fa-btc:before { + content: "\f15a"; +} +.fa-file:before { + content: "\f15b"; +} +.fa-file-text:before { + content: "\f15c"; +} +.fa-sort-alpha-asc:before { + content: "\f15d"; +} +.fa-sort-alpha-desc:before { + content: "\f15e"; +} +.fa-sort-amount-asc:before { + content: "\f160"; +} +.fa-sort-amount-desc:before { + content: "\f161"; +} +.fa-sort-numeric-asc:before { + content: "\f162"; +} +.fa-sort-numeric-desc:before { + content: "\f163"; +} +.fa-thumbs-up:before { + content: "\f164"; +} +.fa-thumbs-down:before { + content: "\f165"; +} +.fa-youtube-square:before { + content: "\f166"; +} +.fa-youtube:before { + content: "\f167"; +} +.fa-xing:before { + content: "\f168"; +} +.fa-xing-square:before { + content: "\f169"; +} +.fa-youtube-play:before { + content: "\f16a"; +} +.fa-dropbox:before { + content: "\f16b"; +} +.fa-stack-overflow:before { + content: "\f16c"; +} +.fa-instagram:before { + content: "\f16d"; +} +.fa-flickr:before { + content: "\f16e"; +} +.fa-adn:before { + content: "\f170"; +} +.fa-bitbucket:before { + content: "\f171"; +} +.fa-bitbucket-square:before { + content: "\f172"; +} +.fa-tumblr:before { + content: "\f173"; +} +.fa-tumblr-square:before { + content: "\f174"; +} +.fa-long-arrow-down:before { + content: "\f175"; +} +.fa-long-arrow-up:before { + content: "\f176"; +} +.fa-long-arrow-left:before { + content: "\f177"; +} +.fa-long-arrow-right:before { + content: "\f178"; +} +.fa-apple:before { + content: "\f179"; +} +.fa-windows:before { + content: "\f17a"; +} +.fa-android:before { + content: "\f17b"; +} +.fa-linux:before { + content: "\f17c"; +} +.fa-dribbble:before { + content: "\f17d"; +} +.fa-skype:before { + content: "\f17e"; +} +.fa-foursquare:before { + content: "\f180"; +} +.fa-trello:before { + content: "\f181"; +} +.fa-female:before { + content: "\f182"; +} +.fa-male:before { + content: "\f183"; +} +.fa-gittip:before { + content: "\f184"; +} +.fa-sun-o:before { + content: "\f185"; +} +.fa-moon-o:before { + content: "\f186"; +} +.fa-archive:before { + content: "\f187"; +} +.fa-bug:before { + content: "\f188"; +} +.fa-vk:before { + content: "\f189"; +} +.fa-weibo:before { + content: "\f18a"; +} +.fa-renren:before { + content: "\f18b"; +} +.fa-pagelines:before { + content: "\f18c"; +} +.fa-stack-exchange:before { + content: "\f18d"; +} +.fa-arrow-circle-o-right:before { + content: "\f18e"; +} +.fa-arrow-circle-o-left:before { + content: "\f190"; +} +.fa-toggle-left:before, +.fa-caret-square-o-left:before { + content: "\f191"; +} +.fa-dot-circle-o:before { + content: "\f192"; +} +.fa-wheelchair:before { + content: "\f193"; +} +.fa-vimeo-square:before { + content: "\f194"; +} +.fa-turkish-lira:before, +.fa-try:before { + content: "\f195"; +} +.fa-plus-square-o:before { + content: "\f196"; +} diff --git a/pelican-bootstrap3/static/css/font-awesome.min.css b/pelican-bootstrap3/static/css/font-awesome.min.css index e5fcc95..449d6ac 100644 --- a/pelican-bootstrap3/static/css/font-awesome.min.css +++ b/pelican-bootstrap3/static/css/font-awesome.min.css @@ -1,403 +1,4 @@ -@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=3.2.1');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff?v=3.2.1') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=3.2.1') format('truetype'),url('../fonts/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg');font-weight:normal;font-style:normal;}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;} -[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none;} -.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em;} -a [class^="icon-"],a [class*=" icon-"]{display:inline;} -[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.1428571428571428em;text-align:right;padding-right:0.2857142857142857em;}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.4285714285714286em;} -.icons-ul{margin-left:2.142857142857143em;list-style-type:none;}.icons-ul>li{position:relative;} -.icons-ul .icon-li{position:absolute;left:-2.142857142857143em;width:2.142857142857143em;text-align:center;line-height:inherit;} -[class^="icon-"].hide,[class*=" icon-"].hide{display:none;} -.icon-muted{color:#eeeeee;} -.icon-light{color:#ffffff;} -.icon-dark{color:#333333;} -.icon-border{border:solid 1px #eeeeee;padding:.2em .25em .15em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} -.icon-2x{font-size:2em;}.icon-2x.icon-border{border-width:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} -.icon-3x{font-size:3em;}.icon-3x.icon-border{border-width:3px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} -.icon-4x{font-size:4em;}.icon-4x.icon-border{border-width:4px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} -.icon-5x{font-size:5em;}.icon-5x.icon-border{border-width:5px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px;} -.pull-right{float:right;} -.pull-left{float:left;} -[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em;} -[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em;} -[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0% 0%;background-repeat:repeat;margin-top:0;} -.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none;} -.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em;} -.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block;} -.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em;} -.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em;} -.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em;} -.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em;} -.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0;}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em;} -.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em;} -.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em;} -.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{line-height:inherit;} -.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%;}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em;} -.icon-stack .icon-stack-base{font-size:2em;*line-height:1em;} -.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear;} -a .icon-stack,a .icon-spin{display:inline-block;text-decoration:none;} -@-moz-keyframes spin{0%{-moz-transform:rotate(0deg);} 100%{-moz-transform:rotate(359deg);}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);} 100%{-webkit-transform:rotate(359deg);}}@-o-keyframes spin{0%{-o-transform:rotate(0deg);} 100%{-o-transform:rotate(359deg);}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg);} 100%{-ms-transform:rotate(359deg);}}@keyframes spin{0%{transform:rotate(0deg);} 100%{transform:rotate(359deg);}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);} -.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);} -.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);} -.icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1);} -.icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1);} -a .icon-rotate-90:before,a .icon-rotate-180:before,a .icon-rotate-270:before,a .icon-flip-horizontal:before,a .icon-flip-vertical:before{display:inline-block;} -.icon-glass:before{content:"\f000";} -.icon-music:before{content:"\f001";} -.icon-search:before{content:"\f002";} -.icon-envelope-alt:before{content:"\f003";} -.icon-heart:before{content:"\f004";} -.icon-star:before{content:"\f005";} -.icon-star-empty:before{content:"\f006";} -.icon-user:before{content:"\f007";} -.icon-film:before{content:"\f008";} -.icon-th-large:before{content:"\f009";} -.icon-th:before{content:"\f00a";} -.icon-th-list:before{content:"\f00b";} -.icon-ok:before{content:"\f00c";} -.icon-remove:before{content:"\f00d";} -.icon-zoom-in:before{content:"\f00e";} -.icon-zoom-out:before{content:"\f010";} -.icon-power-off:before,.icon-off:before{content:"\f011";} -.icon-signal:before{content:"\f012";} -.icon-gear:before,.icon-cog:before{content:"\f013";} -.icon-trash:before{content:"\f014";} -.icon-home:before{content:"\f015";} -.icon-file-alt:before{content:"\f016";} -.icon-time:before{content:"\f017";} -.icon-road:before{content:"\f018";} -.icon-download-alt:before{content:"\f019";} -.icon-download:before{content:"\f01a";} -.icon-upload:before{content:"\f01b";} -.icon-inbox:before{content:"\f01c";} -.icon-play-circle:before{content:"\f01d";} -.icon-rotate-right:before,.icon-repeat:before{content:"\f01e";} -.icon-refresh:before{content:"\f021";} -.icon-list-alt:before{content:"\f022";} -.icon-lock:before{content:"\f023";} -.icon-flag:before{content:"\f024";} -.icon-headphones:before{content:"\f025";} -.icon-volume-off:before{content:"\f026";} -.icon-volume-down:before{content:"\f027";} -.icon-volume-up:before{content:"\f028";} -.icon-qrcode:before{content:"\f029";} -.icon-barcode:before{content:"\f02a";} -.icon-tag:before{content:"\f02b";} -.icon-tags:before{content:"\f02c";} -.icon-book:before{content:"\f02d";} -.icon-bookmark:before{content:"\f02e";} -.icon-print:before{content:"\f02f";} -.icon-camera:before{content:"\f030";} -.icon-font:before{content:"\f031";} -.icon-bold:before{content:"\f032";} -.icon-italic:before{content:"\f033";} -.icon-text-height:before{content:"\f034";} -.icon-text-width:before{content:"\f035";} -.icon-align-left:before{content:"\f036";} -.icon-align-center:before{content:"\f037";} -.icon-align-right:before{content:"\f038";} -.icon-align-justify:before{content:"\f039";} -.icon-list:before{content:"\f03a";} -.icon-indent-left:before{content:"\f03b";} -.icon-indent-right:before{content:"\f03c";} -.icon-facetime-video:before{content:"\f03d";} -.icon-picture:before{content:"\f03e";} -.icon-pencil:before{content:"\f040";} -.icon-map-marker:before{content:"\f041";} -.icon-adjust:before{content:"\f042";} -.icon-tint:before{content:"\f043";} -.icon-edit:before{content:"\f044";} -.icon-share:before{content:"\f045";} -.icon-check:before{content:"\f046";} -.icon-move:before{content:"\f047";} -.icon-step-backward:before{content:"\f048";} -.icon-fast-backward:before{content:"\f049";} -.icon-backward:before{content:"\f04a";} -.icon-play:before{content:"\f04b";} -.icon-pause:before{content:"\f04c";} -.icon-stop:before{content:"\f04d";} -.icon-forward:before{content:"\f04e";} -.icon-fast-forward:before{content:"\f050";} -.icon-step-forward:before{content:"\f051";} -.icon-eject:before{content:"\f052";} -.icon-chevron-left:before{content:"\f053";} -.icon-chevron-right:before{content:"\f054";} -.icon-plus-sign:before{content:"\f055";} -.icon-minus-sign:before{content:"\f056";} -.icon-remove-sign:before{content:"\f057";} -.icon-ok-sign:before{content:"\f058";} -.icon-question-sign:before{content:"\f059";} -.icon-info-sign:before{content:"\f05a";} -.icon-screenshot:before{content:"\f05b";} -.icon-remove-circle:before{content:"\f05c";} -.icon-ok-circle:before{content:"\f05d";} -.icon-ban-circle:before{content:"\f05e";} -.icon-arrow-left:before{content:"\f060";} -.icon-arrow-right:before{content:"\f061";} -.icon-arrow-up:before{content:"\f062";} -.icon-arrow-down:before{content:"\f063";} -.icon-mail-forward:before,.icon-share-alt:before{content:"\f064";} -.icon-resize-full:before{content:"\f065";} -.icon-resize-small:before{content:"\f066";} -.icon-plus:before{content:"\f067";} -.icon-minus:before{content:"\f068";} -.icon-asterisk:before{content:"\f069";} -.icon-exclamation-sign:before{content:"\f06a";} -.icon-gift:before{content:"\f06b";} -.icon-leaf:before{content:"\f06c";} -.icon-fire:before{content:"\f06d";} -.icon-eye-open:before{content:"\f06e";} -.icon-eye-close:before{content:"\f070";} -.icon-warning-sign:before{content:"\f071";} -.icon-plane:before{content:"\f072";} -.icon-calendar:before{content:"\f073";} -.icon-random:before{content:"\f074";} -.icon-comment:before{content:"\f075";} -.icon-magnet:before{content:"\f076";} -.icon-chevron-up:before{content:"\f077";} -.icon-chevron-down:before{content:"\f078";} -.icon-retweet:before{content:"\f079";} -.icon-shopping-cart:before{content:"\f07a";} -.icon-folder-close:before{content:"\f07b";} -.icon-folder-open:before{content:"\f07c";} -.icon-resize-vertical:before{content:"\f07d";} -.icon-resize-horizontal:before{content:"\f07e";} -.icon-bar-chart:before{content:"\f080";} -.icon-twitter-sign:before{content:"\f081";} -.icon-facebook-sign:before{content:"\f082";} -.icon-camera-retro:before{content:"\f083";} -.icon-key:before{content:"\f084";} -.icon-gears:before,.icon-cogs:before{content:"\f085";} -.icon-comments:before{content:"\f086";} -.icon-thumbs-up-alt:before{content:"\f087";} -.icon-thumbs-down-alt:before{content:"\f088";} -.icon-star-half:before{content:"\f089";} -.icon-heart-empty:before{content:"\f08a";} -.icon-signout:before{content:"\f08b";} -.icon-linkedin-sign:before{content:"\f08c";} -.icon-pushpin:before{content:"\f08d";} -.icon-external-link:before{content:"\f08e";} -.icon-signin:before{content:"\f090";} -.icon-trophy:before{content:"\f091";} -.icon-github-sign:before{content:"\f092";} -.icon-upload-alt:before{content:"\f093";} -.icon-lemon:before{content:"\f094";} -.icon-phone:before{content:"\f095";} -.icon-unchecked:before,.icon-check-empty:before{content:"\f096";} -.icon-bookmark-empty:before{content:"\f097";} -.icon-phone-sign:before{content:"\f098";} -.icon-twitter:before{content:"\f099";} -.icon-facebook:before{content:"\f09a";} -.icon-github:before{content:"\f09b";} -.icon-unlock:before{content:"\f09c";} -.icon-credit-card:before{content:"\f09d";} -.icon-rss:before{content:"\f09e";} -.icon-hdd:before{content:"\f0a0";} -.icon-bullhorn:before{content:"\f0a1";} -.icon-bell:before{content:"\f0a2";} -.icon-certificate:before{content:"\f0a3";} -.icon-hand-right:before{content:"\f0a4";} -.icon-hand-left:before{content:"\f0a5";} -.icon-hand-up:before{content:"\f0a6";} -.icon-hand-down:before{content:"\f0a7";} -.icon-circle-arrow-left:before{content:"\f0a8";} -.icon-circle-arrow-right:before{content:"\f0a9";} -.icon-circle-arrow-up:before{content:"\f0aa";} -.icon-circle-arrow-down:before{content:"\f0ab";} -.icon-globe:before{content:"\f0ac";} -.icon-wrench:before{content:"\f0ad";} -.icon-tasks:before{content:"\f0ae";} -.icon-filter:before{content:"\f0b0";} -.icon-briefcase:before{content:"\f0b1";} -.icon-fullscreen:before{content:"\f0b2";} -.icon-group:before{content:"\f0c0";} -.icon-link:before{content:"\f0c1";} -.icon-cloud:before{content:"\f0c2";} -.icon-beaker:before{content:"\f0c3";} -.icon-cut:before{content:"\f0c4";} -.icon-copy:before{content:"\f0c5";} -.icon-paperclip:before,.icon-paper-clip:before{content:"\f0c6";} -.icon-save:before{content:"\f0c7";} -.icon-sign-blank:before{content:"\f0c8";} -.icon-reorder:before{content:"\f0c9";} -.icon-list-ul:before{content:"\f0ca";} -.icon-list-ol:before{content:"\f0cb";} -.icon-strikethrough:before{content:"\f0cc";} -.icon-underline:before{content:"\f0cd";} -.icon-table:before{content:"\f0ce";} -.icon-magic:before{content:"\f0d0";} -.icon-truck:before{content:"\f0d1";} -.icon-pinterest:before{content:"\f0d2";} -.icon-pinterest-sign:before{content:"\f0d3";} -.icon-google-plus-sign:before{content:"\f0d4";} -.icon-google-plus:before{content:"\f0d5";} -.icon-money:before{content:"\f0d6";} -.icon-caret-down:before{content:"\f0d7";} -.icon-caret-up:before{content:"\f0d8";} -.icon-caret-left:before{content:"\f0d9";} -.icon-caret-right:before{content:"\f0da";} -.icon-columns:before{content:"\f0db";} -.icon-sort:before{content:"\f0dc";} -.icon-sort-down:before{content:"\f0dd";} -.icon-sort-up:before{content:"\f0de";} -.icon-envelope:before{content:"\f0e0";} -.icon-linkedin:before{content:"\f0e1";} -.icon-rotate-left:before,.icon-undo:before{content:"\f0e2";} -.icon-legal:before{content:"\f0e3";} -.icon-dashboard:before{content:"\f0e4";} -.icon-comment-alt:before{content:"\f0e5";} -.icon-comments-alt:before{content:"\f0e6";} -.icon-bolt:before{content:"\f0e7";} -.icon-sitemap:before{content:"\f0e8";} -.icon-umbrella:before{content:"\f0e9";} -.icon-paste:before{content:"\f0ea";} -.icon-lightbulb:before{content:"\f0eb";} -.icon-exchange:before{content:"\f0ec";} -.icon-cloud-download:before{content:"\f0ed";} -.icon-cloud-upload:before{content:"\f0ee";} -.icon-user-md:before{content:"\f0f0";} -.icon-stethoscope:before{content:"\f0f1";} -.icon-suitcase:before{content:"\f0f2";} -.icon-bell-alt:before{content:"\f0f3";} -.icon-coffee:before{content:"\f0f4";} -.icon-food:before{content:"\f0f5";} -.icon-file-text-alt:before{content:"\f0f6";} -.icon-building:before{content:"\f0f7";} -.icon-hospital:before{content:"\f0f8";} -.icon-ambulance:before{content:"\f0f9";} -.icon-medkit:before{content:"\f0fa";} -.icon-fighter-jet:before{content:"\f0fb";} -.icon-beer:before{content:"\f0fc";} -.icon-h-sign:before{content:"\f0fd";} -.icon-plus-sign-alt:before{content:"\f0fe";} -.icon-double-angle-left:before{content:"\f100";} -.icon-double-angle-right:before{content:"\f101";} -.icon-double-angle-up:before{content:"\f102";} -.icon-double-angle-down:before{content:"\f103";} -.icon-angle-left:before{content:"\f104";} -.icon-angle-right:before{content:"\f105";} -.icon-angle-up:before{content:"\f106";} -.icon-angle-down:before{content:"\f107";} -.icon-desktop:before{content:"\f108";} -.icon-laptop:before{content:"\f109";} -.icon-tablet:before{content:"\f10a";} -.icon-mobile-phone:before{content:"\f10b";} -.icon-circle-blank:before{content:"\f10c";} -.icon-quote-left:before{content:"\f10d";} -.icon-quote-right:before{content:"\f10e";} -.icon-spinner:before{content:"\f110";} -.icon-circle:before{content:"\f111";} -.icon-mail-reply:before,.icon-reply:before{content:"\f112";} -.icon-github-alt:before{content:"\f113";} -.icon-folder-close-alt:before{content:"\f114";} -.icon-folder-open-alt:before{content:"\f115";} -.icon-expand-alt:before{content:"\f116";} -.icon-collapse-alt:before{content:"\f117";} -.icon-smile:before{content:"\f118";} -.icon-frown:before{content:"\f119";} -.icon-meh:before{content:"\f11a";} -.icon-gamepad:before{content:"\f11b";} -.icon-keyboard:before{content:"\f11c";} -.icon-flag-alt:before{content:"\f11d";} -.icon-flag-checkered:before{content:"\f11e";} -.icon-terminal:before{content:"\f120";} -.icon-code:before{content:"\f121";} -.icon-reply-all:before{content:"\f122";} -.icon-mail-reply-all:before{content:"\f122";} -.icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123";} -.icon-location-arrow:before{content:"\f124";} -.icon-crop:before{content:"\f125";} -.icon-code-fork:before{content:"\f126";} -.icon-unlink:before{content:"\f127";} -.icon-question:before{content:"\f128";} -.icon-info:before{content:"\f129";} -.icon-exclamation:before{content:"\f12a";} -.icon-superscript:before{content:"\f12b";} -.icon-subscript:before{content:"\f12c";} -.icon-eraser:before{content:"\f12d";} -.icon-puzzle-piece:before{content:"\f12e";} -.icon-microphone:before{content:"\f130";} -.icon-microphone-off:before{content:"\f131";} -.icon-shield:before{content:"\f132";} -.icon-calendar-empty:before{content:"\f133";} -.icon-fire-extinguisher:before{content:"\f134";} -.icon-rocket:before{content:"\f135";} -.icon-maxcdn:before{content:"\f136";} -.icon-chevron-sign-left:before{content:"\f137";} -.icon-chevron-sign-right:before{content:"\f138";} -.icon-chevron-sign-up:before{content:"\f139";} -.icon-chevron-sign-down:before{content:"\f13a";} -.icon-html5:before{content:"\f13b";} -.icon-css3:before{content:"\f13c";} -.icon-anchor:before{content:"\f13d";} -.icon-unlock-alt:before{content:"\f13e";} -.icon-bullseye:before{content:"\f140";} -.icon-ellipsis-horizontal:before{content:"\f141";} -.icon-ellipsis-vertical:before{content:"\f142";} -.icon-rss-sign:before{content:"\f143";} -.icon-play-sign:before{content:"\f144";} -.icon-ticket:before{content:"\f145";} -.icon-minus-sign-alt:before{content:"\f146";} -.icon-check-minus:before{content:"\f147";} -.icon-level-up:before{content:"\f148";} -.icon-level-down:before{content:"\f149";} -.icon-check-sign:before{content:"\f14a";} -.icon-edit-sign:before{content:"\f14b";} -.icon-external-link-sign:before{content:"\f14c";} -.icon-share-sign:before{content:"\f14d";} -.icon-compass:before{content:"\f14e";} -.icon-collapse:before{content:"\f150";} -.icon-collapse-top:before{content:"\f151";} -.icon-expand:before{content:"\f152";} -.icon-euro:before,.icon-eur:before{content:"\f153";} -.icon-gbp:before{content:"\f154";} -.icon-dollar:before,.icon-usd:before{content:"\f155";} -.icon-rupee:before,.icon-inr:before{content:"\f156";} -.icon-yen:before,.icon-jpy:before{content:"\f157";} -.icon-renminbi:before,.icon-cny:before{content:"\f158";} -.icon-won:before,.icon-krw:before{content:"\f159";} -.icon-bitcoin:before,.icon-btc:before{content:"\f15a";} -.icon-file:before{content:"\f15b";} -.icon-file-text:before{content:"\f15c";} -.icon-sort-by-alphabet:before{content:"\f15d";} -.icon-sort-by-alphabet-alt:before{content:"\f15e";} -.icon-sort-by-attributes:before{content:"\f160";} -.icon-sort-by-attributes-alt:before{content:"\f161";} -.icon-sort-by-order:before{content:"\f162";} -.icon-sort-by-order-alt:before{content:"\f163";} -.icon-thumbs-up:before{content:"\f164";} -.icon-thumbs-down:before{content:"\f165";} -.icon-youtube-sign:before{content:"\f166";} -.icon-youtube:before{content:"\f167";} -.icon-xing:before{content:"\f168";} -.icon-xing-sign:before{content:"\f169";} -.icon-youtube-play:before{content:"\f16a";} -.icon-dropbox:before{content:"\f16b";} -.icon-stackexchange:before{content:"\f16c";} -.icon-instagram:before{content:"\f16d";} -.icon-flickr:before{content:"\f16e";} -.icon-adn:before{content:"\f170";} -.icon-bitbucket:before{content:"\f171";} -.icon-bitbucket-sign:before{content:"\f172";} -.icon-tumblr:before{content:"\f173";} -.icon-tumblr-sign:before{content:"\f174";} -.icon-long-arrow-down:before{content:"\f175";} -.icon-long-arrow-up:before{content:"\f176";} -.icon-long-arrow-left:before{content:"\f177";} -.icon-long-arrow-right:before{content:"\f178";} -.icon-apple:before{content:"\f179";} -.icon-windows:before{content:"\f17a";} -.icon-android:before{content:"\f17b";} -.icon-linux:before{content:"\f17c";} -.icon-dribbble:before{content:"\f17d";} -.icon-skype:before{content:"\f17e";} -.icon-foursquare:before{content:"\f180";} -.icon-trello:before{content:"\f181";} -.icon-female:before{content:"\f182";} -.icon-male:before{content:"\f183";} -.icon-gittip:before{content:"\f184";} -.icon-sun:before{content:"\f185";} -.icon-moon:before{content:"\f186";} -.icon-archive:before{content:"\f187";} -.icon-bug:before{content:"\f188";} -.icon-vk:before{content:"\f189";} -.icon-weibo:before{content:"\f18a";} -.icon-renren:before{content:"\f18b";} +/*! + * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.0.3');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff?v=4.0.3') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.0.3') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.3333333333333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.2857142857142858em;text-align:center}.fa-ul{padding-left:0;margin-left:2.142857142857143em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.142857142857143em;width:2.142857142857143em;top:.14285714285714285em;text-align:center}.fa-li.fa-lg{left:-1.8571428571428572em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)}100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1);-webkit-transform:scale(-1,1);-moz-transform:scale(-1,1);-ms-transform:scale(-1,1);-o-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2,mirror=1);-webkit-transform:scale(1,-1);-moz-transform:scale(1,-1);-ms-transform:scale(1,-1);-o-transform:scale(1,-1);transform:scale(1,-1)}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-asc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-desc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-reply-all:before{content:"\f122"}.fa-mail-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}
\ No newline at end of file diff --git a/pelican-bootstrap3/static/css/pygments.css b/pelican-bootstrap3/static/css/pygments.css deleted file mode 100644 index bffc5c9..0000000 --- a/pelican-bootstrap3/static/css/pygments.css +++ /dev/null @@ -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 */ diff --git a/pelican-bootstrap3/static/css/pygments/autumn.css b/pelican-bootstrap3/static/css/pygments/autumn.css new file mode 100644 index 0000000..4709a01 --- /dev/null +++ b/pelican-bootstrap3/static/css/pygments/autumn.css @@ -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 */ diff --git a/pelican-bootstrap3/static/css/pygments/borland.css b/pelican-bootstrap3/static/css/pygments/borland.css new file mode 100644 index 0000000..557adf9 --- /dev/null +++ b/pelican-bootstrap3/static/css/pygments/borland.css @@ -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 */ diff --git a/pelican-bootstrap3/static/css/pygments/bw.css b/pelican-bootstrap3/static/css/pygments/bw.css new file mode 100644 index 0000000..38b3b2b --- /dev/null +++ b/pelican-bootstrap3/static/css/pygments/bw.css @@ -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 */ diff --git a/pelican-bootstrap3/static/css/pygments/colorful.css b/pelican-bootstrap3/static/css/pygments/colorful.css new file mode 100644 index 0000000..8c5ca10 --- /dev/null +++ b/pelican-bootstrap3/static/css/pygments/colorful.css @@ -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 */ diff --git a/pelican-bootstrap3/static/css/pygments/default.css b/pelican-bootstrap3/static/css/pygments/default.css new file mode 100644 index 0000000..6a340c7 --- /dev/null +++ b/pelican-bootstrap3/static/css/pygments/default.css @@ -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 */ diff --git a/pelican-bootstrap3/static/css/pygments/emacs.css b/pelican-bootstrap3/static/css/pygments/emacs.css new file mode 100644 index 0000000..8a974f2 --- /dev/null +++ b/pelican-bootstrap3/static/css/pygments/emacs.css @@ -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 */ diff --git a/pelican-bootstrap3/static/css/pygments/friendly.css b/pelican-bootstrap3/static/css/pygments/friendly.css new file mode 100644 index 0000000..3f52d3d --- /dev/null +++ b/pelican-bootstrap3/static/css/pygments/friendly.css @@ -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 */ diff --git a/pelican-bootstrap3/static/css/pygments/fruity.css b/pelican-bootstrap3/static/css/pygments/fruity.css new file mode 100644 index 0000000..ec1fc42 --- /dev/null +++ b/pelican-bootstrap3/static/css/pygments/fruity.css @@ -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 */ diff --git a/pelican-bootstrap3/static/css/pygments/manni.css b/pelican-bootstrap3/static/css/pygments/manni.css new file mode 100644 index 0000000..a5dbc2a --- /dev/null +++ b/pelican-bootstrap3/static/css/pygments/manni.css @@ -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 */ diff --git a/pelican-bootstrap3/static/css/pygments/monokai.css b/pelican-bootstrap3/static/css/pygments/monokai.css new file mode 100644 index 0000000..0db9cea --- /dev/null +++ b/pelican-bootstrap3/static/css/pygments/monokai.css @@ -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 */ diff --git a/pelican-bootstrap3/static/css/pygments/murphy.css b/pelican-bootstrap3/static/css/pygments/murphy.css new file mode 100644 index 0000000..085431a --- /dev/null +++ b/pelican-bootstrap3/static/css/pygments/murphy.css @@ -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 */ diff --git a/pelican-bootstrap3/static/css/pygments/native.css b/pelican-bootstrap3/static/css/pygments/native.css new file mode 100644 index 0000000..087f4a4 --- /dev/null +++ b/pelican-bootstrap3/static/css/pygments/native.css @@ -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 */ diff --git a/pelican-bootstrap3/static/css/pygments/pastie.css b/pelican-bootstrap3/static/css/pygments/pastie.css new file mode 100644 index 0000000..e26a684 --- /dev/null +++ b/pelican-bootstrap3/static/css/pygments/pastie.css @@ -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 */ diff --git a/pelican-bootstrap3/static/css/pygments/perldoc.css b/pelican-bootstrap3/static/css/pygments/perldoc.css new file mode 100644 index 0000000..1121f73 --- /dev/null +++ b/pelican-bootstrap3/static/css/pygments/perldoc.css @@ -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 */ diff --git a/pelican-bootstrap3/static/css/pygments/solarizeddark.css b/pelican-bootstrap3/static/css/pygments/solarizeddark.css new file mode 100644 index 0000000..27e281f --- /dev/null +++ b/pelican-bootstrap3/static/css/pygments/solarizeddark.css @@ -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 */ diff --git a/pelican-bootstrap3/static/css/pygments/solarizedlight.css b/pelican-bootstrap3/static/css/pygments/solarizedlight.css new file mode 100644 index 0000000..9c0dc8e --- /dev/null +++ b/pelican-bootstrap3/static/css/pygments/solarizedlight.css @@ -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 */ diff --git a/pelican-bootstrap3/static/css/pygments/tango.css b/pelican-bootstrap3/static/css/pygments/tango.css new file mode 100644 index 0000000..a939077 --- /dev/null +++ b/pelican-bootstrap3/static/css/pygments/tango.css @@ -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 */ diff --git a/pelican-bootstrap3/static/css/pygments/trac.css b/pelican-bootstrap3/static/css/pygments/trac.css new file mode 100644 index 0000000..7f8d24d --- /dev/null +++ b/pelican-bootstrap3/static/css/pygments/trac.css @@ -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 */ diff --git a/pelican-bootstrap3/static/css/pygments/vim.css b/pelican-bootstrap3/static/css/pygments/vim.css new file mode 100644 index 0000000..7c8c17e --- /dev/null +++ b/pelican-bootstrap3/static/css/pygments/vim.css @@ -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 */ diff --git a/pelican-bootstrap3/static/css/pygments/vs.css b/pelican-bootstrap3/static/css/pygments/vs.css new file mode 100644 index 0000000..7a34130 --- /dev/null +++ b/pelican-bootstrap3/static/css/pygments/vs.css @@ -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 */ diff --git a/pelican-bootstrap3/static/css/style.css b/pelican-bootstrap3/static/css/style.css index 3a3eb99..9aeeb17 100644 --- a/pelican-bootstrap3/static/css/style.css +++ b/pelican-bootstrap3/static/css/style.css @@ -6,6 +6,18 @@ body { 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 { border: none; } @@ -28,14 +40,27 @@ body { #sidebar { 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 { color: inherit; } -i { - margin-right: 10px; +.icon-label { + 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 { @@ -57,9 +82,49 @@ a, a:hover { height: auto; } -.highlight pre { - background-color: #202020; - color: #777; +.entry-content figcaption, .caption { + font-size: small; + 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 { @@ -77,4 +142,11 @@ a, a:hover { text-align: inherit; white-space: inherit; border-radius: inherit; -}
\ No newline at end of file +} + +.categories-timestamp { + color: #AAAAAA; + font-size: 0.9em; + margin-right: 10px; +} + diff --git a/pelican-bootstrap3/static/fonts/FontAwesome.otf b/pelican-bootstrap3/static/fonts/FontAwesome.otf Binary files differindex 7012545..8b0f54e 100644 --- a/pelican-bootstrap3/static/fonts/FontAwesome.otf +++ b/pelican-bootstrap3/static/fonts/FontAwesome.otf diff --git a/pelican-bootstrap3/static/fonts/fontawesome-webfont.eot b/pelican-bootstrap3/static/fonts/fontawesome-webfont.eot Binary files differindex 0662cb9..7c79c6a 100755 --- a/pelican-bootstrap3/static/fonts/fontawesome-webfont.eot +++ b/pelican-bootstrap3/static/fonts/fontawesome-webfont.eot diff --git a/pelican-bootstrap3/static/fonts/fontawesome-webfont.svg b/pelican-bootstrap3/static/fonts/fontawesome-webfont.svg index d071a43..45fdf33 100755 --- a/pelican-bootstrap3/static/fonts/fontawesome-webfont.svg +++ b/pelican-bootstrap3/static/fonts/fontawesome-webfont.svg @@ -280,8 +280,8 @@ <glyph unicode="" 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="" 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="" 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="" 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="" 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="" horiz-adv-x="1792" /> +<glyph unicode="" horiz-adv-x="1792" /> <glyph unicode="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" horiz-adv-x="1792" /> -<glyph unicode="" horiz-adv-x="1792" /> -<glyph unicode="" horiz-adv-x="1792" /> +<glyph unicode="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" 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="" horiz-adv-x="1792" /> +<glyph unicode="" horiz-adv-x="1792" /> +<glyph unicode="" horiz-adv-x="1792" /> +<glyph unicode="" horiz-adv-x="1792" /> +<glyph unicode="" horiz-adv-x="1792" /> +<glyph unicode="" horiz-adv-x="1792" /> +<glyph unicode="" horiz-adv-x="1792" /> +<glyph unicode="" horiz-adv-x="1792" /> <glyph unicode="" horiz-adv-x="1792" /> </font> -</defs></svg>
\ No newline at end of file +</defs></svg>
\ No newline at end of file diff --git a/pelican-bootstrap3/static/fonts/fontawesome-webfont.ttf b/pelican-bootstrap3/static/fonts/fontawesome-webfont.ttf Binary files differindex d365924..e89738d 100755 --- a/pelican-bootstrap3/static/fonts/fontawesome-webfont.ttf +++ b/pelican-bootstrap3/static/fonts/fontawesome-webfont.ttf diff --git a/pelican-bootstrap3/static/fonts/fontawesome-webfont.woff b/pelican-bootstrap3/static/fonts/fontawesome-webfont.woff Binary files differindex b9bd17e..8c1748a 100755 --- a/pelican-bootstrap3/static/fonts/fontawesome-webfont.woff +++ b/pelican-bootstrap3/static/fonts/fontawesome-webfont.woff diff --git a/pelican-bootstrap3/static/js/github.js b/pelican-bootstrap3/static/js/github.js index 7bdb6a4..ae6a3b6 100644 --- a/pelican-bootstrap3/static/js/github.js +++ b/pelican-bootstrap3/static/js/github.js @@ -4,10 +4,12 @@ var github = (function(){ } function render(target, repos){ var i = 0, fragment = '', t = $(target)[0]; + fragment += '<ul class="list-group" id="github">'; 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 += '</ul>'; t.innerHTML = fragment; } return { diff --git a/pelican-bootstrap3/templates/archives.html b/pelican-bootstrap3/templates/archives.html index 927dde0..abfe51f 100644 --- a/pelican-bootstrap3/templates/archives.html +++ b/pelican-bootstrap3/templates/archives.html @@ -1,4 +1,14 @@ {% 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 %} <section id="content"> <h1>Archives for {{ SITENAME }}</h1> diff --git a/pelican-bootstrap3/templates/article.html b/pelican-bootstrap3/templates/article.html index 5b35765..e1f7f00 100644 --- a/pelican-bootstrap3/templates/article.html +++ b/pelican-bootstrap3/templates/article.html @@ -1,5 +1,23 @@ {% 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 %} <section id="content"> <article> @@ -21,6 +39,7 @@ {{ article.content }} </div> <!-- /.entry-content --> + {% include 'includes/related-posts.html' %} {% include 'includes/addthis.html' %} {% include 'includes/comments.html' %} </article> diff --git a/pelican-bootstrap3/templates/base.html b/pelican-bootstrap3/templates/base.html index 580db39..9be2ecb 100644 --- a/pelican-bootstrap3/templates/base.html +++ b/pelican-bootstrap3/templates/base.html @@ -8,13 +8,17 @@ <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> + + {% if FAVICON %} + <link href="{{ SITEURL }}/{{ FAVICON }}" rel="icon"> + {% endif %} - <!-- Open Graph tags --> + {# Open Graph tags #} {% if USE_OPEN_GRAPH is not defined %} {% set USE_OPEN_GRAPH = True %} {% endif %} - {% if USE_OPEN_GRAPH %} + <!-- Open Graph tags --> {% if OPEN_GRAPH_FB_APP_ID %} <meta property="fb:app_id" content="{{ OPEN_GRAPH_FB_APP_ID }}"/> {% endif %} @@ -35,10 +39,10 @@ {% if OPEN_GRAPH_IMAGE %} <meta property="og:image" content="{{ SITEURL }}/static/{{ OPEN_GRAPH_IMAGE }}"/> + {% endif %} {% endif %} - {% endif %} - {% endif %} + <!-- Bootstrap --> {% if BOOTSTRAP_THEME %} <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"/> {% endif %} <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 %} <link href="{{ SITEURL }}/theme/css/html4css1.css" rel="stylesheet"> {% endif %} @@ -54,8 +59,9 @@ <link href="{{ SITEURL }}/theme/css/typogrify.css" rel="stylesheet"> {% endif %} <link rel="stylesheet" href="{{ SITEURL }}/theme/css/style.css" type="text/css"/> - <!-- JavaScript plugins (requires jQuery) --> - <script src="http://code.jquery.com/jquery.js"></script> + {% if CUSTOM_CSS %} + <link href="{{ SITEURL }}/{{ CUSTOM_CSS }}" rel="stylesheet"> + {% endif %} {% if FEED_ALL_ATOM %} <link href="{{ SITEURL }}/{{ FEED_ALL_ATOM }}" type="application/atom+xml" rel="alternate" @@ -66,10 +72,10 @@ title="{{ SITENAME }} RSS Feed"/> {% endif %} - {% include 'includes/ga.html' %} </head> <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="navbar-header"> <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> </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 class="collapse navbar-collapse navbar-ex1-collapse"> <ul class="nav navbar-nav"> @@ -101,53 +110,46 @@ {% endif %} </ul> <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> </div> <!-- /.navbar-collapse --> </div> -</nav> -<!-- /.navbar --> +</div> <!-- /.navbar --> + <div class="container"> <div class="row"> - <div class="col-lg-9"> - {% block content %} - {% endblock %} + {% if not HIDE_SIDEBAR %} + <div class="col-sm-9"> + {% else %} + <div class="col-lg-12"> + {% endif %} + {% block breadcrumbs %} + {% endblock %} + + {% block content %} + {% endblock %} </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' %} </div> + {% endif %} </div> </div> {% include 'includes/footer.html' %} +<script src="http://code.jquery.com/jquery.js"></script> + <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="{{ SITEURL }}/theme/js/bootstrap.min.js"></script> <!-- Enable responsive features in IE8 with Respond.js (https://github.com/scottjehl/Respond) --> <script src="{{ SITEURL }}/theme/js/respond.min.js"></script> -{% include 'includes/disqus_script.html' %} - -{% 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 %} +{% include 'includes/github-js.html' %} +{% include 'includes/disqus_script.html' %} +{% include 'includes/ga.html' %} +{% include 'includes/piwik.html' %} </body> </html> diff --git a/pelican-bootstrap3/templates/categories.html b/pelican-bootstrap3/templates/categories.html index fe3d6ac..6898f97 100644 --- a/pelican-bootstrap3/templates/categories.html +++ b/pelican-bootstrap3/templates/categories.html @@ -1,13 +1,36 @@ {% 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 %} <section id="categories"> - <h1>Categories for {{ SITENAME }}</h1> - <ul> + <h1>All Categories for {{ SITENAME }}</h1> + <div class="panel-group" id="accordion"> {% 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 %} - </ul> + </div> + </section> {% endblock %} diff --git a/pelican-bootstrap3/templates/category.html b/pelican-bootstrap3/templates/category.html index 56f8e93..9cfa5ad 100644 --- a/pelican-bootstrap3/templates/category.html +++ b/pelican-bootstrap3/templates/category.html @@ -1,2 +1,11 @@ {% 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 %} diff --git a/pelican-bootstrap3/templates/includes/article_info.html b/pelican-bootstrap3/templates/includes/article_info.html index 6610aa2..abbf807 100644 --- a/pelican-bootstrap3/templates/includes/article_info.html +++ b/pelican-bootstrap3/templates/includes/article_info.html @@ -1,12 +1,12 @@ <footer class="post-info"> <span class="label label-default">Date</span> <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> {# Uncomment if you want the author shown #} {#{% if article.author %}#} {#<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 %}#} {# Uncomment if you want to show Categories#} @@ -20,5 +20,6 @@ {% endif %} {% include 'includes/taglist.html' %} - {% include 'includes/translations.html' %} + {% import 'includes/translations.html' as translations with context %} + {{ translations.translations_for(article) }} </footer><!-- /.post-info --> diff --git a/pelican-bootstrap3/templates/includes/cc-license.html b/pelican-bootstrap3/templates/includes/cc-license.html new file mode 100644 index 0000000..5c44993 --- /dev/null +++ b/pelican-bootstrap3/templates/includes/cc-license.html @@ -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 %} + "<span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">{{ attr_props['title'] }}</span>" 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 %} diff --git a/pelican-bootstrap3/templates/includes/comment_count.html b/pelican-bootstrap3/templates/includes/comment_count.html index 7ebaf20..151c501 100644 --- a/pelican-bootstrap3/templates/includes/comment_count.html +++ b/pelican-bootstrap3/templates/includes/comment_count.html @@ -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 %}
\ No newline at end of file +{% 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 %}
\ No newline at end of file diff --git a/pelican-bootstrap3/templates/includes/comments.html b/pelican-bootstrap3/templates/includes/comments.html index b16517b..94deef4 100644 --- a/pelican-bootstrap3/templates/includes/comments.html +++ b/pelican-bootstrap3/templates/includes/comments.html @@ -6,8 +6,13 @@ <script type="text/javascript"> /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */ 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_config = function () { + this.language = "{{ DEFAULT_LANG }}"; + }; /* * * DON'T EDIT BELOW THIS LINE * * */ (function () { @@ -23,4 +28,4 @@ <a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a> </section> -{% endif %}
\ No newline at end of file +{% endif %} diff --git a/pelican-bootstrap3/templates/includes/footer.html b/pelican-bootstrap3/templates/includes/footer.html index 7e2cf39..7b430cd 100644 --- a/pelican-bootstrap3/templates/includes/footer.html +++ b/pelican-bootstrap3/templates/includes/footer.html @@ -1,16 +1,22 @@ <footer> - <div class="container"> - <hr> - <p class="pull-right"><i class="icon-arrow-up"></i> <a href="#">Back to top</a></p> - - {% if articles %} + <div class="container"> + <hr> + <div class="row"> + {% if articles %} {% set copy_date = articles[0].date.strftime('%Y') %} - {% else %} + {% else %} {% set copy_date = '' %} - {% endif %} - - <p>© {{ copy_date }} {{ AUTHOR }} · Powered by <a href="https://github.com/DandyDev/pelican-bootstrap3" target="_blank">pelican-bootstrap3</a>, + {% endif %} + <div class="col-xs-10">© {{ copy_date }} {{ AUTHOR }} + · 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://getbootstrap.com" target="_blank">Bootstrap</a></p> - </div> + <a href="http://getbootstrap.com" target="_blank">Bootstrap</a> + {%- 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>
\ No newline at end of file diff --git a/pelican-bootstrap3/templates/includes/github-js.html b/pelican-bootstrap3/templates/includes/github-js.html new file mode 100644 index 0000000..f1b321f --- /dev/null +++ b/pelican-bootstrap3/templates/includes/github-js.html @@ -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 %}
\ No newline at end of file diff --git a/pelican-bootstrap3/templates/includes/github.html b/pelican-bootstrap3/templates/includes/github.html index 1d1e7f2..00ea0f3 100644 --- a/pelican-bootstrap3/templates/includes/github.html +++ b/pelican-bootstrap3/templates/includes/github.html @@ -1,46 +1,11 @@ {% 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 %} - - <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> + <li class="list-group-item"><h4><i class="fa fa-github fa-lg"></i><span class="icon-label">GitHub Repos</span></h4> <div id="gh_repos"> <p class="list-group-item">Status updating...</p> </div> {% if GITHUB_SHOW_USER_LINK is defined %} <a href="https://github.com/{{ GITHUB_USER }}">@{{ GITHUB_USER }}</a> on GitHub {% endif %} - </ul> - <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> + </li> {% endif %}
\ No newline at end of file diff --git a/pelican-bootstrap3/templates/includes/links.html b/pelican-bootstrap3/templates/includes/links.html new file mode 100644 index 0000000..3286b5a --- /dev/null +++ b/pelican-bootstrap3/templates/includes/links.html @@ -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 %}
\ No newline at end of file diff --git a/pelican-bootstrap3/templates/includes/piwik.html b/pelican-bootstrap3/templates/includes/piwik.html new file mode 100644 index 0000000..70c45c2 --- /dev/null +++ b/pelican-bootstrap3/templates/includes/piwik.html @@ -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 %}
\ No newline at end of file diff --git a/pelican-bootstrap3/templates/includes/related-posts.html b/pelican-bootstrap3/templates/includes/related-posts.html new file mode 100644 index 0000000..70a56f3 --- /dev/null +++ b/pelican-bootstrap3/templates/includes/related-posts.html @@ -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 %} diff --git a/pelican-bootstrap3/templates/includes/sidebar.html b/pelican-bootstrap3/templates/includes/sidebar.html index 9f712b4..ef0fc22 100644 --- a/pelican-bootstrap3/templates/includes/sidebar.html +++ b/pelican-bootstrap3/templates/includes/sidebar.html @@ -6,19 +6,23 @@ <section> <ul class="list-group list-group-flush"> {% if SOCIAL %} - <li class="list-group-item"><h4><i class="icon-home icon-large"></i>Social</h4></li> - {% for name, link in SOCIAL %} + <li class="list-group-item"><h4><i class="fa fa-home fa-lg"></i><span class="icon-label">Social</span></h4> + <ul class="list-group" id="social"> + {% for name, link in SOCIAL %} <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> - {% endfor %} + {% endfor %} + </ul> + </li> {% endif %} {% if DISPLAY_RECENT_POSTS_ON_SIDEBAR %} {% if RECENT_POST_COUNT is not defined %} {% set RECENT_POST_COUNT = 5 %} {% 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] %} <li class="list-group-item"> <a href="{{ SITEURL }}/{{ article.url }}"> @@ -26,31 +30,40 @@ </a> </li> {% endfor %} + </ul> + </li> {% endif %} {% if DISPLAY_CATEGORIES_ON_SIDEBAR %} - - <li class="list-group-item"><h4><i class="icon-home icon-large"></i>Categories</h4></li> + <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> + <ul class="list-group" id="categories"> {% for cat, null in categories %} <li class="list-group-item"> <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> </li> {% endfor %} + </li> {% endif %} {% 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') %} <li class="list-group-item tag-{{ tag.1 }}"> <a href="{{ SITEURL }}/{{ tag.0.url }}"> {{ tag.0 }} </a> </li> - {% endfor %} + {% endfor %} + </ul> + </li> {% endif %} + {% include 'includes/github.html' %} + {% include 'includes/links.html' %} + </ul> </section> - {% include 'includes/github.html' %} -</aside>
\ No newline at end of file + +</aside> diff --git a/pelican-bootstrap3/templates/includes/translations.html b/pelican-bootstrap3/templates/includes/translations.html index 65c5684..ea693df 100644 --- a/pelican-bootstrap3/templates/includes/translations.html +++ b/pelican-bootstrap3/templates/includes/translations.html @@ -1,6 +1,8 @@ +{% macro translations_for(article) %} {% if article.translations %} <span class="label label-default">Lang</span> {% for translation in article.translations %} <a href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a> {% endfor %} {% endif %} +{% endmacro %}
\ No newline at end of file diff --git a/pelican-bootstrap3/templates/index.html b/pelican-bootstrap3/templates/index.html index ec065e0..b38c0ee 100644 --- a/pelican-bootstrap3/templates/index.html +++ b/pelican-bootstrap3/templates/index.html @@ -5,8 +5,7 @@ <article> <h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2> <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> </div> </article> @@ -15,4 +14,4 @@ {% endif %} {% include 'includes/pagination.html' %} -{% endblock content %}
\ No newline at end of file +{% endblock content %} diff --git a/pelican-bootstrap3/templates/page.html b/pelican-bootstrap3/templates/page.html index a53f3db..179b2d7 100644 --- a/pelican-bootstrap3/templates/page.html +++ b/pelican-bootstrap3/templates/page.html @@ -1,8 +1,20 @@ {% 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 %} <section id="content" class="body"> <h1 class="entry-title">{{ page.title }}</h1> + {% import 'includes/translations.html' as translations with context %} + {{ translations.translations_for(page) }} {% if PDF_PROCESSOR %} <a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf"> get the pdf diff --git a/pelican-bootstrap3/templates/tag.html b/pelican-bootstrap3/templates/tag.html index 68cdcba..9895705 100644 --- a/pelican-bootstrap3/templates/tag.html +++ b/pelican-bootstrap3/templates/tag.html @@ -1,2 +1,11 @@ {% 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 %} diff --git a/pelican-bootstrap3/templates/tags.html b/pelican-bootstrap3/templates/tags.html index e2fe903..3f29a36 100644 --- a/pelican-bootstrap3/templates/tags.html +++ b/pelican-bootstrap3/templates/tags.html @@ -1,13 +1,37 @@ {% 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 %} <section id="tags"> <h1>Tags for {{ SITENAME }}</h1> - <ul> + <div class="panel-group" id="accordion"> {%- 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 %} - </ul> + </div> + </section> -{% endblock %}
\ No newline at end of file +{% endblock %} |