1
0
mirror of https://github.com/bitwarden/help synced 2025-12-06 00:03:30 +00:00

allow articles to span multiple categories

This commit is contained in:
Kyle Spearrin
2017-05-22 12:23:11 -04:00
parent c0bbf57e35
commit fa494b3380
18 changed files with 17 additions and 18 deletions

View File

@@ -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]

View File

@@ -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]

View File

@@ -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]

View File

@@ -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]

View File

@@ -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]

View File

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

View File

@@ -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]

View File

@@ -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]

View File

@@ -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]

View File

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

View File

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

View File

@@ -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]

View File

@@ -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: []

View File

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

View File

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

View File

@@ -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">

View File

@@ -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 %}

View File

@@ -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 %}