mirror of https://github.com/MISP/misp-website
fix: [compliance] fixes issue of compliance 404 pages
parent
7388b6530e
commit
60ba762473
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
---
|
---
|
||||||
|
|
|
@ -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>
|
Loading…
Reference in New Issue