fix: [compliance] fixes issue of compliance 404 pages

pull/56/head
Christophe Vandeplas 2022-01-09 15:18:59 +01:00
parent 7388b6530e
commit 60ba762473
6 changed files with 59 additions and 4 deletions

View File

@ -1,5 +1,5 @@
--- ---
layout: page type: page
title: MISP Communities and MISP Feeds title: MISP Communities and MISP Feeds
permalink: /communities/ permalink: /communities/
toc: true toc: true

View File

@ -1,5 +1,5 @@
--- ---
layout: page_notoc type: page
title: Information sharing and cooperation enabled by GDPR title: Information sharing and cooperation enabled by GDPR
--- ---

View File

@ -1,5 +1,6 @@
--- ---
title: MISP as supporting platform for sharing information, following ISO/IEC 27010:2015 title: MISP as supporting platform for sharing information, following ISO/IEC 27010:2015
type: page
--- ---

View File

@ -1,5 +1,6 @@
--- ---
title: How MISP enables stakeholders identified by the NISD to perform key activities title: How MISP enables stakeholders identified by the NISD to perform key activities
type: page
--- ---
# How MISP enables stakeholders identified by the NISD to perform key activities # How MISP enables stakeholders identified by the NISD to perform key activities

View File

@ -1,7 +1,6 @@
--- ---
layout: page type: page
title: MISP, legal and policy compliance title: MISP, legal and policy compliance
permalink: /compliance/
toc: true toc: true
--- ---

54
layouts/page/list.html Normal file
View File

@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
<head>
{{ partial "headers.html" . }}
{{ partial "custom_headers.html" . }}
</head>
<body>
<div id="all">
{{ partial "nav.html" . }}
{{ partial "breadcrumbs.html" . }}
<div id="content">
{{ if isset .Params "id" }}
{{ partial .Params.id . }}
{{ else }}
<div class="container">
<div class="row">
<div class="col-md-12">
<div>
{{ .Content }}
</div>
</div>
</div>
<!-- /.row -->
</div>
<!-- /.container -->
{{ end }}
</div>
<!-- /#content -->
{{ partial "footer.html" . }}
</div>
<!-- /#all -->
{{ partial "scripts.html" . }}
</body>
</html>