Skip to content

Commit c5e7dc9

Browse files
committed
jekyll
1 parent d9c268b commit c5e7dc9

3 files changed

Lines changed: 25 additions & 0 deletions

File tree

Subjects/2. Linux Logs/Logs.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
layout: default
3+
title: Logs
4+
---
5+
16
# Community | Understanding Log Files on your Linux System
27

38
### Log files in Linux represent point in time events for activity related to the OS, system devices, and applications running on the system. Learn how to leverage logs to investigate, troubleshoot issues, debug applications, and keep servers reliable at all times.

_config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
markdown: kramdown
2+
theme: null

_layouts/default.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>{{ page.title }}</title>
6+
</head>
7+
<body>
8+
<nav>
9+
<a href="index.html">Home</a> |
10+
<a href="about.html">About</a> |
11+
<a href="contact.html">Contact</a>
12+
</nav>
13+
<hr>
14+
<main>
15+
{{ content }}
16+
</main>
17+
</body>
18+
</html>

0 commit comments

Comments
 (0)