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.
30 lines
1.1 KiB
30 lines
1.1 KiB
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'; |
|
import { global_menu } from '/scripts/grid_layout1.js'; |
|
import { local_menu } from '/scripts/linux.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("Learn Bash Scripting")); |
|
heading.append(addParagraph("Scott Simpson - LinkedIn Learning - September 2022")); |
|
heading.append(addParagraph("Chapter 3 - BASH CONTROL STRUCTURES")); |
|
|
|
main.append(addHeader("Conditional Statements with the \"if\" Keyword")); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
addSidebar("linux");
|
|
|