Skip to content

Instantly share code, notes, and snippets.

@adriatic
Last active April 27, 2016 19:18
Show Gist options
  • Save adriatic/499ef807699de2f5192a97cf2b3852d3 to your computer and use it in GitHub Desktop.
Save adriatic/499ef807699de2f5192a97cf2b3852d3 to your computer and use it in GitHub Desktop.
<template>
<section>
<h4>About</h4>
</section>
</template>
export class About {
}
<template>
<require from="./nav-bar.html"></require>
<nav-bar router.bind="router"></nav-bar>
<div class="page-host">
<router-view></router-view>
</div>
</template>
export class App {
configureRouter(config, router) {
config.title = 'Aida';
config.map([
{ route: ['help'], name: 'help', moduleId: 'help', nav: true, title: 'Help' },
{ route: ['file'], name: 'file', moduleId: 'file', nav: true, title: 'File' },
{ route: ['view'], name: 'view', moduleId: 'view', nav: true, title: 'View' },
{ route: ['edit'], name: 'edit', moduleId: 'edit', nav: true, title: 'Edit' },
{ route: ['theme'], name: 'theme', moduleId: 'theme', nav: true, title: 'Theme' },
{ route: ['', 'about'], name: 'about', moduleId: 'about', nav: true, title: 'About' }
]);
this.router = router;
}
}
<template>
<section>
<h4>Edit</h4>
</section>
</template>
export class Edit {
}
<template>
<section>
<h4>File</h4>
</section>
</template>
export class File {
}
<template>
<section>
<h4>Help</h4>
</section>
</template>
export class Help {
}
<!doctype html>
<html>
<head>
<title>Aurelia KendoUI bridge</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2016.1.226/styles/kendo.common.min.css">
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2016.1.226/styles/kendo.rtl.min.css">
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2016.1.226/styles/kendo.default.min.css">
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2016.1.226/styles/kendo.mobile.all.min.css">
<script src="https://kendo.cdn.telerik.com/2016.1.226/js/jszip.min.js"></script>
</head>
<body aurelia-app="main">
<h1>Loading...</h1>
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.6/system.js"></script>
<script src="https://rawgit.com/aurelia-ui-toolkits/aurelia-kendoui-bundles/0.3.5/config2.js"></script>
<script>
System.import('aurelia-bootstrapper');
</script>
</body>
</html>
export function configure(aurelia) {
aurelia.use
.standardConfiguration()
.developmentLogging()
.plugin('aurelia-kendoui-bridge', kendo => kendo.core());
aurelia.start().then(a => a.setRoot());
}
<template>
<ul ak-menu>
<li>
<a route-href="route: file">File</a>
</li>
<li>
<a route-href="route: edit">Edit</a>
</li>
<li>
<a route-href="route: view">View</a>
</li>
<li>
<a route-href="route: theme">Theme</a>
</li>
<li>
<a route-href="route: help">Help</a>
</li>
<li>
<a route-href="route: about">About</a>
</li>
</ul>
</template>
export class NavBar {
}
<template>
<section>
<h4>Theme</h4>
</section>
</template>
export class Theme {
}
<template>
<section>
<h4>View</h4>
</section>
</template>
export class View {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment