-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
142 lines (138 loc) · 4.63 KB
/
demo.html
File metadata and controls
142 lines (138 loc) · 4.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="description"
content="Address website builder limitations with cutting-edge tech like Sketch-to-Code and Git-powered version control, while assessing LLMs' effectiveness in converting partial sketches into HTML and CSS."
/>
<meta
name="keywords"
content="Sketch-to-code, Design-to-code, Website Builder"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Demo</title>
<link
href="https://fonts.googleapis.com/css?family=Google+Sans|Noto+Sans|Castoro"
rel="stylesheet"
/>
<link rel="stylesheet" href="./static/css/bulma.min.css" />
<link rel="stylesheet" href="./static/css/bulma-carousel.min.css" />
<link rel="stylesheet" href="./static/css/bulma-slider.min.css" />
<link rel="stylesheet" href="./static/css/fontawesome.all.min.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css"
/>
<link rel="stylesheet" href="./static/css/index.css" />
<link rel="icon" href="./static/images/favicon.svg" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script defer src="./static/js/fontawesome.all.min.js"></script>
<script src="./static/js/bulma-carousel.min.js"></script>
<script src="./static/js/bulma-slider.min.js"></script>
<script src="./static/js/index.js"></script>
</head>
<body>
<section class="section">
<div class="container is-max-desktop content">
<h2 class="title is-3">Demo</h2>
By extending
<a src="https://github.com/GrapesJS/grapesjs">GrapesJS</a>, an
open-source website builder, we create a website builder with our
proposed solutions:
<ol>
<li>Frontend UI Generation</li>
<li>Plugins-of-Plugins Systems</li>
<li>HTML Importation System</li>
<li>Automated Documentation Generation</li>
</ol>
<h2 class="title is-4">Frontend UI Generation from Full Design</h2>
<video
id="teaser"
autoplay=""
muted=""
loop=""
playsinline=""
controls=""
height="100%"
>
<source
src="https://github.com/user-attachments/assets/cf34c212-efee-4e42-9f90-bed627bdb7ba"
type="video/mp4"
/>
</video>
<h2 class="title is-4">Frontend UI Generation from Partial Sketch</h2>
<video
id="teaser"
autoplay=""
muted=""
loop=""
playsinline=""
controls=""
height="100%"
>
<source
src="https://github.com/user-attachments/assets/3ca65375-9732-47b1-964c-8c32e7926723"
type="video/mp4"
/>
</video>
<h2 class="title is-4">Plugins-of-plugins System</h2>
<video
id="teaser"
autoplay=""
muted=""
loop=""
playsinline=""
controls=""
height="100%"
>
<source
src="https://github.com/user-attachments/assets/cc4258f0-43e3-4120-872b-756c8de89934"
type="video/mp4"
/>
</video>
<h2 class="title is-4">HTML Importation System</h2>
<video
id="teaser"
autoplay=""
muted=""
loop=""
playsinline=""
controls=""
height="100%"
>
<source
src="https://github.com/user-attachments/assets/9afdf52c-21e9-4376-9a19-f16fe1c1023d"
type="video/mp4"
/>
</video>
<h2 class="title is-4">HTML Exportation System (Show Source Code)</h2>
<video
id="teaser"
autoplay=""
muted=""
loop=""
playsinline=""
controls=""
height="100%"
>
<source
src="https://github.com/user-attachments/assets/66d9b33c-6050-4671-a5a8-adbc68f106c8"
type="video/mp4"
/>
</video>
<h2 class="title is-4">Automated Documentation Generation</h2>
<p>
By using <a src="https://fastapi.tiangolo.com/">FastAPI</a>, we have
<b>automatically generated OpenAPI documentation</b> that can be
accessed through the route “/docs” in the server. This generation is
possible as FastAPI is based on the OpenAPI specification.
</p>
<img
src="./static/images/fastapi-doc.png"
alt="Automated Documentaiton Generation"
/>
</div>
</section>
</body>
</html>