2016-10-23 20:05:03 +08:00
|
|
|
@{
|
|
|
|
ViewBag.Title = "Icon";
|
|
|
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
|
|
|
}
|
|
|
|
@section css {
|
|
|
|
<link href="~/Content/css/fa.css" rel="stylesheet" />
|
2016-11-21 00:33:07 +08:00
|
|
|
<link href="~/Content/css/fa.responsive.css" rel="stylesheet" />
|
2016-10-23 20:05:03 +08:00
|
|
|
<link href="~/Content/css/font-awesome.css" rel="stylesheet" />
|
|
|
|
}
|
2016-10-25 01:20:58 +08:00
|
|
|
@section javascript {
|
|
|
|
<script src="~/Scripts/icon.js"></script>
|
|
|
|
}
|
|
|
|
<section class="container">
|
2016-11-21 00:33:07 +08:00
|
|
|
<div class="panel-body" data-spy="scroll" data-target=".fb-timeliner">
|
|
|
|
@Html.Partial("IconView")
|
|
|
|
</div>
|
|
|
|
</section>
|