first commit
This commit is contained in:
commit
9f031f4577
17 changed files with 423 additions and 0 deletions
3
static/sass/style.scss
Normal file
3
static/sass/style.scss
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
main {
|
||||
background-color: red;
|
||||
}
|
||||
15
static/templates/main.html
Normal file
15
static/templates/main.html
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="color-scheme" content="light dark">
|
||||
<link rel="stylesheet" href="../sass/style.scss">
|
||||
<title>Hello world!</title>
|
||||
</head>
|
||||
<body>
|
||||
<main class="container">
|
||||
<h1>Hello world!</h1>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
15
static/ts/index.ts
Normal file
15
static/ts/index.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
// testing file
|
||||
|
||||
interface Point {
|
||||
x: number;
|
||||
y: number;
|
||||
name: string;
|
||||
}
|
||||
|
||||
const p: Point = {
|
||||
x: 100,
|
||||
y: 200,
|
||||
name: "foo",
|
||||
};
|
||||
|
||||
console.log(p);
|
||||
Loading…
Add table
Add a link
Reference in a new issue