Previously the width of date field was hardcoded at 180px and that would
take up most of screen estate on mobile devices. The most important part
- article titles - may become condensed and even unreadable
Minified version of stylesheet was not used anywhere and might be (or
become) outdated. It is better to remove it altogether to avoid confusion
among users
* example correction that prevents author's cover images from being overwritten by inherited code in index.html
* article, author, category and tag extends to base.html instead of index.html
The variable was incorrectly pasted as `article` which made rendering
pages impossible. Thanks to @kloppen for triaging and suggesting the fix.
Fixes#29
* Ref #24 linkedin and github social link in author page and article page
-test case for that
- BaseTest added
* Ref #24 icon to link since linkedin and github is not present
* article color fix
* #21 changing logic to selecting cover image
- For categories, tags
- Some code refactor and indenting
* #21 initial codes for pelican unit tests
* #21 few more testing changes
* Ref #21 unit tests for article tests coverimages
* Ref #21 unit tests for page, tags, category and author coverimages
* Ref #21 readme updated
* Implement AUTHOR_BIO "name" and "cover" fields.
In the theme readme, there's are "name" and "cover" fields in the
AUTHOR_BIO example, but these two fields weren't implemented yet.
Instead, the author page was displaying the author entry through
the title Jinja2 filter (which doesn't work so well for surnames like
mine, which contains multiple capital letters ;) ), and the cover
image was being used for the avatar image. This change uses the
"name" and "cover" fields for these, respectfully.
The cover image on the author page will also gracefully fall back
to the site default if an author cover isn't specified as well.
* Correct name author name display in post loop
* Set author name if author bio not set
default author name string will be title and that can be override form auther bio name
* added trailing slash to Home link - to properly handle root urls
* updated Home link on author page
* updated Home link on misc. pages
* switched from capitalize to title in order to properly capitalize two word names
* reverted URL changes to keep seperate from casing logic changes
* updated metatag logic to remove extraneous metatags on articles
* removed other changes. only author casing in this PR