DEFAULT ENGLISH = deeplearning4j.org/title
OTHER LANGUAGE = deeplearning4j.org/lang/title
EXAMPLE:
- English = deeplearning4j.org/title
- Chinese = deeplearning4j.org/cn/title
- Korean = deeplearning4j.org/kr/title
- Japanese = deeplearning4j.org/jp/title
The deeplearning4j.org website divided into the following sections:
- Landing Page (deeplearning4j.org)
- Content Page (deeplearning4j.org/xxx)
- header
- navigation
- sidebar
- footer
To edit the Landing Page, edit the html file located at "_layouts/index.html"
The default content layout is located at "_layouts/default.html". The default layout contains html blocks from "_includes/":
- header.html
- navigation.html
- sidebar.html
- footer.html
To write a post with the layout you want, you should add this in the beginning of your post:
---
title: YOUR TITLE
layout: default (or other layout you preferred)
---
In example:
Header html file located at "_includes/header.html"
NOTE: You shouldn't edit this file unless needed.
Navigation html file located at "_includes/navigation.html"
If you are modifying the Navigation file for other language, then duplicated the navigation.html and rename it to "lang-navigation.html" (i.e. cn-navigation.html)
Navigation html file located at "_includes/sidebar.html"
If you are modifying the Navigation file for other language, then duplicated the sidebar.html and rename it to "lang-sidebar.html" (i.e. cn-sidebar.html)
Footer html file located at "_includes/footer.html"
NOTE: You shouldn't edit this file unless needed.
<img class="img-responsive center-block" src="../img/your-image-name-here.png" alt="deeplearning4j">
More than one line:
<pre class="line-numbers"><code class="language-java">
your code here
your code here
...
</code></pr>
Only one line:
<pre><code class="language-java">
your code here
</code></pr>
NOTE: Please use < for <, and > for > in order not to mess up with the html coding.