23 lines
383 B
JavaScript
23 lines
383 B
JavaScript
module.exports = listString =>
|
|
`
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<h2>Haxor Newz</h2>
|
|
<h3>"uber l337"</h3>
|
|
<table>
|
|
<thead>
|
|
<th>Title</th>
|
|
<th>Link</th>
|
|
</thead>
|
|
${listString}
|
|
<tfoot>
|
|
ATTACK!
|
|
</tfoot>
|
|
</table>
|
|
<footer>Ⓐ anarchy planet</footer>
|
|
</body>
|
|
</html>
|
|
|
|
`
|