This commit is contained in:
Panos Sakkos 2015-11-20 03:22:31 +01:00
parent 0346e869fa
commit 9f5e1a0a16
5 changed files with 17 additions and 2 deletions

View file

@ -2,7 +2,7 @@ language: ruby
rvm:
- 2.1
install: gem install jekyll jekyll-paginate html-proofer
install: gem install jekyll jekyll-paginate jemoji html-proofer
script: jekyll serve --baseurl "" --detach && htmlproof ./_site --disable-external --empty-alt-ignore
env:

View file

@ -23,6 +23,7 @@ You can watch it in action [here](https://panossakkos.github.io/personal-jekyll-
* Blogging functionality
* Preview of the latest post in the home page
* Archive page
* Emojis
* Gesture navigation in archive and post pages by swiping
* #tags
* Disqus comments

View file

@ -151,4 +151,6 @@ paginate_path: "blog/page:num/"
sass:
style: compressed
gems: [jekyll-paginate]
gems:
- jekyll-paginate
- jemoji

View file

@ -71,3 +71,9 @@ int main()
</code></pre>
<small>If you don't need syntax highlight in your website you can disable it by setting the syntax-highlight variable to False</small>
### Emoji support
You can add emojis to your posts by simply typing their [emoji code](http://www.emoji-cheat-sheet.com/)
:wink:

View file

@ -317,3 +317,9 @@ body {
/* END Added in { Personal } for Typed Cursor in Header */
code { text-align: left; }
img.emoji {
// Override any img styles to ensure Emojis are displayed inline
margin: 0px !important;
display: inline !important;
}