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, addHeader, addParagraph, addSubHeader } from '/scripts/article.js';
|
|
|
|
import { addInset, addInsetList, addInsetCodeListing, addInsetBulletList } from '/scripts/inset.js';
|
|
|
|
import { addImageWithCaption, addButtonGroup } from '/scripts/visuals.js';
|
|
|
|
import { menu } from "/scripts/buttongroups.js";
|
|
|
|
|
|
|
|
const main = document.querySelector("main");
|
|
|
|
main.append(addBanner("<a href='https://www.linkedin.com/learning/linux-storage-systems'>Linux Storage Systems</a>", "Kevin Dankwardt", "Disk Partitions, Formatting and Mounting"))
|
|
|
|
main.append(addArticle())
|
|
|
|
const article = document.querySelector("article")
|
|
|
|
article.append(addHeader("Conclusion"))
|
|
|
|
article.append(addParagraph("Next Steps"))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
main.append(menu("storage"))
|