create-sip 0.0.15 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -1
- package/create-sip.js +68 -10
- package/javascript/app.js +0 -0
- package/javascript/index.html +20 -0
- package/javascript/style.css +10 -0
- package/manager.js +77 -5
- package/mockapi/README.md +1 -0
- package/mockapi/database.json +26 -0
- package/mockapi/hai-server.json +4 -0
- package/mockapi/package.json +15 -0
- package/package.json +1 -1
- package/webbootstrap/index.html +22 -0
- package/webbootstrap/style.css +0 -0
- package/webesbuildjs/README.md +1 -0
- package/webesbuildjs/bs-config.json +9 -0
- package/webesbuildjs/package.json +24 -0
- package/webesbuildjs/public/index.html +29 -0
- package/webesbuildjs/public/style.css +0 -0
- package/webesbuildjs/src/app.js +0 -0
- package/webesbuildts/README.md +1 -0
- package/webesbuildts/bs-config.json +9 -0
- package/webesbuildts/package.json +25 -0
- package/webesbuildts/public/index.html +29 -0
- package/webesbuildts/public/style.css +0 -0
- package/webesbuildts/src/app.ts +0 -0
- package/webnodejs/bs-config.json +9 -0
- package/webnodejs/package.json +17 -0
- package/webnodejs/src/app.js +0 -0
- package/webnodejs/src/index.html +18 -0
- package/webnodejs/src/style.css +0 -0
- package/webpage/index.html +9 -3
- package/webpage/style.css +10 -0
package/README.md
CHANGED
|
@@ -2,8 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
Simple projekct generator.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
* Simple webpage. index.html and style.css
|
|
6
|
+
* Webpage with Bootstrap with CDN.
|
|
7
|
+
* Webpage with CSS and JS file.
|
|
8
|
+
* Node.js project for webpage.
|
|
9
|
+
* ESBuild and Javascript project for webpage.
|
|
10
|
+
* ESBuild and Typescript project for webpage.
|
|
11
|
+
* Mock REST API server.
|
|
12
|
+
|
|
13
|
+
## Using
|
|
6
14
|
|
|
7
15
|
```bash
|
|
8
16
|
npm create sip@latest
|
|
9
17
|
```
|
|
18
|
+
|
|
19
|
+
* Write project name.
|
|
20
|
+
* Select project type.
|
package/create-sip.js
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
|
-
const {
|
|
3
|
+
const {
|
|
4
|
+
genWebpage,
|
|
5
|
+
genBootstrap,
|
|
6
|
+
genJavascript,
|
|
7
|
+
genNodejs,
|
|
8
|
+
genWebEsbuildJs,
|
|
9
|
+
genWebEsbuildTs,
|
|
10
|
+
genMockApi
|
|
11
|
+
} = require('./manager');
|
|
4
12
|
const prompts = require('prompts');
|
|
5
13
|
|
|
6
14
|
const questions = [
|
|
@@ -13,33 +21,83 @@ const questions = [
|
|
|
13
21
|
{
|
|
14
22
|
type: 'select',
|
|
15
23
|
name: 'type',
|
|
16
|
-
message: 'Project type
|
|
24
|
+
message: 'Project type: ',
|
|
17
25
|
choices: [
|
|
18
26
|
{
|
|
19
|
-
title: '
|
|
20
|
-
description: '
|
|
27
|
+
title: 'Webpage',
|
|
28
|
+
description: 'Simple webpage: index.html, style.css',
|
|
21
29
|
value: 'webpage'
|
|
22
30
|
},
|
|
23
31
|
{
|
|
24
|
-
title: '
|
|
25
|
-
description: '
|
|
32
|
+
title: 'Web Bootstrap',
|
|
33
|
+
description: 'Simple webpage with Bootstrap',
|
|
34
|
+
value: 'webbootstrap'
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
title: 'JavaScript',
|
|
38
|
+
description: 'Only index.html, style.css, app.js',
|
|
26
39
|
value: 'javascript'
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
title: 'Web Node.js',
|
|
43
|
+
description: 'Node.js project for webpage',
|
|
44
|
+
value: 'webnodejs'
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
title: 'ESBuild JavaScript',
|
|
48
|
+
description: 'Esbuild JavaScript webpage',
|
|
49
|
+
value: 'webesbuildjs'
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
title: 'ESBuild TypeScript',
|
|
53
|
+
description: 'Esbuild TypeScript webpage',
|
|
54
|
+
value: 'webesbuildts'
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
title: 'MockAPI',
|
|
58
|
+
description: 'API server with hai-server 0.0.4',
|
|
59
|
+
value: 'mockapi'
|
|
27
60
|
}
|
|
28
61
|
],
|
|
29
62
|
initial: 0
|
|
30
63
|
}
|
|
31
64
|
];
|
|
32
65
|
|
|
33
|
-
(async () => {
|
|
66
|
+
(async () => {
|
|
34
67
|
const res = await prompts(questions);
|
|
35
68
|
if(res.type === 'webpage') {
|
|
36
|
-
console.log('
|
|
69
|
+
console.log('Create a new webpage...');
|
|
37
70
|
genWebpage(res.name);
|
|
38
71
|
return;
|
|
39
72
|
}
|
|
73
|
+
if(res.type === 'webbootstrap') {
|
|
74
|
+
console.log('Create a new webpage with Bootstrap...');
|
|
75
|
+
genBootstrap(res.name);
|
|
76
|
+
return;
|
|
77
|
+
}
|
|
40
78
|
if(res.type === 'javascript') {
|
|
41
|
-
console.log('
|
|
42
|
-
|
|
79
|
+
console.log('Create a new javascript...');
|
|
80
|
+
genJavascript(res.name);
|
|
81
|
+
return;
|
|
82
|
+
}
|
|
83
|
+
if(res.type === 'webnodejs') {
|
|
84
|
+
console.log('Create a new webpage with Node.js...');
|
|
85
|
+
genNodejs(res.name);
|
|
86
|
+
return;
|
|
87
|
+
}
|
|
88
|
+
if(res.type === 'webesbuildjs') {
|
|
89
|
+
console.log('Create a new webpage with ESBuild and Javascript...');
|
|
90
|
+
genWebEsbuildJs(res.name);
|
|
91
|
+
return;
|
|
92
|
+
}
|
|
93
|
+
if(res.type === 'webesbuildts') {
|
|
94
|
+
console.log('Create a new webpage with ESBuild and Typescript...');
|
|
95
|
+
genWebEsbuildTs(res.name);
|
|
96
|
+
return;
|
|
97
|
+
}
|
|
98
|
+
if(res.type === 'mockapi') {
|
|
99
|
+
console.log('Create a new MockAPI server...');
|
|
100
|
+
genMockApi(res.name);
|
|
43
101
|
return;
|
|
44
102
|
}
|
|
45
103
|
|
|
File without changes
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>Sip</title>
|
|
7
|
+
<link rel="stylesheet" href="style.css">
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
<div class="container">
|
|
11
|
+
<h1>Sip projekt</h1>
|
|
12
|
+
<p>
|
|
13
|
+
This project generated sip generator.
|
|
14
|
+
</p>
|
|
15
|
+
</div>
|
|
16
|
+
|
|
17
|
+
<script src="app.js"></script>
|
|
18
|
+
|
|
19
|
+
</body>
|
|
20
|
+
</html>
|
package/manager.js
CHANGED
|
@@ -4,16 +4,88 @@ const dir = path.join(__dirname);
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
const genWebpage = (target) => {
|
|
7
|
-
copyDir(
|
|
7
|
+
copyDir(`${dir}/webpage`, target);
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
+
const genBootstrap = (target) => {
|
|
11
|
+
copyDir(`${dir}/webbootstrap`, target);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const genJavascript = (target) => {
|
|
15
|
+
copyDir(`${dir}/javascript`, target);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
const genNodejs = (target) => {
|
|
19
|
+
copyDir(`${dir}/webnodejs`, target);
|
|
20
|
+
updatePackageName(`${target}/package.json`, target);
|
|
21
|
+
console.log('Web client created');
|
|
22
|
+
console.log('Run next commands:');
|
|
23
|
+
console.log('npm install');
|
|
24
|
+
console.log('npm start');
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
const genWebEsbuildJs = (target) => {
|
|
28
|
+
copyDir(`${dir}/webesbuildjs`, target);
|
|
29
|
+
updatePackageName(`${target}/package.json`, target);
|
|
30
|
+
console.log('ESBuild client created with Javascript');
|
|
31
|
+
console.log('Run next commands:');
|
|
32
|
+
console.log('npm install');
|
|
33
|
+
console.log('npm run dev');
|
|
34
|
+
console.log('npm start');
|
|
35
|
+
console.log('If you want to build, run:');
|
|
36
|
+
console.log('npm run build');
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
const genWebEsbuildTs = (target) => {
|
|
40
|
+
copyDir(`${dir}/webesbuildts`, target);
|
|
41
|
+
updatePackageName(`${target}/package.json`, target);
|
|
42
|
+
console.log('ESBuild client created with Typescript');
|
|
43
|
+
console.log('Run next commands:');
|
|
44
|
+
console.log('npm install');
|
|
45
|
+
console.log('npm run dev');
|
|
46
|
+
console.log('npm start');
|
|
47
|
+
console.log('If you want to build, run:');
|
|
48
|
+
console.log('npm run build');
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
const genMockApi = (target) => {
|
|
52
|
+
copyDir(`${dir}/mockapi`, target);
|
|
53
|
+
updatePackageName(`${target}/package.json`, target);
|
|
54
|
+
console.log('MockAPI with hai-server 0.0.4');
|
|
55
|
+
console.log('Run next commands:');
|
|
56
|
+
console.log('npm install');
|
|
57
|
+
console.log('npm start');
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
const updatePackageName = (filePath, newName) => {
|
|
61
|
+
const content = JSON.parse(fs.readFileSync(filePath, 'utf-8'));
|
|
62
|
+
if (content.name) {
|
|
63
|
+
content.name = newName;
|
|
64
|
+
fs.writeFileSync(filePath, JSON.stringify(content, null, 2));
|
|
65
|
+
}
|
|
66
|
+
};
|
|
67
|
+
|
|
10
68
|
const copyDir = (srcDir, destDir) => {
|
|
11
69
|
fs.mkdirSync(destDir, { recursive: true });
|
|
12
|
-
|
|
13
|
-
|
|
70
|
+
|
|
71
|
+
for (const item of fs.readdirSync(srcDir)) {
|
|
72
|
+
const srcPath = path.join(srcDir, item);
|
|
73
|
+
const destPath = path.join(destDir, item);
|
|
74
|
+
|
|
75
|
+
if (fs.statSync(srcPath).isDirectory()) {
|
|
76
|
+
copyDir(srcPath, destPath);
|
|
77
|
+
} else {
|
|
78
|
+
fs.copyFileSync(srcPath, destPath);
|
|
79
|
+
}
|
|
14
80
|
}
|
|
15
|
-
}
|
|
81
|
+
};
|
|
16
82
|
|
|
17
83
|
module.exports = {
|
|
18
|
-
genWebpage
|
|
84
|
+
genWebpage,
|
|
85
|
+
genBootstrap,
|
|
86
|
+
genJavascript,
|
|
87
|
+
genNodejs,
|
|
88
|
+
genWebEsbuildJs,
|
|
89
|
+
genWebEsbuildTs,
|
|
90
|
+
genMockApi
|
|
19
91
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Sinto Fake REST API
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"employees": [
|
|
3
|
+
{
|
|
4
|
+
"id": 1,
|
|
5
|
+
"name": "Strong Steven",
|
|
6
|
+
"city": "Szeged",
|
|
7
|
+
"salary": 395
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"id": 2,
|
|
11
|
+
"name": "John Doe",
|
|
12
|
+
"city": "New York",
|
|
13
|
+
"salary": 392
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
"positions": [
|
|
17
|
+
{
|
|
18
|
+
"id": 1,
|
|
19
|
+
"name": "Manager"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"id": 2,
|
|
23
|
+
"name": "Developer"
|
|
24
|
+
}
|
|
25
|
+
]
|
|
26
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mockapi",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Mock REST API server",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"start": "hai-server database.json"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [],
|
|
10
|
+
"author": "",
|
|
11
|
+
"license": "ISC",
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"hai-server": "^0.0.4"
|
|
14
|
+
}
|
|
15
|
+
}
|
package/package.json
CHANGED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>Sip</title>
|
|
7
|
+
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
|
8
|
+
<link rel="stylesheet" href="style.css">
|
|
9
|
+
|
|
10
|
+
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
|
|
11
|
+
</head>
|
|
12
|
+
<body>
|
|
13
|
+
|
|
14
|
+
<div class="container">
|
|
15
|
+
<h1>Sip projekt</h1>
|
|
16
|
+
<p>
|
|
17
|
+
This project with Bootstrap. Generated by sip.
|
|
18
|
+
</p>
|
|
19
|
+
</div>
|
|
20
|
+
|
|
21
|
+
</body>
|
|
22
|
+
</html>
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Sinto ESBuild client
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "sinto-project",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "A project created by the Sinto command",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
7
|
+
"start": "browser-sync start --config bs-config.json",
|
|
8
|
+
"dev": "npx esbuild src/app.js --outdir=public --bundle --watch",
|
|
9
|
+
"build:src": "npx esbuild src/app.js --outdir=dist --bundle --minify",
|
|
10
|
+
"build:htmlcss": "cpx public/**/*.{html,css,png} dist",
|
|
11
|
+
"build:bscss": "cpx node_modules/bootstrap/dist/css/bootstrap.css dist",
|
|
12
|
+
"build:bsjs": "cpx node_modules/bootstrap/dist/js/bootstrap.js dist",
|
|
13
|
+
"build": "npm-run-all build:*"
|
|
14
|
+
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"bootstrap": "^5.3.3"
|
|
17
|
+
},
|
|
18
|
+
"devDependencies": {
|
|
19
|
+
"esbuild": "^0.23.1",
|
|
20
|
+
"browser-sync": "^3.0.2",
|
|
21
|
+
"cpx": "^1.5.0",
|
|
22
|
+
"npm-run-all": "^4.1.5"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
|
|
2
|
+
<!--
|
|
3
|
+
File: index.html
|
|
4
|
+
Author: Vezetéknév Keresztnév
|
|
5
|
+
Copyright: 2024, Vezetéknév Keresztnév
|
|
6
|
+
Group: Csoportnév
|
|
7
|
+
Date: 2024-12-02
|
|
8
|
+
Github: https://github.com/valami12345/
|
|
9
|
+
Licenc: MIT
|
|
10
|
+
-->
|
|
11
|
+
|
|
12
|
+
<!DOCTYPE html>
|
|
13
|
+
<html lang="hu">
|
|
14
|
+
<head>
|
|
15
|
+
<meta charset="UTF-8">
|
|
16
|
+
<title>Sinto esbuild</title>
|
|
17
|
+
<link rel="stylesheet" href="bootstrap.css">
|
|
18
|
+
<link rel="stylesheet" href="style.css">
|
|
19
|
+
</head>
|
|
20
|
+
<body>
|
|
21
|
+
<div class="container">
|
|
22
|
+
<h1>Sinto</h1>
|
|
23
|
+
<p>The website generated by Sinto.</p>
|
|
24
|
+
|
|
25
|
+
</div>
|
|
26
|
+
<script src="bootstrap.js"></script>
|
|
27
|
+
<script src="app.js"></script>
|
|
28
|
+
</body>
|
|
29
|
+
</html>
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Sinto ESBuild client
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "sinto-project",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "A project created by the Sinto command",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
7
|
+
"start": "browser-sync start --config bs-config.json",
|
|
8
|
+
"preview": "browser-sync start --server dist",
|
|
9
|
+
"dev": "npx esbuild src/**/*.ts --outdir=public --bundle --watch",
|
|
10
|
+
"build:src": "npx esbuild src/app.ts --outdir=dist --bundle --minify",
|
|
11
|
+
"build:htmlcss": "cpx public/**/*.{html,css,png} dist",
|
|
12
|
+
"build:bscss": "cpx node_modules/bootstrap/dist/css/bootstrap.css dist",
|
|
13
|
+
"build:bsjs": "cpx node_modules/bootstrap/dist/js/bootstrap.js dist",
|
|
14
|
+
"build": "npm-run-all build:*"
|
|
15
|
+
},
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"bootstrap": "^5.3.3"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"esbuild": "^0.23.1",
|
|
21
|
+
"browser-sync": "^3.0.2",
|
|
22
|
+
"cpx": "^1.5.0",
|
|
23
|
+
"npm-run-all": "^4.1.5"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
|
|
2
|
+
<!--
|
|
3
|
+
File: index.html
|
|
4
|
+
Author: Vezetéknév Keresztnév
|
|
5
|
+
Copyright: 2024, Vezetéknév Keresztnév
|
|
6
|
+
Group: Csoportnév
|
|
7
|
+
Date: 2024-12-02
|
|
8
|
+
Github: https://github.com/valami12345/
|
|
9
|
+
Licenc: MIT
|
|
10
|
+
-->
|
|
11
|
+
|
|
12
|
+
<!DOCTYPE html>
|
|
13
|
+
<html lang="hu">
|
|
14
|
+
<head>
|
|
15
|
+
<meta charset="UTF-8">
|
|
16
|
+
<title>Sinto esbuild</title>
|
|
17
|
+
<link rel="stylesheet" href="bootstrap.css">
|
|
18
|
+
<link rel="stylesheet" href="style.css">
|
|
19
|
+
</head>
|
|
20
|
+
<body>
|
|
21
|
+
<div class="container">
|
|
22
|
+
<h1>Sinto</h1>
|
|
23
|
+
<p>The website generated by Sinto.</p>
|
|
24
|
+
|
|
25
|
+
</div>
|
|
26
|
+
<script src="bootstrap.js"></script>
|
|
27
|
+
<script src="app.js"></script>
|
|
28
|
+
</body>
|
|
29
|
+
</html>
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "webnodejs",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"scripts": {
|
|
5
|
+
"start": "browser-sync start --config bs-config.json"
|
|
6
|
+
},
|
|
7
|
+
"keywords": [],
|
|
8
|
+
"author": "",
|
|
9
|
+
"license": "ISC",
|
|
10
|
+
"description": "",
|
|
11
|
+
"devDependencies": {
|
|
12
|
+
"browser-sync": "^3.0.3"
|
|
13
|
+
},
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"bootstrap": "^5.3.3"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>Sip</title>
|
|
7
|
+
<link rel="stylesheet" href="bootstrap.css">
|
|
8
|
+
<link rel="stylesheet" href="style.css">
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
11
|
+
<div class="container">
|
|
12
|
+
<h1>Sip projekt</h1>
|
|
13
|
+
<p>
|
|
14
|
+
This is a Node.js project for webpage. Generated by sip.
|
|
15
|
+
</p>
|
|
16
|
+
</div>
|
|
17
|
+
</body>
|
|
18
|
+
</html>
|
|
File without changes
|
package/webpage/index.html
CHANGED
|
@@ -1,13 +1,19 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<html lang="
|
|
2
|
+
<html lang="en">
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<title>
|
|
6
|
+
<title>Sip</title>
|
|
7
|
+
<link rel="stylesheet" href="style.css">
|
|
7
8
|
</head>
|
|
8
9
|
<body>
|
|
9
10
|
|
|
10
|
-
<
|
|
11
|
+
<div class="container">
|
|
12
|
+
<h1>Sip projekt</h1>
|
|
13
|
+
<p>
|
|
14
|
+
This project generated sip generator.
|
|
15
|
+
</p>
|
|
16
|
+
</div>
|
|
11
17
|
|
|
12
18
|
</body>
|
|
13
19
|
</html>
|