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'; 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"));; 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");