Download Blank template Watch live demo
Download A New Hope template Watch live demo
If you do not have a WimTV user, you can register here: create a WimTV account
After downloading the zip you can unzip all files in the folder where you want to create your Web TV. It can be the root of the site or a specific folder. You can start from one of the starter templates or using existing HTML pages, by importing .js and .css files of the framework in the < head > of the page
<link rel="stylesheet" href="getWim/css/getWim.css">
<script src="getWim/getWim.js"></script>
and initializing the GetWim AngularJS app using the following script:
<script>
angular.module('getWimTest', ['getWim']).run(['getWimConfig', function (getWimConfig) {
getWimConfig.customUser = 'demouser';
}]);
</script>
IMPORTANT - in the script you have to set:
This is an html starter page with all parameters set correctly
<!doctype html>
<html ng-app="getWimTest">
<head>
<link rel="stylesheet" href="getWim/css/getWim.css">
<script src="getwim/getWim.js"></script>
<script>
angular.module('getWimTest', ['getWim']).run(['getWimConfig', function(getWimConfig) {
getWimConfig.customUser = 'demouser';
}]);
</script>
</head>
<body>
<h1>Hello, GetWim!</h1>
</body>
</html>
Using the GetWim components you can easily create your layout. An example of WimTV Framework layout is the WimTV website.