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.
25 lines
1.4 KiB
25 lines
1.4 KiB
3 months ago
|
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/programming.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("Docker For Windows"));
|
||
|
heading.append(addParagraph("David Davis - LinkedIn Learning - November 2018"));
|
||
|
heading.append(addParagraph("Chapter 5 - CONCLUSION"));;
|
||
|
global.append(global_menu())
|
||
|
local.append(local_menu("dockerforwindows"));
|
||
|
|
||
|
main.append(addHeader("NEXT STEPS"))
|
||
|
main.append(addParagraph("In the first chapter, I mentioned that I thought VMs would be easier to use than containers, partly because I didn't know much about containers at that point so it would be nice to include a little bit here about whether studying the course has changed my mind on that!"))
|
||
|
|
||
|
addSidebar("programming");
|