diff --git a/.gitignore b/.gitignore index 5c91b60c..325c3c46 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ _site/ .sass-cache/ .jekyll-metadata +*.bat diff --git a/_articles/getting-started/change-master-password.md b/_articles/getting-started/change-master-password.md new file mode 100644 index 00000000..10a2de07 --- /dev/null +++ b/_articles/getting-started/change-master-password.md @@ -0,0 +1,10 @@ +--- +layout: article +title: Changing Your Master Password +category: getting-started +featured: true +popular: true +tags: [password, account] +--- + +This is how you change your master password. diff --git a/_categories/getting-started.md b/_categories/getting-started.md new file mode 100644 index 00000000..5f9517c8 --- /dev/null +++ b/_categories/getting-started.md @@ -0,0 +1,5 @@ +--- +layout: category +category: getting-started +featured: true +--- diff --git a/_config.yml b/_config.yml new file mode 100644 index 00000000..4189867d --- /dev/null +++ b/_config.yml @@ -0,0 +1,12 @@ +markdown: kramdown +permalink: pretty +encoding: UTF-8 + +collections: + categories: + output: true + permalink: /:path/ + articles: + output: true + permalink: /:path/ + \ No newline at end of file diff --git a/_layouts/article.html b/_layouts/article.html new file mode 100644 index 00000000..c9fd12c6 --- /dev/null +++ b/_layouts/article.html @@ -0,0 +1,7 @@ +--- +layout: default +--- + +
+ {{content}} +
diff --git a/_layouts/category.html b/_layouts/category.html new file mode 100644 index 00000000..6d446d32 --- /dev/null +++ b/_layouts/category.html @@ -0,0 +1,14 @@ +--- +layout: default +--- + +
+

{{page.title}}

+
    + {% for article in site.articles %} + {% if article.category == page.category %} +
  1. {{article.title}}
  2. + {% endif %} + {% endfor %} +
+
diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 00000000..b60e76a6 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,83 @@ + + + + + + + + {% if page.title %} {{ page.title }} | {% endif %}bitwarden + + + + + + + + + + + + + + + + + + + + {{content}} + + + + + + + + + + + + \ No newline at end of file diff --git a/css/styles.scss b/css/styles.scss new file mode 100644 index 00000000..b1a053c5 --- /dev/null +++ b/css/styles.scss @@ -0,0 +1,26 @@ +--- +--- + +html { + position: relative; + min-height: 100%; +} + +body { + margin-bottom: 60px; + padding-top: 51px; +} + +.search-header { + background: lightblue; + padding: 50px 0; + margin-bottom: 20px; +} + +footer { + position: absolute; + bottom: 0; + width: 100%; + height: 60px; + background-color: #black; +} diff --git a/index.html b/index.html new file mode 100644 index 00000000..423d5418 --- /dev/null +++ b/index.html @@ -0,0 +1,55 @@ +--- +layout: default +title: Help, FAQ, and Support +--- + +
+
+
+
+ + + + +
+
+
+
+
+
+
+
+ {% for category in site.categories %} + {% if category.featured == true %} +
+

{{category.title}}

+
    + {% for article in site.articles %} + {% if article.category == category.category and article.featured == true %} +
  • {{article.title}}
  • + {% endif %} + {% endfor %} +
+
+ {% endif %} + {% endfor %} +
+
+
+

Categories

+ +

Popular

+
    + {% for article in site.articles %} + {% if article.popular == true %} +
  • {{article.title}}
  • + {% endif %} + {% endfor %} +
+
+
+