24 lines
892 B
HTML
24 lines
892 B
HTML
<div ng-controller="Umbraco.Installer.PackagesController" id="starterKits">
|
|
<h1>Install a starter website</h1>
|
|
|
|
<p>
|
|
Installing a starter website helps you learn how Umbraco works, and gives you a solid
|
|
and simple foundation to build on top of.
|
|
</p>
|
|
|
|
<small ng-if="!packages || packages.length == 0">Loading...</small>
|
|
|
|
<ul class="thumbnails">
|
|
<li class="span3" ng-repeat="pck in packages">
|
|
<a href ng-click="setPackageAndContinue(pck.id)" class="thumbnail">
|
|
<small>Loading...</small>
|
|
<img ng-src="https://our.umbraco.com{{pck.thumbnail}}?width=170" alt="{{pck.name}}">
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
|
|
<a href ng-click="setPackageAndContinue('00000000-0000-0000-0000-000000000000')" class="btn btn-link btn-link-reverse">
|
|
No thanks, I do not want to install a starter website
|
|
</a>
|
|
</div>
|