added empty css/js files.

pull/1128/head
Halil ibrahim Kalkan 6 years ago
parent 7d764f3595
commit 08f4320282

@ -3,7 +3,14 @@
@inherits MyProjectNamePageBase
@model IndexModel
@section styles {
<link href="~/pages/index.css" rel="stylesheet" />
<abp-style-bundle>
<abp-style src="/Pages/Index.css" />
</abp-style-bundle>
}
@section scripts {
<abp-script-bundle>
<abp-script src="/Pages/Index.js" />
</abp-script-bundle>
}
<abp-card>
<abp-card-header>@L["Welcome"]</abp-card-header>
@ -13,7 +20,7 @@
{
<p><a abp-button="Primary" href="/Account/Login"><i class="fa fa-sign-in"></i> @L["Login"]</a></p>
}
<hr/>
<hr />
<p class="text-right"><a href="https://abp.io?ref=tmpl" target="_blank">abp.io</a></p>
</abp-card-body>
</abp-card>

@ -0,0 +1,3 @@
$(function () {
abp.log.debug('Index.js initialized!');
});
Loading…
Cancel
Save