38 lines
847 B
HTML
38 lines
847 B
HTML
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="content-security-policy" content="
|
|
base-uri 'self';
|
|
default-src 'none';
|
|
script-src 'self' https://cdnjs.cloudflare.com;
|
|
style-src 'self'
|
|
'sha256-ru2GY2rXeOf7PQX5LzK3ckNo21FCDUoRc2f3i0QcD1g='
|
|
;
|
|
font-src 'self' data:;
|
|
connect-src 'self';
|
|
img-src 'self' blob:;
|
|
form-action 'none';
|
|
">
|
|
|
|
<title>Readme Image Generator</title>
|
|
<link rel="icon" href="favicon.png">
|
|
|
|
<link rel="stylesheet" href="styles/readmeImages.css">
|
|
|
|
<script src="scripts/requireConfig.js"></script>
|
|
|
|
<script
|
|
data-main="scripts/readmeImages"
|
|
src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.5/require.min.js"
|
|
integrity="sha256-0SGl1PJNDyJwcV5T+weg2zpEMrh7xvlwO4oXgvZCeZk="
|
|
crossorigin="anonymous"
|
|
></script>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<noscript>This tool requires Javascript!</noscript>
|
|
|
|
</body>
|
|
</html>
|