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:
@@ -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]
|
||||
|
||||
@@ -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]
|
||||
|
||||
@@ -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]
|
||||
|
||||
@@ -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]
|
||||
|
||||
@@ -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]
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
layout: article
|
||||
title: Can the bitwarden team see my passwords?
|
||||
category: Security
|
||||
categories: [Security]
|
||||
featured: true
|
||||
popular: false
|
||||
tags: []
|
||||
|
||||
@@ -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]
|
||||
|
||||
@@ -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]
|
||||
|
||||
@@ -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]
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
layout: article
|
||||
title: What encryption is being used?
|
||||
category: Security
|
||||
categories: [Security]
|
||||
featured: true
|
||||
popular: false
|
||||
tags: [encryption]
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
layout: article
|
||||
title: What happens if bitwarden gets hacked?
|
||||
category: Security
|
||||
categories: [Security]
|
||||
featured: true
|
||||
popular: false
|
||||
tags: [hacked]
|
||||
|
||||
@@ -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]
|
||||
|
||||
@@ -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: []
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
layout: article
|
||||
title: Why should I trust bitwarden with my passwords?
|
||||
category: Security
|
||||
categories: [Security]
|
||||
featured: true
|
||||
popular: true
|
||||
tags: []
|
||||
|
||||
@@ -11,4 +11,4 @@ collections:
|
||||
permalink: /:path/
|
||||
articles:
|
||||
output: true
|
||||
permalink: /:path/
|
||||
permalink: /article/:name/
|
||||
|
||||
@@ -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">
|
||||
|
||||
@@ -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 %}
|
||||
|
||||
@@ -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 %}
|
||||
|
||||
Reference in New Issue
Block a user