Fixes #70
This commit is contained in:
parent
0346e869fa
commit
9f5e1a0a16
5 changed files with 17 additions and 2 deletions
|
|
@ -2,7 +2,7 @@ language: ruby
|
||||||
rvm:
|
rvm:
|
||||||
- 2.1
|
- 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
|
script: jekyll serve --baseurl "" --detach && htmlproof ./_site --disable-external --empty-alt-ignore
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
|
|
@ -23,6 +23,7 @@ You can watch it in action [here](https://panossakkos.github.io/personal-jekyll-
|
||||||
* Blogging functionality
|
* Blogging functionality
|
||||||
* Preview of the latest post in the home page
|
* Preview of the latest post in the home page
|
||||||
* Archive page
|
* Archive page
|
||||||
|
* Emojis
|
||||||
* Gesture navigation in archive and post pages by swiping
|
* Gesture navigation in archive and post pages by swiping
|
||||||
* #tags
|
* #tags
|
||||||
* Disqus comments
|
* Disqus comments
|
||||||
|
|
|
||||||
|
|
@ -151,4 +151,6 @@ paginate_path: "blog/page:num/"
|
||||||
sass:
|
sass:
|
||||||
style: compressed
|
style: compressed
|
||||||
|
|
||||||
gems: [jekyll-paginate]
|
gems:
|
||||||
|
- jekyll-paginate
|
||||||
|
- jemoji
|
||||||
|
|
|
||||||
|
|
@ -71,3 +71,9 @@ int main()
|
||||||
</code></pre>
|
</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>
|
<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:
|
||||||
|
|
|
||||||
|
|
@ -317,3 +317,9 @@ body {
|
||||||
/* END Added in { Personal } for Typed Cursor in Header */
|
/* END Added in { Personal } for Typed Cursor in Header */
|
||||||
|
|
||||||
code { text-align: left; }
|
code { text-align: left; }
|
||||||
|
|
||||||
|
img.emoji {
|
||||||
|
// Override any img styles to ensure Emojis are displayed inline
|
||||||
|
margin: 0px !important;
|
||||||
|
display: inline !important;
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue