blog menu page & blog article page

This commit is contained in:
Nina Juresic
2017-10-23 15:54:25 +02:00
parent f21a22b539
commit 3ec0fe7455
3048 changed files with 241133 additions and 432 deletions

View File

@@ -0,0 +1,52 @@
'use strict';
var layout = require('./layout.js');
var short = require('./short');
var shortDuplicate = require('./shortDuplicate');
var items = ['short'];
var short = function() {
};
define(['app'], function (app) {
var directives = {};
directives.gps = function () {
return {
restrict: "E",
replace: true,
templateUrl: 'view/gps.html',
link: function (scope, element, attrs, interfacePanel) {
},
controller: function ($scope, $snapshot) {
}
};
};
directives.logo = function () {
return {
restrict: "E",
replace: true,
template: "<img src=\"img/image1.jpg\" />test</h1>",
link: function (scope, element, attrs, interfacePanel) {
},
controller: function ($scope, $snapshot) {
}
};
};
app.directive(directives);
});
//# sourceMappingURL=app.js.map