'
+
+hr_faded: '
'
+hr_shaded: '
'
\ No newline at end of file
diff --git a/_data/sidebar.yml b/_data/sidebar.yml
new file mode 100755
index 00000000..6086f4aa
--- /dev/null
+++ b/_data/sidebar.yml
@@ -0,0 +1,53 @@
+# This is your sidebar TOC. The sidebar code loops through sections here and provides the appropriate formatting.
+
+# Sidebar
+entries:
+- title: Sidebar
+ subcategories:
+
+ - title: LBJava API
+ url: http://cogcomp.cs.illinois.edu/software/doc/LBJava/apidocs/
+
+ - title: User Manual
+ items:
+ - title: 1. Intro
+ url: /lbjava/doc/INTRO.html
+
+ - title: 2. Definitions
+ url: /lbjava/doc/DEFINITIONS.html
+
+ - title: 3. 20 Newsgroup
+ url: /lbjava/doc/20NEWSGROUP.html
+
+ - title: 4. LBJava Language
+ url: /lbjava/doc/LBJLANGUAGE.html
+
+ - title: 5. LBJava Library
+ url: /lbjava/doc/LBJLIBRARY.html
+
+ - title: 6. Regression
+ url: /lbjava/doc/REGRESSION.html
+
+ - title: Algorithms
+ url: /lbjava/doc/ALGORITHMS.html
+
+
+ - title: Tutorials
+ items:
+ - title: Badges
+ url: /lbjava-examples/src/main/java/edu/illinois/cs/cogcomp/lbjava/examples/badges/README.html
+
+ - title: Entity Relation
+ url: /lbjava-examples/src/main/java/edu/illinois/cs/cogcomp/lbjava/examples/entityRelation/README.html
+
+ - title: NewsGroup
+ url: /lbjava-examples/src/main/java/edu/illinois/cs/cogcomp/lbjava/examples/newsgroup/README.html
+
+ - title: Sentiment
+ url: /lbjava-examples/src/main/java/edu/illinois/cs/cogcomp/lbjava/examples/sentiment/README.html
+
+ - title: Set Cover
+ url: /lbjava-examples/src/main/java/edu/illinois/cs/cogcomp/lbjava/examples/setCover/README.html
+
+ - title: Spam
+ url: /lbjava-examples/src/main/java/edu/illinois/cs/cogcomp/lbjava/examples/spam/README.html
\ No newline at end of file
diff --git a/_data/topnav.yml b/_data/topnav.yml
new file mode 100755
index 00000000..d7f66d6e
--- /dev/null
+++ b/_data/topnav.yml
@@ -0,0 +1,12 @@
+## Topnav single links
+## if you want to list an external url, use external_url instead of url. the theme will apply a different link base.
+topnav:
+- title: Topnav
+ subcategories:
+
+ - title: Github Repo
+ icon: /common_images/GitHub-Mark-32px.png
+ external_url: https://github.com/IllinoisCogComp/lbjava
+
+ - title: Cogcomp Home
+ external_url: https://cogcomp.cs.illinois.edu
diff --git a/_includes/base.html b/_includes/base.html
new file mode 100644
index 00000000..0d5d9d0d
--- /dev/null
+++ b/_includes/base.html
@@ -0,0 +1,22 @@
+{% assign base = '.' %}
+{% assign depth = page.url | split: '/' | size | minus: 1 %}
+{% if depth == 1 %}{% assign base = '.' %}
+{% elsif depth == 2 %}{% assign base = '..' %}
+{% elsif depth == 3 %}{% assign base = '../..' %}
+{% elsif depth == 4 %}{% assign base = '../../..' %}
+{% elsif depth == 5 %}{% assign base = '../../../..' %}
+{% elsif depth == 6 %}{% assign base = '../../../../..' %}
+{% elsif depth == 7 %}{% assign base = '../../../../../..' %}
+{% elsif depth == 8 %}{% assign base = '../../../../../../..' %}
+{% elsif depth == 9 %}{% assign base = '../../../../../../../..' %}
+{% elsif depth == 10 %}{% assign base = '../../../../../../../../..' %}
+{% elsif depth == 11 %}{% assign base = '../../../../../../../../../..' %}
+{% elsif depth == 12 %}{% assign base = '../../../../../../../../../../..' %}
+{% elsif depth == 13 %}{% assign base = '../../../../../../../../../../../..' %}
+{% elsif depth == 14 %}{% assign base = '../../../../../../../../../../../../..' %}
+{% elsif depth == 15 %}{% assign base = '../../../../../../../../../../../../../..' %}{% endif %}
+
+
+{% assign sidebar = site.data.sidebar.entries %}
+{% assign topnav = site.data.topnav.topnav %}
+{% assign topnav_dropdowns = site.data.topnav.topnav_dropdowns %}
\ No newline at end of file
diff --git a/_includes/disqus.html b/_includes/disqus.html
new file mode 100755
index 00000000..4fad7a25
--- /dev/null
+++ b/_includes/disqus.html
@@ -0,0 +1,16 @@
+{% if site.disqus_shortname %}
+
+
+
+
+{% endif %}
\ No newline at end of file
diff --git a/_includes/feedback.html b/_includes/feedback.html
new file mode 100755
index 00000000..09b33675
--- /dev/null
+++ b/_includes/feedback.html
@@ -0,0 +1,16 @@
+
+
+
+
Feedback
\ No newline at end of file
diff --git a/_includes/footer.html b/_includes/footer.html
new file mode 100755
index 00000000..f6c14d68
--- /dev/null
+++ b/_includes/footer.html
@@ -0,0 +1,15 @@
+
\ No newline at end of file
diff --git a/_includes/google_analytics.html b/_includes/google_analytics.html
new file mode 100755
index 00000000..56b2ee88
--- /dev/null
+++ b/_includes/google_analytics.html
@@ -0,0 +1,6 @@
+
+
+{% if site.google_analytics %}
+
+
+{% endif %}
\ No newline at end of file
diff --git a/_includes/head.html b/_includes/head.html
new file mode 100755
index 00000000..08c5ed5b
--- /dev/null
+++ b/_includes/head.html
@@ -0,0 +1,40 @@
+
+
+
+
+
+
{% if page.homepage == true %} {{site.homepage_title}} {% elsif page.title %}{{ page.title }}{% endif %} | {{ site.site_title }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/_includes/sidebar.html b/_includes/sidebar.html
new file mode 100755
index 00000000..36bcb32a
--- /dev/null
+++ b/_includes/sidebar.html
@@ -0,0 +1,31 @@
+
+
+
+
+
diff --git a/_includes/toc.html b/_includes/toc.html
new file mode 100755
index 00000000..1d30ae39
--- /dev/null
+++ b/_includes/toc.html
@@ -0,0 +1,23 @@
+
+
+
+
+{% unless page.toc == false %}
+
+{% endunless %}
\ No newline at end of file
diff --git a/_includes/topnav.html b/_includes/topnav.html
new file mode 100755
index 00000000..0789abed
--- /dev/null
+++ b/_includes/topnav.html
@@ -0,0 +1,70 @@
+
+
diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100755
index 00000000..208048be
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,60 @@
+
+
+
+ {% include base.html %}
+ {% include head.html %}
+
+
+
+
+
+{% include topnav.html %}
+
+
+
+
+
+
+ {% include sidebar.html %}
+
+
+
+
+
+
+
+
+
+
+ {{content}}
+
+
+
+
+
+
+
+
+
+ {% include footer.html %}
+
+
+
+
+{% if site.google_analytics %}
+{% include google_analytics.html %}
+{% endif %}
+
+
+
+
+