|
|
|
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 { addVocab } from '/scripts/japanese.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("Japanese Language"));
|
|
|
|
heading.append(addParagraph("Philip Osztromok"));
|
|
|
|
|
|
|
|
main.append(addHeader("WEEK 16 - 21st June 2024"))
|
|
|
|
main.append(addImageWithCaption("./images/Lesson15_A.png", "More vocaulary."))
|
|
|
|
main.append(addImageWithCaption("./images/Lesson15_B.png", "Conversation - this is my....."))
|
|
|
|
main.append(addImageWithCaption("./images/Lesson15_C.png", "Conversation - this is my....."))
|
|
|
|
|
|
|
|
|
|
|
|
main.append(addSubHeader("Writing Practice"))
|
|
|
|
main.append(addImageWithCaption("./images/HW_Lesson15_A.jpg", "Introducing Rose!"))
|
|
|
|
main.append(addParagraph("Some phrases introducing my sister."))
|
|
|
|
main.append(addVocab("これは私の姉です", "This is my older sister."))
|
|
|
|
main.append(addVocab("かのじょ の なまえ は ローズ です", "Her name is Rose"))
|
|
|
|
main.append(addVocab("かのじょ は りびんぐすとん に すんでいます", "She lives in Livingstone."))
|
|
|
|
main.append(vocab("ローズはスコットランド人です", "Rose is Scottish"))
|
|
|
|
|
|
|
|
addSidebar("japanese");
|