add notes + meta tag for bigtime SEO
This commit is contained in:
@@ -3,6 +3,8 @@
|
|||||||
<head>
|
<head>
|
||||||
<title>NetBSD Club</title>
|
<title>NetBSD Club</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<meta name="description" content="Netbsd.club is a club for NetBSD users and people interested in desert island software">
|
||||||
|
<meta name="keywords" content="netbsd perl dessert islands">
|
||||||
<link href="netbsdclub.css" rel="stylesheet" />
|
<link href="netbsdclub.css" rel="stylesheet" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
@@ -11,7 +13,8 @@
|
|||||||
<div class="links">
|
<div class="links">
|
||||||
[ <a href="blog.html">blog</a> ] -
|
[ <a href="blog.html">blog</a> ] -
|
||||||
[ <a href="https://codeberg.org/netbsd-club">projects</a> ] -
|
[ <a href="https://codeberg.org/netbsd-club">projects</a> ] -
|
||||||
[ <a href="about.html">about</a> ]
|
[ <a href="about.html">about</a> ] -
|
||||||
|
[ <a href="notes.html">notes</a> ]
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
27
notes.html
Normal file
27
notes.html
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Notes</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<link href="netbsdclub.css" rel="stylesheet" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="hero">
|
||||||
|
<h1>Notes</h1>
|
||||||
|
<p>
|
||||||
|
A collection of notes and observations related to NetBSD. In no particular ordering.
|
||||||
|
</p>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<code>/tmp</code> is meant to be cleaned on reboot, <code>/var/tmp</code> is meant to persist.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
To make a Perl script into a <code>rc.d</code> daemon, you need to add <code>&</code> to the end of <code>command_args</code>, and track it's PID pidfile stored in the rcvar <code>pidfile</code>.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
[ <a href="/">Go home</a> ]
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user