51 lines
1.9 KiB
Plaintext
51 lines
1.9 KiB
Plaintext
@*
|
|
For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
|
|
*@
|
|
@{
|
|
Layout = "_LooperLayout";
|
|
}
|
|
|
|
@section Style {
|
|
<link rel="stylesheet" href="~/assets/vendor/datatables.net-responsive-bs4/css/responsive.bootstrap4.min.css">
|
|
}
|
|
|
|
@section Script {
|
|
<script src="~/assets/vendor/sortablejs/Sortable.min.js"></script>
|
|
<script src="~/assets/vendor/nestable2/jquery.nestable.min.js"></script>
|
|
<script src="~/assets/javascript/custom/dashboard.js" asp-append-version="true"></script>
|
|
<script>
|
|
const numberInput = document.getElementById('myNumberInput');
|
|
numberInput.addEventListener('input', function (event) {
|
|
const value = event.target.value;
|
|
const formattedValue = value.replace(/\D/g, '').replace(/\B(?=(\d{3})+(?!\d))/g, ',');
|
|
event.target.value = formattedValue;
|
|
});
|
|
</script>
|
|
}
|
|
|
|
<!-- .page-inner -->
|
|
<div class="page-inner">
|
|
<!-- .page-title-bar -->
|
|
<header class="page-title-bar">
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item active">
|
|
<a href="#"><i class="breadcrumb-icon fa fa-angle-left mr-2"></i>Dashboard</a>
|
|
</li>
|
|
</ol>
|
|
</nav>
|
|
<h1 class="page-title"> 社群平台排行榜 </h1>
|
|
</header><!-- /.page-title-bar -->
|
|
<!-- .page-section -->
|
|
<div class="page-section">
|
|
<!-- .section-block -->
|
|
<div class="section-block" style="display: none;">
|
|
<h2 class="section-title"> Nestable </h2>
|
|
<p class="text-muted"> Drag & drop hierarchical list with mouse and touch compatibility. </p>
|
|
</div><!-- /.section-block -->
|
|
<!-- grid row -->
|
|
<div class="row" id="card_group">
|
|
</div><!-- /grid row -->
|
|
</div><!-- /.page-section -->
|
|
</div><!-- /.page-inner -->
|