Browse Source

allow articles to span multiple categories

pull/15/head
Kyle Spearrin 9 years ago
parent
commit
fa494b3380
  1. 2
      _articles/getting-started/how-to-change-your-master-password.md
  2. 2
      _articles/getting-started/how-to-setup-two-step-login.md
  3. 2
      _articles/getting-started/import-from-1password.md
  4. 2
      _articles/getting-started/import-from-chrome.md
  5. 2
      _articles/getting-started/import-from-lastpass.md
  6. 2
      _articles/security/can-bitwarden-see-my-passwords.md
  7. 2
      _articles/security/cloud-server-security.md
  8. 2
      _articles/security/how-is-data-securely-transmitted-and-stored.md
  9. 2
      _articles/security/password-salt-hash.md
  10. 2
      _articles/security/what-encryption-is-used.md
  11. 2
      _articles/security/what-happens-if-bitwarden-is-hacked.md
  12. 2
      _articles/security/where-is-data-stored-cloud.md
  13. 2
      _articles/security/where-is-data-stored-computer.md
  14. 2
      _articles/security/why-should-i-trust-bitwarden.md
  15. 2
      _config.yml
  16. 1
      _layouts/article.html
  17. 2
      _layouts/category.html
  18. 2
      index.html

2
_articles/getting-started/how-to-change-your-master-password.md

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
---
layout: article
title: How to change your master password
category: Getting Started
categories: [Getting Started]
featured: false
popular: false
tags: [password, account]

2
_articles/getting-started/how-to-setup-two-step-login.md

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
---
layout: article
title: How to set up two-step login (2FA)
category: Getting Started
categories: [Getting Started]
featured: false
popular: false
tags: [two-step login, 2fa, two factor authentication, account]

2
_articles/getting-started/import-from-1password.md

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
---
layout: article
title: Import Your Account Data From 1Password
category: Getting Started
categories: [Getting Started]
featured: true
popular: true
tags: [import, 1password]

2
_articles/getting-started/import-from-chrome.md

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
---
layout: article
title: Import Your Account Data From Google Chrome
category: Getting Started
categories: [Getting Started]
featured: true
popular: true
tags: [import, chrome]

2
_articles/getting-started/import-from-lastpass.md

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
---
layout: article
title: Import Your Account Data From LastPass
category: Getting Started
categories: [Getting Started]
featured: true
popular: true
tags: [import, lastpass]

2
_articles/security/can-bitwarden-see-my-passwords.md

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
---
layout: article
title: Can the bitwarden team see my passwords?
category: Security
categories: [Security]
featured: true
popular: false
tags: []

2
_articles/security/cloud-server-security.md

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
---
layout: article
title: How do you keep the cloud servers secure?
category: Security
categories: [Security]
featured: true
popular: false
tags: [cloud]

2
_articles/security/how-is-data-securely-transmitted-and-stored.md

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
---
layout: article
title: How is my data securely trasmitted and stored on bitwarden servers?
category: Security
categories: [Security]
featured: true
popular: false
tags: [encryption]

2
_articles/security/password-salt-hash.md

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
---
layout: article
title: Does bitwarden use a salted hash for my password?
category: Security
categories: [Security]
featured: true
popular: false
tags: [encryption, hash]

2
_articles/security/what-encryption-is-used.md

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
---
layout: article
title: What encryption is being used?
category: Security
categories: [Security]
featured: true
popular: false
tags: [encryption]

2
_articles/security/what-happens-if-bitwarden-is-hacked.md

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
---
layout: article
title: What happens if bitwarden gets hacked?
category: Security
categories: [Security]
featured: true
popular: false
tags: [hacked]

2
_articles/security/where-is-data-stored-cloud.md

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
---
layout: article
title: Where is my data stored in the cloud?
category: Security
categories: [Security]
featured: true
popular: false
tags: [cloud]

2
_articles/security/where-is-data-stored-computer.md

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
---
layout: article
title: Where is my data stored on my computer/device?
category: Security
categories: [Security]
featured: true
popular: false
tags: []

2
_articles/security/why-should-i-trust-bitwarden.md

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
---
layout: article
title: Why should I trust bitwarden with my passwords?
category: Security
categories: [Security]
featured: true
popular: true
tags: []

2
_config.yml

@ -11,4 +11,4 @@ collections: @@ -11,4 +11,4 @@ collections:
permalink: /:path/
articles:
output: true
permalink: /:path/
permalink: /article/:name/

1
_layouts/article.html

@ -5,7 +5,6 @@ layout: default @@ -5,7 +5,6 @@ layout: default
<div class="container container-content">
<ol class="breadcrumb">
<li><a href="/">Help Center</a></li>
<li><a href="/{{page.category | slugify}}/">{{page.category}}</a></li>
<li class="active">{{page.title}}</li>
</ol>
<div class="panel panel-default panel-article">

2
_layouts/category.html

@ -26,7 +26,7 @@ layout: default @@ -26,7 +26,7 @@ layout: default
<div class="panel-body">
<ol>
{% for article in site.articles %}
{% if article.category == page.title %}
{% if article.categories contains page.title %}
<li><a href="{{article.url}}">{{article.title}}</a></li>
{% endif %}
{% endfor %}

2
index.html

@ -27,7 +27,7 @@ title: Help Center @@ -27,7 +27,7 @@ title: Help Center
<div class="panel-body">
<ul>
{% for article in site.articles %}
{% if article.category == category.title and article.featured == true %}
{% if article.categories contains category.title and article.featured == true %}
<li><a href="{{article.url}}">{{article.title}}</a></li>
{% endif %}
{% endfor %}

Loading…
Cancel
Save