2016-09-04 17:33:58 +02:00
|
|
|
@inherits UmbracoTemplatePage
|
|
|
|
|
@{
|
2016-09-11 11:48:04 +02:00
|
|
|
Layout = "~/Views/Master.cshtml";
|
2016-09-04 17:33:58 +02:00
|
|
|
}
|
|
|
|
|
<section class="plain">
|
|
|
|
|
<div>
|
|
|
|
|
<!-- FORUM HEADER START -->
|
|
|
|
|
<div class="utilities">
|
2017-01-22 16:27:24 +01:00
|
|
|
@Html.Action("Render", "Breadcrumb", new { linkToCurrent = false })
|
2016-09-04 17:33:58 +02:00
|
|
|
<div class="clear"></div>
|
|
|
|
|
</div>
|
2017-01-22 17:23:57 +01:00
|
|
|
@Html.Partial("~/Views/Partials/Projects/ProjectDetails.cshtml")
|
2016-09-04 17:33:58 +02:00
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
@section EndScripts {
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
(function () {
|
|
|
|
|
$(".fancybox")
|
|
|
|
|
.fancybox({
|
2017-05-15 19:12:35 +02:00
|
|
|
// options
|
2017-06-23 17:30:45 +02:00
|
|
|
loop: true,
|
|
|
|
|
arrows: true,
|
|
|
|
|
infobar: false
|
2016-09-04 17:33:58 +02:00
|
|
|
});
|
|
|
|
|
})();
|
|
|
|
|
</script>
|
|
|
|
|
}
|