aboutsummaryrefslogtreecommitdiffstats
path: root/cebong
Commit message (Collapse)AuthorAgeFilesLines
* 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`).
* Replace 'PAGES' with 'pages' across all themesAdam Matan2017-03-072-2/+2
| | | | | Solving http://docs.getpelican.com/en/latest/faq.html\#since-i-upgraded-pelican-my-pages-are-no-longer-rendered And https://github.com/getpelican/pelican-themes/issues/437
* Added metadataTobias Schmidl2016-01-117-2/+67
| | | | | | We want to populate various HTML metatags from pelican. The data is there, we just have to put in HTML! To be more precise, the meta names "keywords", "category", "description", "author", "robots" and "date" are taken from pelican variables.
* Changed a lot of URLs towards HTTPSTobias Schmidl2016-01-117-13/+13
| | | | | We don't want to have mixed mode on the site, therefore it's useful to use HTTPS wherever possible. It's no problem to load HTTPS content on a plain HTTP enabled site, but it is a problem the other way round.
* Adding a "screenshot" section to those readme files that don't have oneBruno Oliveira2013-10-261-2/+6
|
* Added more relevant style for <code> tag.Dedi Purwanto2012-11-191-0/+15
|
* Added license and updated theme linkDedi Purwanto2012-11-182-1/+15
|
* Added info for using tagline and footer text.Dedi Purwanto2012-11-181-5/+4
|
* Added cebong theme filesDedi Purwanto2012-11-1834-0/+1041