.container .content CSS and .post-item HTML fixes

* .container .content for icons should not be 100%
  to help with centering.
* Use span for .post-item internals, otherwise Firefox
  messes up at smaller screen width with the list bullet
  and title on separate lines.
* README wording

Fix #17
This commit is contained in:
Nishanth Shanmugham
2016-10-08 00:12:05 -05:00
parent a9196dff19
commit 93618f9ec8
4 changed files with 13 additions and 8 deletions

View File

@@ -39,6 +39,10 @@ hugo -t cocoa
## Usage
#### config.toml
Please see the sample [`config.toml`](https://github.com/nishanths/cocoa-hugo-theme/blob/master/exampleSite/config.toml) in `exampleSite/`.
#### Creating Content
* Posts should generally go under a `content/blog` directory. Typically you would run:
@@ -47,7 +51,7 @@ hugo -t cocoa
hugo new blog/your-new-post.md
````
(You may need to set `draft = false` in the new post's front matter for it to appear on your site.)
You may need to set `draft = false` in the new post's front matter for it to appear on your site.
* Fixed pages such as an About page should preferably go under a `content/fixed` or be present at the root of the `contents` directory.
@@ -55,10 +59,6 @@ hugo new blog/your-new-post.md
$ hugo new fixed/about.md
````
#### config.toml
Please see the sample [`config.toml`](https://github.com/nishanths/cocoa-hugo-theme/blob/master/exampleSite/config.toml) in `exampleSite/`.
#### Example site
An example site is available in `exampleSite/`.