| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|\
| |
| | |
Update svbhack with support for Pelican 4 and readtime plugin
|
|/
|
|
|
| |
Bumps up the svbhack submodule to include a version that works with
Pelican 4 and supports the readtime plugin.
|
|\
| |
| | |
Elegant: Update to v3.0.0
|
|/ |
|
|\
| |
| | |
Update yapeme to 0.4.0
|
|/ |
|
|\
| |
| | |
pelican_elegant: Link submodule to master branch
|
| | |
|
| | |
|
|\ \
| | |
| | | |
cebong: Removed unused font imports
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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`).
|
|\ \
| | |
| | | |
nmnlist: Fix "loop is undefined" issue
|
| |/ |
|
|\ \
| |/
|/| |
pelican-bootstrap3: Fix tipue search/upgrade to Tipue 7.0
|
| | |
|
| | |
|
|/ |
|
|\
| |
| | |
Gum: Update feeds to new 3.0+ syntax
|
| |
| |
| |
| |
| |
| | |
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
|
|\ \
| |/
|/| |
Update blue-penguin to 311a520 for a pages bugfix
|
| |
| |
| |
| | |
Need to update blue-penguin to ensure compatibility with #485
|
|\ \
| | |
| | | |
Gum: Honor conditional categories and pages
|
| |/
| |
| |
| | |
There were category links inside pages.
There was a Pages H4 outside the conditional check for if pages should be shown.
|
|\ \
| | |
| | | |
Update link to pelican-elegant repo
|
| |/ |
|
|\ \
| |/
|/| |
pelican-bootstrap3: Handle Pelican >= 4.0 slugs in feeds
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
|\
| |
| | |
Remove two more articles|sort constructs
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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.
|
|\ \
| | |
| | | |
Brutalist: fix a bug that broke page rendering
|
| |/
| |
| |
| | |
summaries were being injected into the HTML head and causing entire page to break
|
|\ \
| | |
| | | |
add FAVICON variable to simple-bootstrap theme
|
| | | |
|
|\ \ \
| | | |
| | | | |
Just Read: Extended metadata block for non-article pages
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
This new version is more suitable for a CSP setting
|
| | | | |
|
| |/ / |
|
|\ \ \
| |_|/
|/| | |
Change branch on pelican-bold
|
|/ / |
|
|\ \
| | |
| | | |
pelican-bootstrap3: Fix Disqus bug #581
|
|/ / |
|
|\ \
| | |
| | | |
Updated pelican-bootstrap3 README's Github section
|
| | |
| | |
| | | |
Reworded a few things for clarity
|
| |/
| |
| |
| |
| | |
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.
|
|\ \
| | |
| | | |
pelican-bootstrap3: Another README improvement for i18n
|
| | |
| | |
| | |
| | |
| | |
| | | |
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
|