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.
39 lines
1.4 KiB
39 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 { addVocab, homework_menu } from '/scripts/japanese.js';
|
||
|
import { menu } from '/scripts/web_dev_buttons.js';
|
||
|
import { global_menu, local_menu } from '/scripts/grid_layout1.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("Japanese Verb Forms"));
|
||
|
main.append(addSubHeader("The masu form"));
|
||
|
main.append(addParagraph("The masu form indicates present tense and is the polite form. An example of this is"));
|
||
|
main.append(addVocab("wakarimasu", "I understand"))
|
||
|
|
||
|
main.append(addSubHeader("The masen form"));
|
||
|
|
||
|
|
||
|
main.append(addSubHeader("The nai form"));
|
||
|
|
||
|
|
||
|
main.append(addSubHeader("The tai form"));
|
||
|
|
||
|
|
||
|
main.append(addSubHeader("The te form"));
|
||
|
|
||
|
|
||
|
main.append(addSubHeader("The te iru form"));
|
||
|
|
||
|
|
||
|
addSidebar("japanese");
|