Toggle navigation
Toggle navigation
This project
Loading...
Sign in
임승현
/
Multiplex_Ticketing_Platform
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
임승현
2022-05-16 21:47:01 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
33b291c28bc340555993e24a5aa65c13a49c513e
33b291c2
1 parent
395db84d
Add Template Module
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
MapAPI/template.js
MapAPI/template.js
0 → 100644
View file @
33b291c
module
.
exports
=
{
html
:
function
(
title
,
style
,
list
,
body
,
control
){
return
`
<!doctype html>
<html>
<head>
<title>WEB -
${
title
}
</title>
<meta charset="utf-8">
</head>
<body>
<h1><a href="/">WEB</a></h1>
<div id="map" style=
${
style
}
></div>
${
list
}
${
control
}
${
body
}
<p></p>
</body>
</html>
`
;
}
}
\ No newline at end of file
Please
register
or
login
to post a comment