aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update to bootstrap-3.4.1James Addison2019-10-212-8/+8
|
* Merge pull request #641 from gfidente/svbhackurlJustin Mayer2019-09-082-1/+1
|\ | | | | Update svbhack with support for Pelican 4 and readtime plugin
| * Update svbhack with support for Pelican 4 and readtime pluginGiulio Fidente2019-08-222-1/+1
|/ | | | | Bumps up the svbhack submodule to include a version that works with Pelican 4 and supports the readtime plugin.
* Merge pull request #654 from talha131/elegant-update-3.0.0Justin Mayer2019-07-091-0/+0
|\ | | | | Elegant: Update to v3.0.0
| * elegant: update to V3.0.0Talha Mansoor2019-07-041-0/+0
|/
* Merge pull request #646 from kplaube/masterJustin Mayer2019-05-161-0/+0
|\ | | | | Update yapeme to 0.4.0
| * Update yapeme to 0.4.0Klaus Laube2019-05-161-0/+0
|/
* Merge pull request #643 from iranzo/elegant-to-masterJustin Mayer2019-04-162-0/+1
|\ | | | | pelican_elegant: Link submodule to master branch
| * Update .gitmodulesPablo Iranzo Gómez2019-04-161-1/+1
| |
| * Define master branch for elegantPablo Iranzo Gómez2019-04-162-1/+2
| |
* | Merge pull request #640 from baryluk/patch-1Justin Mayer2019-04-161-4/+3
|\ \ | | | | | | cebong: Removed unused font imports
| * | Removed unused imports for fonts in cebongWitold Baryluk2019-03-261-4/+3
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It just adds to network roundtrips. Browser will download them even if they are not used. At least the CSS files will be downloaded (and will actually block other processing!). In some case browser will also download actual font files, even if they are not used, but this will usually be done asynchronously or after page is finished loading. But most of the time it is just a waste of bandwidth (but they are cached for 1y and could be used on other websites). As a bonus I fixed some quotation issues of urls, because this is what I see in css documentation - https://developer.mozilla.org/en-US/docs/Web/CSS/@import Next improvement would be to move this `@url import` into separate `link` statement in `base.html`, this way things can proceed in parallel more smoothly. ```html <link rel="stylesheet" href="https://fonts.googleapis.com/css?subset=latin&family=Crimson+Text:400,400italic,600,600italic,700,700italic" type="text/css" importance="low" referrerpolicy="no-referrer" /> ``` After that, and margin all `css` files, this would be really clean and fast theme! :) PS. Google Fonts Service API allows fetching multiple css files together: ```html <link rel="stylesheet" href="https://fonts.googleapis.com/css?subset=latin&family=Yanone+Kaffeesatz|Crimson+Text:400,400italic,600,600italic,700,700italic|Droid+Sans+Mono" type="text/css" importance="low" referrerpolicy="no-referrer" /> ``` (and similarly using `@import url`).
* | Merge pull request #637 from PJUllrich/masterJustin Mayer2019-04-161-5/+5
|\ \ | | | | | | nmnlist: Fix "loop is undefined" issue
| * | Fix "loop is undefined" issue.Peter Ullrich2019-02-041-5/+5
| |/
* | Merge pull request #636 from Ninpo/fix-tipue-searchJustin Mayer2019-04-168-401/+697
|\ \ | |/ |/| pelican-bootstrap3: Fix tipue search/upgrade to Tipue 7.0
| * Upgrade jQuery to 3.3.1 as per Tipue 7.0 requirements.Alex Boag-Munroe2019-02-031-4/+2
| |
| * Upgrade Tipue to Tipue 7.0Alex Boag-Munroe2019-02-036-394/+693
| |
| * Fix search.html template for Tipue 7.0Alex Boag-Munroe2019-02-031-3/+2
|/
* Merge pull request #635 from askpatrickw/patch-2Justin Mayer2019-01-271-8/+8
|\ | | | | Gum: Update feeds to new 3.0+ syntax
| * Updated Feeds to new 3.0+ syntaxPatrick2019-01-221-8/+8
| | | | | | | | | | | | I could not generate a site with the category feeds on. This was fixed in the simple theme some time ago. Copied the code right from here: https://github.com/getpelican/pelican/pull/2515
* | Merge pull request #634 from clintmoyer/blue-penguinJustin Mayer2019-01-271-0/+0
|\ \ | |/ |/| Update blue-penguin to 311a520 for a pages bugfix
| * Update blue-penguin to 311a520 for a pages variable case changeClint Moyer2019-01-201-0/+0
| | | | | | | | Need to update blue-penguin to ensure compatibility with #485
* | Merge pull request #632 from askpatrickw/patch-1Justin Mayer2019-01-211-22/+20
|\ \ | | | | | | Gum: Honor conditional categories and pages
| * | Conditional Categories and Pages not honoredPatrick2019-01-171-22/+20
| |/ | | | | | | There were category links inside pages. There was a Pages H4 outside the conditional check for if pages should be shown.
* | Merge pull request #627 from iranzo/fixelegantlinkJustin Mayer2019-01-211-1/+1
|\ \ | | | | | | Update link to pelican-elegant repo
| * | Update link to pelican-elegant repoPablo Iranzo Gómez2018-12-291-1/+1
| |/
* | Merge pull request #633 from pedrohdz/feed_slugsJustin Mayer2019-01-211-7/+16
|\ \ | |/ |/| pelican-bootstrap3: Handle Pelican >= 4.0 slugs in feeds
| * Handle Pelican >= 4.0 slugs in feedsPedro H2019-01-201-7/+16
|/ | | | | | | | | | | | | | Since Pelican 4.0, `CATEGORY_FEED_ATOM` and `TAG_FEED_ATOM` are expected to use `{slug}`, not `%s`. Seems to have been introduced in getpelican/pelican#2383. This would cause the following error: ``` CRITICAL: TypeError: not all arguments converted during string formatting ``` This change allows for backwards and forward compatibility.
* Minor fixes to Gum theme docsJustin Mayer2018-10-231-6/+6
|
* update gum docsRoland Askew2018-10-231-0/+21
|
* Merge pull request #612 from mcepl/no_sort_on_articlesJustin Mayer2018-10-182-3/+3
|\ | | | | Remove two more articles|sort constructs
| * Remove two more articles|sort constructs.Matěj Cepl2018-09-242-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | This is the issue getpelican/pelican-themes#483 which was supposed to be fixed by #506 (and commit f1a4bba40281fa21816d6619d32136fc6a8f086d), but two occurences of the problem were missed. Basically, as https://github.com/getpelican/pelican/issues/1591#issuecomment-70272693 says: > For future reference: Don't use sort in templates on articles.
* | Merge pull request #611 from mamcmanus/masterJustin Mayer2018-10-181-0/+0
|\ \ | | | | | | Brutalist: fix a bug that broke page rendering
| * | Updated Brutalist theme to fix a bug where rendered article and page ↵Matt McManus2018-09-191-0/+0
| |/ | | | | | | summaries were being injected into the HTML head and causing entire page to break
* | Merge pull request #597 from charlesreid1/patch-1Justin Mayer2018-10-181-0/+3
|\ \ | | | | | | add FAVICON variable to simple-bootstrap theme
| * | add FAVICON variable to themeChaz Reid2018-05-131-0/+3
| | |
* | | Merge pull request #563 from schtobia/for_upstreamJustin Mayer2018-10-182-21/+52
|\ \ \ | | | | | | | | Just Read: Extended metadata block for non-article pages
| * | | Just Read: Replaced disqus code with new version from disqus.comTobias Schmidl2018-05-111-13/+19
| | | |
| * | | Justi Read: Replaced twitter widgetTobias Schmidl2018-05-111-2/+1
| | | | | | | | | | | | | | | | This new version is more suitable for a CSP setting
| * | | fixup! Just Read: Extended metadata block for non-article pagesTobias Schmidl2018-05-111-16/+16
| | | |
| * | | Just Read: Extended metadata block for non-article pagesTobias Schmidl2018-05-111-12/+38
| |/ /
* | | Merge pull request #613 from mUtterberg/masterJustin Mayer2018-10-101-0/+0
|\ \ \ | |_|/ |/| | Change branch on pelican-bold
| * | Change branch on pelican-boldmutterberg2018-10-091-0/+0
|/ /
* | Merge pull request #582 from ganziqim/masterJustin Mayer2018-09-171-12/+16
|\ \ | | | | | | pelican-bootstrap3: Fix Disqus bug #581
| * | Fix: pelican-bootstrap3 DISQUS bugganziqim2018-09-161-12/+16
|/ /
* | Merge pull request #600 from tchamberlin/patch-1Justin Mayer2018-09-011-3/+5
|\ \ | | | | | | Updated pelican-bootstrap3 README's Github section
| * | Further wording change to README'S Github sectionThomas Chamberlin2018-05-261-1/+3
| | | | | | | | | Reworded a few things for clarity
| * | Updated README's Github section Thomas Chamberlin2018-05-261-3/+3
| |/ | | | | | | | | There are no descriptions of how the various options work, and they don't work in entirely intuitive ways. I've gone through the relevant code and derived what I think are accurate descriptions of what each does. `GITHUB_SKIP_FORK` especially is confusing, because passing it a boolean will break it.
* | Merge pull request #590 from jranke/pb3-i18nJustin Mayer2018-09-011-3/+5
|\ \ | | | | | | pelican-bootstrap3: Another README improvement for i18n
| * | pelican-bootstrap3: Another README improvement for i18nJohannes Ranke2018-03-081-3/+5
| | | | | | | | | | | | | | | | | | It was still not really clear for me, so trying to be as explicit as possible, see comments to https://github.com/getpelican/pelican-themes/commit/b30f33e3b7e3a4bc7fb2327e9efd453f3a81488e