diff --git a/_config.yml b/_config.yml new file mode 100644 index 00000000..7814e9ca --- /dev/null +++ b/_config.yml @@ -0,0 +1,14 @@ +title: OpenSearch SDK for Java +description: Extension Documentation +theme: jekyll-theme-minimal +logo: /assets/img/logo.png + +sidenav: + - name: Design + link: DESIGN.md + - name: Developer Guide + link: DEVELOPER_GUIDE.md + - name: Create your first extension + link: CREATE_YOUR_FIRST_EXTENSION.md + - name: Plugin migration + link: PLUGIN_MIGRATION.md diff --git a/_includes/head_custom.html b/_includes/head_custom.html new file mode 100644 index 00000000..b492b709 --- /dev/null +++ b/_includes/head_custom.html @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/_includes/sidenav.html b/_includes/sidenav.html new file mode 100644 index 00000000..d6c9fa2a --- /dev/null +++ b/_includes/sidenav.html @@ -0,0 +1,7 @@ + \ No newline at end of file diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 00000000..3bc743c6 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,40 @@ + + + + + + + +{% seo %} + + + {% include head_custom.html %} + + +
+
+
+

{{ site.title | default: site.github.repository_name }}

+

{{ site.description | default: site.github.project_tagline }}

+ + {% if site.logo %} + OpenSearch Logo + {% endif %} + + {% include sidenav.html %} + +

opensearch-sdk-java repository

+

OpenSearch user documentation

+
+
+
+ + {{ content }} + +
+
+ + + diff --git a/assets/css/style.scss b/assets/css/style.scss new file mode 100644 index 00000000..8693ddb0 --- /dev/null +++ b/assets/css/style.scss @@ -0,0 +1,36 @@ +--- +--- + +@import "{{ site.theme }}"; + +@media screen and (min-width: 1200px) { + .wrapper { + width:1200px; + margin:0 auto; + } + + section { + width:900px; + float:right; + padding-bottom:50px; + } +} + +.link-wrapper { + margin-top: 2.5rem; +} + +ul.link { + list-style-type: none; + margin: 0; + padding: 0; +} + +ul.link li + li { + margin-top: 1rem; +} + +ul.link:last-child { + margin-bottom: 2.5rem; +} + diff --git a/assets/img/logo.png b/assets/img/logo.png new file mode 100644 index 00000000..f54f4541 Binary files /dev/null and b/assets/img/logo.png differ