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.
|
|
|
import { addBanner, addArticle, addTitle, addHeader, addParagraph, addSubHeader } from '/scripts/article.js';
|
|
|
|
import { addInset, addInsetList, addInsetCodeListing, addInsetBulletList } from '/scripts/inset.js';
|
|
|
|
import { addImageWithCaption, addButtonGroup } from '/scripts/visuals.js';
|
|
|
|
import { addSidebar} from '/scripts/sidebar.js';
|
|
|
|
import { addSyntax } from '/scripts/code.js';
|
|
|
|
import { menu } from '/scripts/web_dev_buttons.js';
|
|
|
|
|
|
|
|
const heading = document.querySelector(".heading");
|
|
|
|
const global = document.querySelector(".global_menu");
|
|
|
|
const local = document.querySelector(".local_menu");
|
|
|
|
const sidebar = document.querySelector(".sidebar");
|
|
|
|
const main = document.querySelector(".main_content");
|
|
|
|
|
|
|
|
heading.append(addTitle("Advanced Linux: The Linux Kernel"));
|
|
|
|
heading.append(addParagraph("Kevin Dankwardt - LinkedIn Learning - April 2020"));
|
|
|
|
heading.append(addParagraph("Chapter 2 - BOOTING"));
|
|
|
|
|
|
|
|
main.append(addHeader("Understanding the Bootloader GRUB"));
|
|
|
|
|
|
|
|
addSidebar("linux");
|