Skip to content

Commit

Permalink
Merge pull request #37 from airween/main
Browse files Browse the repository at this point in the history
docs: small modifications
  • Loading branch information
airween authored Aug 30, 2024
2 parents 510db6b + 497d6e9 commit 6702330
Show file tree
Hide file tree
Showing 7 changed files with 452 additions and 11 deletions.
5 changes: 3 additions & 2 deletions config/_default/params.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ custom_css: []
### default social share image (can also be set per lang) ###
images: ["/img/social-share.png"]

crs:
release_url_prefix: "https://github.com/owasp-modsecurity/ModSecurity/releases/tag"
modsecurity:
release_tag_url_prefix: "https://github.com/owasp-modsecurity/ModSecurity/releases/tag"
release_url_prefix: "https://github.com/owasp-modsecurity/ModSecurity/releases"
latest_v2_major_version: "2.9.7"
latest_v3_major_version: "3.0.12"

Expand Down
21 changes: 21 additions & 0 deletions content/blog/2024-08-30-website-avaliable-again.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
title: 'ModSecurity.org: website abailable again'
date: '2024-08-30T14:00:00+02:00'
author: airween
categories:
- Blog
tags:
- Modsecurity-News
---

After a long period, the [modsecurity.org](https://modsecurity.org) website is available again with renewed content and form.

<!--more-->

When Trustwave handed over control of the [project](https://owasp.org/blog/2024/01/09/ModSecurity) in [January](https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/trustwave-transfers-modsecurity-custodianship-to-the-open-worldwide-application-security-project/), they indicated that they needed the domain while they continued to support their products.

The time has come, after July 1st we started the transfer of domain ownership.

A few days ago, all the processes were completed, and finally we was able to publish the new website. Thanks to all participants from Trustwave and OWASP for their help.

Our goal is to communicate all important news and development-related information here in the future.
2 changes: 1 addition & 1 deletion content/faq/can-i-sponsor.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ noindex: true

Yes! As a project in order to support activities like summits, hackathons, and speaking at conferences we need sponsors.
If you appreciate the work we do, or you use it heavily, you should consider sponsoring. If you are interested, please get
in touch with ModSecurity Co-Lead Christian Folini via christian.folini /at/ netnea.com. He is in charge of sponsoring contacts.
in touch with ModSecurity Co-Leaders via modsecurity /at/ owasp.org. They are in charge of sponsoring contacts.
4 changes: 3 additions & 1 deletion data/authors.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ dune73:
name: Christian Folini
twitter: ChrFolini
company: netnea
img: images/2017/08/christian-folini-2017-450x450.png
huberts90:
name: Hubert Siwik
airween:
name: Ervin Hegedus

12 changes: 6 additions & 6 deletions layouts/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{ define "main" }}
{{- $crs := $.Site.Params.crs -}}
{{- $modsecurity := $.Site.Params.modsecurity -}}
<div class="columns hero-grid">
<div class="hero-grid__col1">
<h1 class="title">
Expand All @@ -24,17 +24,17 @@ <h2 class="subhero">{{ i18n "subhero" }}</h2>

<p class="shortened-width">{{ i18n "explainerText" | markdownify }}</p>

{{ with $crs }}
<a href="{{ printf "%s/v%s" .release_url_prefix .latest_v2_major_version }}" class="button">Get latest v2: {{ .latest_v2_major_version }}</a>
<a href="{{ printf "%s/v%s" .release_url_prefix .latest_v3_major_version }}" class="button">Get latest v3: {{ .latest_v3_major_version }}</a>
{{ with $modsecurity }}
<a href="{{ printf "%s/v%s" .release_tag_url_prefix .latest_v2_major_version }}" class="button">Get latest v2: {{ .latest_v2_major_version }}</a>
<a href="{{ printf "%s/v%s" .release_tag_url_prefix .latest_v3_major_version }}" class="button">Get latest v3: {{ .latest_v3_major_version }}</a>
{{ end }}
</div>
<div class="hero-grid__col1">
<h2 class="subhero">{{ i18n "promotionHero" }}</h2>

<p class="shortened-width">{{ i18n "promotionText" | markdownify }}</p>

{{ with $crs }}
{{ with $modsecurity }}
<a href="/developers/" class="button">Become a part of it!</a>
{{ end }}
</div>
Expand All @@ -48,7 +48,7 @@ <h3 class="h4">{{ i18n "sectionTitle" | markdownify }}</h3>
<div class="card">
<h2>{{ i18n "sectionTitle1" }}</h2>
<p>{{ i18n "sectionText1" | markdownify }}</p>
<a href="{{ printf "%s/v%s" $crs.release_url_prefix $crs.latest_major_version }}" class="button">{{ i18n "sectionButton1" }}</a>
<p><a href="{{ printf "%s" $modsecurity.release_url_prefix }}" class="button">{{ i18n "sectionButton1" }}</a></p>
</div>

<div class="card">
Expand Down
1 change: 0 additions & 1 deletion layouts/partials/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
{{ $extra_header_class = "sticky" }}
{{ end }}
<header class="header {{ $extra_header_class }}">
<h4 style="text-align: center; color: white; background-color: darkred; margin: 0">WORK IN PROGRESS</h4>
<div class="container wrap">

{{ with .Site.Params.logo_on_white }}
Expand Down
Loading

0 comments on commit 6702330

Please sign in to comment.