Skip to content

Instantly share code, notes, and snippets.

@maptastik
Created July 10, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maptastik/8e1f55c2f1b68397fe1c to your computer and use it in GitHub Desktop.
Save maptastik/8e1f55c2f1b68397fe1c to your computer and use it in GitHub Desktop.
Basic web project boilerplate
@echo off &setlocal
md css 2>nul
md js 2>nul
md img 2>nul
(
echo(^<!doctype html^>^<html lang="en"^>
echo( ^<head^>^<meta charset="UTF-8"^>
echo( ^<title^>^Document^</title^>
echo( ^<link type="text/css" href="./css/style.css"^>
echo( ^</head^>
echo( ^<body^>^</body^>
echo( ^</html^>
)>index.html
echo(>css\style.css
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment