@superflycss/cli
Version:
SuperflyCSS Command Line Interface
31 lines (25 loc) • 798 B
JavaScript
module.exports = () => {
return `
<html lang="en">
<head>
<title>Protype X</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Prototype X">
<meta name="author" content="Ole Ersoy">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Font Bootstrap
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css">
-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Test Stylesheet -->
<link rel="stylesheet" type="text/css" href="../css/index.css">
</head>
<body>
<h1>Start Prototyping!</h1>
</body>
</html>
`
}