You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
1.2 KiB
16 lines
1.2 KiB
import { addBanner, addArticle, addHeader, addParagraph, addSubHeader } from '/scripts/article.js'; |
|
import { addInset, addInsetList, addInsetCodeListing, addInsetBulletList } from '/scripts/inset.js'; |
|
import { addImageWithCaption, addButtonGroup } from '/scripts/visuals.js'; |
|
|
|
const main = document.querySelector("main"); |
|
main.append(addBanner("Raspberry Pi Git Server", "Personal Project", "April 2022")) |
|
main.append(addArticle()) |
|
const article = document.querySelector("article") |
|
article.append(addHeader("Install the Raspberry Pi Git Server")) |
|
article.append(addParagraph("There are several steps that are very important for a project like this, but because I am setting this up on a Raspberry Pi that I am already using as a development machine and I am already using Git on my Windows machine, I have been able to skip these. If you are doing this from scratch, you will need to make sure that these steps are carried out.")) |
|
article.append(addInsetBulletList(["Set up ssh on your Raspberry Pi and make sure that you can access it via an ssh client such as putty or kitty.", "Install Git on the machine you will be using to connect to the Pi from or any machine where you will be using the "])) |
|
|
|
|
|
|
|
|
|
main.append(addButtonGroup(["Home", "/index.html"]))
|
|
|