Skip to content

Commit

Permalink
Added line-height attribute to custom.css
Browse files Browse the repository at this point in the history
As a site visitor, I want the article content to be easier to read
issue openhatch#42

Added space under the heading (Title and Info)

As a reader, I want the list of recent stories to be more aesthetically
laid out openhatch#49

Added space under the Info line within Recent Stories.

Added favicon

As a site visitor, I want to see a favicon openhatch#33

Added the generic OpenHatch favicon available at:
http://openhatch.org/static/images/penguin.png
  • Loading branch information
IamAdiSri committed Jun 4, 2015
1 parent 2c23cfa commit 1677f0d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
Binary file added content/images/favicon.ico
Binary file not shown.
4 changes: 2 additions & 2 deletions themes/pelican-elegant/static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ textarea {
article {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
margin: 25px;

line-height: 1.5;
}

article a {
Expand Down
1 change: 1 addition & 0 deletions themes/pelican-elegant/templates/base.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<link rel="shortcut icon" href="/images/favicon.ico">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Expand Down
6 changes: 3 additions & 3 deletions themes/pelican-elegant/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ <h4 class="no-space-below"><a href="{{ SITEURL }}/{{ article.url }}">{{ article.
{% if loop.index0 < RECENT_ARTICLES_COUNT %}
<article>
<h5 class="no-space-below"><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }} {%if article.subtitle %} <small> {{ article.subtitle }} </small> {% endif %} </a></h5>
<section>
posted by <a href="{{ SITEURL }}/{{ article.author.url }}" rel="author">{{ article.author }}</a> on
{{ article.locale_date }} <br />
<section>
<p>Posted by <a href="{{ SITEURL }}/{{ article.author.url }}" rel="author">{{ article.author }}</a> on
{{ article.locale_date }} </p>
{{ article.summary }}
</section>
</article>
Expand Down

0 comments on commit 1677f0d

Please sign in to comment.