Skip to content

Commit e5df45d

Browse files
Add fw page (#90)
* first rough draft of firewall analysis page * fix title setting and formatting * table formatting v0 and clean up spacing * fix query formatting * table formatting attempt 1 * table formatting attempt 2 * paragraph spacing * table formatting attempt 3 * add html meta tags for description and keywords * address review comments * adjust text to help with SEO Co-authored-by: Rich Snider <rich@intentionet.com>
1 parent fda744e commit e5df45d

7 files changed

Lines changed: 439 additions & 1 deletion

File tree

_config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ safe: true
3939
plugins:
4040
- jekyll-feed
4141

42+
include:
43+
- _pages
44+
4245

4346
# Exclude from processing.
4447
# The following items will not be processed, by default. Create a custom list

_includes/head.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,19 @@
33
<meta http-equiv="X-UA-Compatible" content="IE=edge">
44
<meta name="viewport" content="width=device-width, initial-scale=1">
55

6+
{% if page.description %}
7+
<meta name="description" content="{{ page.description}} ">
8+
{% endif %}
9+
10+
{% if page.keywords %}
11+
<meta name="keywords" content=" {{page.keywords}}">
12+
{% endif %}
13+
14+
{%- if page.title -%}
15+
<title>{{page.title}}</title>
16+
{% else %}
617
<title>Batfish - An open source network configuration analysis tool</title>
18+
{%- endif -%}
719

820
<link rel="icon" type="image/png" href="{{ "/assets/favicon/favicon-32x32.png" | relative_url }}" sizes="32x32" />
921
<link rel="icon" type="image/png" href="{{ "/assets/favicon/favicon-16x16.png" | relative_url }}" sizes="16x16" />

_layouts/page.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: default
33
---
4-
<article class="post">
4+
<article class="post container">
55

66
<header class="post-header">
77
<h1 class="post-title">{{ page.title | escape }}</h1>

0 commit comments

Comments
 (0)