Merge finding-index.md into edit-index.html

It is unnecessary to have this two separate files.  Merge them into
one.  This way all information is delivered with just one click.
Also, the wiki gets even less clutter (there is few, or no, clutter in
~club wiki).

Also make small changes to edit-index.html file.

Signed-off-by: keyboardan <keyboardan@tilde.club>
This commit is contained in:
keyboardan
2026-08-10 20:08:56 +00:00
committed by deepend
parent 49bcc06b56
commit 360337a188
2 changed files with 29 additions and 23 deletions

View File

@@ -1,10 +1,35 @@
--- ---
title: Editing your index.html file title: Editing your index.html file
author: vielmetti author:
- vielmetti
- keyboardan
category: tutorials category: tutorials
--- ---
Type: `nano` index.html to open your index.html file and begin editing ## How to find your index.html
There are some basic command line commands you'll want to Google and learn, but for this tutorial you only need a few:
### Basic commands
`ls` = list files and folders in current directory
`cd` = change directories
`vim`, `emacs`, `nano` = a text editor
### Put those commands into practice
Type: `ls` to list your current directory; you should see a directory listed as "public_html"
Type: `cd public_html` to change into the "public_html" directory
Type: `ls` to list the current directory again; you should see your index.html file
## How to edit index.html with a simple text editor
Type: `nano index.html` to open your index.html file and begin editing
![screenshot of the nano editor](https://tilde.club/~annika/static/nano.png) ![screenshot of the nano editor](https://tilde.club/~annika/static/nano.png)
@@ -16,7 +41,6 @@ You'll be asked if you want to save; say y and [return] to return to the command
Refresh your tilde page in your browser to see your new website Refresh your tilde page in your browser to see your new website
Note: If at any time you feel you made a mistake in editing, you can exit and n to not save. Note: If at any time you feel you made a mistake in editing, you can exit and n to not save
There's more info here about the nano editor; if you're familiar with There's more info here about the nano editor; if you're familiar with emacs or vim they are here too
emacs or vim they are here too.

View File

@@ -1,18 +0,0 @@
---
title: Finding your index.html
category: tutorials
---
There are some basic command line commands you'll want to Google and learn, but for this tutorial you only need a few:
`ls` = list files and folders in current directory
`cd` = change directories
`vim`, `emacs`, `nano` = a text editor
Type: `ls` to see where you are; you should see a directory called "public_html"
Type: `cd public_html` to browse into that folder
Type: `ls` to see where you are; you should see your index.html file