Skip to content

Instantly share code, notes, and snippets.

@screamingmunch
Forked from auser/app.js
Created March 1, 2014 18:09
Show Gist options
  • Save screamingmunch/9294302 to your computer and use it in GitHub Desktop.
Save screamingmunch/9294302 to your computer and use it in GitHub Desktop.
// Develop our JS here
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Newsly clone</title>
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<link rel="stylesheet" href="script.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<!-- Develop our stuff here -->
</div>
<script src='https://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.min.js'>
</script>
<script src='https://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular-route.min.js'>
</script>
<script type="text/javascript" src="app.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment