Skip to content

Commit 9cbe00c

Browse files
authored
Move blogs (#106)
* Move blogs. Update banner * Fix vscode auto-format bug * Remove _pages from config.yml * Remove unnecessary table.scss changes
1 parent a8bee6c commit 9cbe00c

104 files changed

Lines changed: 2764 additions & 1071 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

_config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,16 @@ title: Batfish
1919
description: >- # this means to ignore newlines until "baseurl:"
2020
url: "https://batfish.github.io" # the base hostname & protocol for your site, e.g. http://example.com
2121

22+
show_excerpts: true
23+
2224
google_analytics: GTM-TZKVKVG
23-
intentionet_url: https://www.intentionet.com/
2425

2526
# Social
2627
slack_url: https://join.slack.com/t/batfish-org/shared_invite/enQtMzA0Nzg2OTAzNzQ1LTUxOTJlY2YyNTVlNGQ3MTJkOTIwZTU2YjY3YzRjZWFiYzE4ODE5ODZiNjA4NGI5NTJhZmU2ZTllOTMwZDhjMzA
2728
github-project-url: https://github.com/batfish/batfish
28-
# github_username:
29-
# linkedin_username:
30-
# twitter_username:
29+
# github_username:
30+
# linkedin_username:
31+
# twitter_username:
3132

3233

3334
# Build settings
@@ -40,8 +41,7 @@ plugins:
4041
- jekyll-feed
4142

4243
include:
43-
- _pages
44-
44+
- _posts
4545

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

_includes/banner.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,17 @@
22
<div class="container text-center p-2">
33
<p class="m-0 lead">
44
<span>
5-
Want to get your hands dirty? See our <a href=https://batfish.readthedocs.io/en/latest/index.html>Python docs</a> (<a href="assets/cheat-sheet.pdf">a cheat sheet</a>) or <a href=https://github.com/batfish/ansible>Ansible docs</a>.
5+
Want to get your hands dirty? See <a href=https://batfish.readthedocs.io/en/latest/index.html>docs</a>.
66
</span>
77
<br>
88
<span>
99
Got questions or feature requests? Join us on
1010
<a href="https://join.slack.com/t/batfish-org/shared_invite/enQtMzA0Nzg2OTAzNzQ1LTcyYzY3M2Q0NWUyYTRhYjdlM2IzYzRhZGU1NWFlNGU2MzlhNDY3OTJmMDIyMjQzYmRlNjhkMTRjNWIwNTUwNTQ">Slack</a> or <a href="https://github.com/batfish/batfish">GitHub</a>.
11-
</span>
11+
</span>
12+
<br>
13+
<span>
14+
Or read <a href="blogs.html">our blog</a> to dig deeper into the rationale for Batfish.
15+
</span>
1216
</p>
1317
</div>
1418
</div>

_includes/intentionet-banner.html

Lines changed: 0 additions & 12 deletions
This file was deleted.

_includes/publications.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@ <h2>Publications</h2>
1616
<!-- Publication-->
1717
<div id="publication-1" class="justify-content-center row">
1818
<div class="col-10">
19+
<div class="content-row my-4">
20+
<a href="https://dl.acm.org/doi/10.1145/3603269.3604866">
21+
<h4>Lessons from the evolution of the Batfish configuration analysis tool</h4>
22+
</a>
23+
<p>Matt Brown, Ari Fogel, Daniel Halperin, Victor Heohiardi, Ratul Mahajan, Todd Millstein</p>
24+
<p>ACM SIGCOMM 2023 Conference</p>
25+
</div>
26+
1927
<div class="content-row my-4">
2028
<a href="https://www.usenix.org/system/files/conference/nsdi15/nsdi15-paper-fogel.pdf">
2129
<h4>A General Approach to Network Configuration Analysis</h4>

_layouts/default.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
{%- include google-analytics-noscript.html -%}
88
{%- endif -%}
99

10-
{%- include intentionet-banner.html -%}
1110
<main class="page-content" aria-label="Content">
1211
<div class="wrapper">
1312
{{ content }}

_layouts/home.html

Lines changed: 5 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ <h1 class="display-1">Batfish</h1>
2525
</p>
2626
<p>
2727
Batfish was originally developed by researchers at Microsoft Research, UCLA, and USC.
28-
Many others have since contributed to it.
28+
It was later enhanced and maintained by Intentionet. Since the Intentionet team joined AWS, it has
29+
been an AWS-managed open source project under the same license (Apache 2.0). Many others
30+
have contributed to the project.
2931
</p>
3032
</div>
3133
</div>
@@ -56,27 +58,5 @@ <h1 class="display-1">Batfish</h1>
5658
</div>
5759

5860
</div>
59-
<!-- End Content-->
60-
61-
{%- if site.post.size > 0 -%}
62-
<h2 class="post-list-heading">{{ page.list_title | default: "Posts" }}</h2>
63-
<ul class="post-list">
64-
{%- for post in site.post -%}
65-
<li>
66-
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
67-
<span class="post-meta">{{ post.date | date: date_format }}</span>
68-
<h3>
69-
<a class="post-link" href="{{ post.url | relative_url }}">
70-
{{ post.var | escape }}
71-
</a>
72-
</h3>
73-
{%- if site.show_excerpts -%} {{ post.excerpt }} {%- endif -%}
74-
</li>
75-
{%- endfor -%}
76-
</ul>
77-
78-
<p class="rss-subscribe">subscribe
79-
<a href="{{ " /feed.xml " | relative_url }}">via RSS</a>
80-
</p>
81-
{%- endif -%}
82-
</div>
61+
</div>
62+
<!-- End Content-->

0 commit comments

Comments
 (0)