1
0
mirror of https://github.com/bitwarden/help synced 2025-12-13 14:53:21 +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 layout: article
title: How to change your master password title: How to change your master password
category: Getting Started categories: [Getting Started]
featured: false featured: false
popular: false popular: false
tags: [password, account] tags: [password, account]

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -26,7 +26,7 @@ layout: default
<div class="panel-body"> <div class="panel-body">
<ol> <ol>
{% for article in site.articles %} {% 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> <li><a href="{{article.url}}">{{article.title}}</a></li>
{% endif %} {% endif %}
{% endfor %} {% endfor %}

View File

@@ -27,7 +27,7 @@ title: Help Center
<div class="panel-body"> <div class="panel-body">
<ul> <ul>
{% for article in site.articles %} {% 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> <li><a href="{{article.url}}">{{article.title}}</a></li>
{% endif %} {% endif %}
{% endfor %} {% endfor %}