Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add blog for Navix and fix layout on blog types #58

Merged
merged 2 commits into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions content/blog/icymi-navers-distro-navix-using-openela-source.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
title: Naver is using OpenELA source code for its new distro, Navix
slug: naver-navix-using-openela-source
date: 2025-01-24T12:16:31-05:00
author: The OpenELA Team
---

__Naver becomes the latest organization to leverage OpenELA sources.__

In case you missed it, we wanted to share [some great news reported by The Register](https://www.theregister.com/2024/12/10/naver_navix_linux/) just before the holiday season: South Korean internet company Naver has created its own Linux distribution with OpenELA.

The Register’s APAC editor Simon Sharwood noted that Naver’s new distro, Navix, “draws from the Open Enterprise Linux Association's (OpenELA) resources and is RHEL-compatible.”



Sharwood commented, “Naver is often compared to Google...providing search and a web portal then sprawled into email, payment services, e-commerce, blogging, and public cloud services. Its search offering remains South Korea's favorite, with market share that eclipses even the big G.”

1 change: 0 additions & 1 deletion layouts/blog

This file was deleted.

45 changes: 45 additions & 0 deletions layouts/blog/single.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{{ define "main" }}

{{ partial "navbar.html" . }}
{{ partial "navbar-clone.html" . }}


<section class="section is-medium">
<div class="container">
<article>
<header>
<div class="columns">
<div class="column is-centered-tablet-portrait">
<h1 class="title section-title">{{ .Title }}</h1>
<h5 class="subtitle is-5 is-muted">{{ .Params.Subtitle }}</h5>
<h6><strong>Published on:</strong> {{ .Date.Format "January 2, 2006" }}</h6>
<h6><strong>Author:</strong> {{ default "The OpenELA Team" .Params.author }}</h6>
<div class="divider"></div>
</div>
</div>
</header>

<section>
<div class=content>
{{ .Content }}
</div>
</section>

<footer>
{{ if .Params.tags }}
<p>Tags:
{{ range .Params.tags }}
<a href="/tags/{{ . | urlize }}">{{ . }}</a>
{{ end }}
</p>
{{ end }}
</footer>
</article>
</div>
</section>

{{ partial "footer.html" . }}

{{ partial "single/sidebar.html" . }}

{{ end }}
Loading