Skip to content

Commit 71126c8

Browse files
committed
Updated logo and first draft of the webpage
1 parent 16d6beb commit 71126c8

24 files changed

+476
-161
lines changed

_config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ timezone: Etc/UTC
2828
collections:
2929
staff_members:
3030
_hide_content: true
31+
get_options:
32+
_hide_content: true
3133

3234
paginate: 10
3335
paginate_path: "/blog/:num/"
@@ -59,6 +61,10 @@ defaults:
5961
path: "index.html"
6062
values:
6163
layout: "default"
64+
- scope:
65+
path: "get_options"
66+
values:
67+
layout: "post"
6268
- scope:
6369
path: "contact.html"
6470
values:

_data/navigation.yml

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,17 @@
1-
- name: Pricing
2-
link: /pricing/
1+
- name: "Get Ipfixprobe"
2+
link: /get_options/
33
new_window: false
44
highlight: false
5-
- name: Blog
6-
link: /blog/
5+
- name: "How to use it"
6+
link: /how/
77
new_window: false
88
highlight: false
9-
- name: About
10-
link: /about/
9+
- name: "Developer"
10+
link: /developer/
1111
new_window: false
1212
highlight: false
1313
- name: Contact
1414
link: /contact/
1515
new_window: false
1616
highlight: false
17-
- name: Login
18-
link: /
19-
new_window: true
20-
highlight: false
21-
- name: Sign Up
22-
link: /
23-
new_window: true
24-
highlight: true
17+

_get_options/_defaults.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title:
3+
description:
4+
code:
5+
---

_get_options/a_rhel_packages.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: Get ipfixprobe from repository!
3+
description: We use COPR infrastructure to build and serve ipfixprobe packages. Currently, we generate RPM packages for RHEL-based distributions
4+
5+
instructions:
6+
-
7+
description: "Install copr repository. Here is the example for EPEL 8."
8+
code:
9+
- "wget -O /etc/yum.repos.d/cesnet-nemea.repo https://copr.fedorainfracloud.org/coprs/g/CESNET/NEMEA/repo/epel-8/group_CESNET-NEMEA-epel-8.repo"
10+
- "rpm --import https://copr-be.cloud.fedoraproject.org/results/@CESNET/NEMEA/pubkey.gpg"
11+
-
12+
description: "After succesfull instalation of COPR, you can install the ipfixprobe via yum or dnf."
13+
code:
14+
- "dnf install ipfixprobe"
15+
16+
17+
---

_get_options/build_from_source.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
title: Build ipfixprobe from source!
3+
description: You can build ipfixprobe from source codes available at <a href="https://github.com/CESNET/ipfixprobe">github</a>.
4+
5+
instructions:
6+
-
7+
description: "Install requirements"
8+
code:
9+
- "yum -y install wget curl net-tools gcc gcc-c++ git libtool libpcap-devel libunwind libssl-devel libpcap-devel"
10+
-
11+
description: "Now get the ipfixprobe source codes"
12+
code:
13+
- "git clone https://github.com/CESNET/ipfixprobe.git"
14+
- cd ipfixprobe
15+
- autoreconf -i
16+
-
17+
description: "Ipfixprobe uses autotools to setup the build process. We encourage you to explore <code>./configure.sh -h </code> to see all the available options. Nevertheless, for standard (max 1Gbps) network monitoroing without any specialized tools, you should use following configuration."
18+
code:
19+
- "./configure.sh --with-pcap --with-quic --with-unwind"
20+
-
21+
description: "Then just make the ipfixprobe and install it. You might need root privileges for installation."
22+
code:
23+
- "make -j 2"
24+
- "sudo make install"
25+
26+
-
27+
description: "Optional NEMEA plugin. Ipfixprobe can export data directly to NEMEA framework. If you want to use this feature, you need to install NEMEA dependencies and enable this feature in autotools script."
28+
code:
29+
- "dnf install libtrap-devel unirec-devel"
30+
- "./configure.sh --with-pcap --with-quic --with-unwind --with-nemea"
31+
- "make -j 2"
32+
- sudo make install
33+
---

_includes/post-title.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,7 @@
44
<a href="{{ site.baseurl }}/category/{{ category | slugify }}/">{{ category | capitalize }}</a>
55
</span>
66
{% endfor %}
7+
{% if include.post.date %}
78
<span class="post-date">{{ include.post.date | date: "%B %d, %Y" }}</span>
9+
{% endif %}
810
</p>

_layouts/default.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
</ul>
4545
{% endfor %}
4646
</div>
47-
<p class="copyright">&copy; {{ site.time | date: '%Y' }} MyApp Ltd. • <a href="#">Terms</a> &amp; <a href="#">Privacy</a><a href="https://cloudcannon.com/">Template by CloudCannon</a></p>
47+
<p class="copyright">&copy; {{ site.time | date: '%Y' }} CESNET z.s.p.o.</p>
4848
</div>
4949
</footer>
5050
<script>

_layouts/post.html

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,9 @@
33
---
44
<div class="blog-post text-container">
55
{% include post-title.html post=page %}
6-
7-
<p class="editor-link"><a href="cloudcannon:collections/{{ page.path }}" class="btn"><strong>&#9998;</strong> Edit Post</a></p>
86
<div class="post-content">
97
{{ content }}
108

11-
<div class="author">
12-
{% assign author_id = page.author_staff_member | prepend: "/staff_members/" | append: "/" %}
13-
{% assign author = site.staff_members | where: "url", author_id | first %}
14-
<div class="square-image"><img src="{% include relative-src.html src=author.image_path %}" alt="{{ author.name }}"/></div>
15-
<p class="blurb">{{ author.blurb }}</p>
16-
</div>
17-
189
<div class="blog-navigation">
1910
{% if page.previous.url %}
2011
<a class="prev" href="{% include relative-src.html src=page.previous.url %}">&laquo; {{ page.previous.title }}</a>

_sass/elements.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ h3 {
4646

4747

4848
p, address {
49-
font-size: 1.38em;
49+
font-size: 1.1em;
5050
color: #666;
5151
margin-bottom: 20px;
5252
font-weight: 300;

_sass/footer.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ footer {
7070
padding: 50px 0 50px 0;
7171
font-size: 1.1em;
7272
position: relative;
73-
background: #2b2b40;
73+
background: $footer-color;
7474
color: #fff;
7575

7676
.copyright {

0 commit comments

Comments
 (0)