Rename folder dan Perbaikan Feedback LLHD
|
|
@ -14,13 +14,13 @@ namespace WebApplication2.Controllers.WebNew
|
|||
[HttpGet("/WebNew/Berita/GetBerita")]
|
||||
public IActionResult GetBerita()
|
||||
{
|
||||
var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/json", "berita.json");
|
||||
var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/jsonnew", "berita.json");
|
||||
|
||||
if (!System.IO.File.Exists(path))
|
||||
return NotFound();
|
||||
|
||||
var json = System.IO.File.ReadAllText(path);
|
||||
return Content(json, "application/json");
|
||||
return Content(json, "application/jsonnew");
|
||||
}
|
||||
|
||||
[HttpGet("/WebNew/Berita/Detail/")]
|
||||
|
|
@ -33,7 +33,7 @@ namespace WebApplication2.Controllers.WebNew
|
|||
[HttpGet("/WebNew/Berita/GetDetail/")]
|
||||
public IActionResult GetDetail(int id)
|
||||
{
|
||||
var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/json", "berita.json");
|
||||
var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/jsonnew", "berita.json");
|
||||
|
||||
if (!System.IO.File.Exists(path))
|
||||
return NotFound();
|
||||
|
|
@ -60,9 +60,9 @@ namespace WebApplication2.Controllers.WebNew
|
|||
[HttpGet("/WebNew/Berita/GetAll")]
|
||||
public IActionResult GetAll()
|
||||
{
|
||||
var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/json", "berita.json");
|
||||
var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/jsonnew", "berita.json");
|
||||
var json = System.IO.File.ReadAllText(path);
|
||||
return Content(json, "application/json");
|
||||
return Content(json, "application/jsonnew");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -14,13 +14,13 @@ namespace WebApplication2.Controllers.WebNew
|
|||
[HttpGet("/WebNew/DetailItem/GetDetail/")]
|
||||
public IActionResult GetDetail(string kode)
|
||||
{
|
||||
var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/json", "detail-item.json");
|
||||
var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/jsonnew", "detail-item.json");
|
||||
|
||||
if (!System.IO.File.Exists(path))
|
||||
return NotFound();
|
||||
|
||||
var json = System.IO.File.ReadAllText(path);
|
||||
return Content(json, "application/json");
|
||||
return Content(json, "application/jsonnew");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -13,13 +13,13 @@ namespace WebApplication2.Controllers.WebNew
|
|||
[HttpGet("/WebNew/Galeri/GetAll")]
|
||||
public IActionResult GetAll()
|
||||
{
|
||||
var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/json", "galeri.json");
|
||||
var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/jsonnew", "galeri.json");
|
||||
|
||||
if (!System.IO.File.Exists(path))
|
||||
return NotFound();
|
||||
|
||||
var json = System.IO.File.ReadAllText(path);
|
||||
return Content(json, "application/json");
|
||||
return Content(json, "application/jsonnew");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -67,35 +67,35 @@ namespace WebApplication2.Controllers.WebNew
|
|||
new BeritaViewModel {
|
||||
Judul = "Komitmen LLHD Terhadap Pemenuhan Permen LHK NO.23 TAHUN 2020",
|
||||
Deskripsi = "Komitmen Laboratorium Lingkungan Hidup Daerah (LLHD) Provinsi DKI Jakarta...",
|
||||
Gambar = "/webnew/assets/image/foto/Berita komitmen llhd.png",
|
||||
Gambar = "/webnew/assetsnew/image/foto/Berita komitmen llhd.png",
|
||||
Tanggal = new DateTime(2025,3,4),
|
||||
Slug = "berita-1"
|
||||
},
|
||||
new BeritaViewModel {
|
||||
Judul = "Lorem Ipsum Judul",
|
||||
Deskripsi = "Isi berita...",
|
||||
Gambar = "/webnew/assets/image/foto/1.jpeg",
|
||||
Gambar = "/webnew/assetsnew/image/foto/1.jpeg",
|
||||
Tanggal = new DateTime(2025,3,4),
|
||||
Slug = "berita-2"
|
||||
},
|
||||
new BeritaViewModel {
|
||||
Judul = "Lorem Ipsum Judul",
|
||||
Deskripsi = "Isi berita...",
|
||||
Gambar = "/webnew/assets/image/foto/2.jpeg",
|
||||
Gambar = "/webnew/assetsnew/image/foto/2.jpeg",
|
||||
Tanggal = new DateTime(2025,3,4),
|
||||
Slug = "berita-3"
|
||||
},
|
||||
new BeritaViewModel {
|
||||
Judul = "Lorem Ipsum Judul",
|
||||
Deskripsi = "Isi berita...",
|
||||
Gambar = "/webnew/assets/image/foto/3.jpeg",
|
||||
Gambar = "/webnew/assetsnew/image/foto/3.jpeg",
|
||||
Tanggal = new DateTime(2025,3,4),
|
||||
Slug = "berita-4"
|
||||
},
|
||||
new BeritaViewModel {
|
||||
Judul = "Lorem Ipsum Judul",
|
||||
Deskripsi = "Isi berita...",
|
||||
Gambar = "/webnew/assets/image/foto/4.jpeg",
|
||||
Gambar = "/webnew/assetsnew/image/foto/4.jpeg",
|
||||
Tanggal = new DateTime(2025,3,4),
|
||||
Slug = "berita-5"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -15,13 +15,13 @@ namespace WebApplication2.Controllers.WebNew
|
|||
[HttpGet("/WebNew/Layanan/GetData")]
|
||||
public IActionResult GetData(string jenis)
|
||||
{
|
||||
var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/json/Layanan", $"{jenis}.json");
|
||||
var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/jsonnew/layanan", $"{jenis}.json");
|
||||
|
||||
if (!System.IO.File.Exists(path))
|
||||
return NotFound();
|
||||
|
||||
var json = System.IO.File.ReadAllText(path);
|
||||
return Content(json, "application/json");
|
||||
return Content(json, "application/jsonnew");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -13,13 +13,13 @@ namespace WebApplication2.Controllers.WebNew
|
|||
[HttpGet("/WebNew/Regulasi/GetRegulasi")]
|
||||
public IActionResult GetRegulasi()
|
||||
{
|
||||
var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/json", "regulasi.json");
|
||||
var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/jsonnew", "regulasi.json");
|
||||
|
||||
if (!System.IO.File.Exists(path))
|
||||
return NotFound();
|
||||
|
||||
var json = System.IO.File.ReadAllText(path);
|
||||
return Content(json, "application/json");
|
||||
return Content(json, "application/jsonnew");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -13,13 +13,13 @@ namespace WebApplication2.Controllers
|
|||
[HttpGet("/WebNew/Video/GetAll")]
|
||||
public IActionResult GetAll()
|
||||
{
|
||||
var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/json", "video.json");
|
||||
var path = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/webnew/jsonnew", "video.json");
|
||||
|
||||
if (!System.IO.File.Exists(path))
|
||||
return NotFound();
|
||||
|
||||
var json = System.IO.File.ReadAllText(path);
|
||||
return Content(json, "application/json");
|
||||
return Content(json, "application/jsonnew");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -7,11 +7,11 @@
|
|||
}
|
||||
|
||||
@section Style {
|
||||
<link rel="stylesheet" href="~/webnew/css/berita/berita.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/cssnew/berita/berita.css" asp-append-version="true" />
|
||||
}
|
||||
|
||||
@section Scripts {
|
||||
<script src="~/webnew/pages/berita/berita.js"></script>
|
||||
<script src="~/webnew/pagesnew/berita/berita.js"></script>
|
||||
}
|
||||
@await Html.PartialAsync("~/Views/WebNew/Shared/Section/_Hero.cshtml", "Berita")
|
||||
@await Html.PartialAsync("~/Views/WebNew/Shared/Section/_Helpdesk.cshtml")
|
||||
|
|
|
|||
|
|
@ -3,12 +3,12 @@
|
|||
|
||||
}
|
||||
@section Style {
|
||||
<link rel="stylesheet" href="~/webnew/css/berita/detailberita.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/cssnew/berita/detailberita.css" asp-append-version="true" />
|
||||
}
|
||||
|
||||
|
||||
@section Scripts {
|
||||
<script src="~/webnew/pages/berita/detail-berita.js"></script>
|
||||
<script src="~/webnew/pagesnew/berita/detail-berita.js"></script>
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -4,11 +4,11 @@
|
|||
}
|
||||
|
||||
@section Style {
|
||||
<link rel="stylesheet" href="~/webnew/css/Faq.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/cssnew/Faq.css" asp-append-version="true" />
|
||||
}
|
||||
|
||||
@section Scripts {
|
||||
<script src="~/webnew/pages/faq.js"></script>
|
||||
<script src="~/webnew/pagesnew/faq.js"></script>
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -19,11 +19,11 @@
|
|||
}
|
||||
|
||||
@section Style {
|
||||
<link rel="stylesheet" href="~/webnew/css/formreview.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/cssnew/formreview.css" asp-append-version="true" />
|
||||
}
|
||||
|
||||
@section Scripts {
|
||||
<script src="~/webnew/pages/form-review.js"></script>
|
||||
<script src="~/webnew/pagesnew/form-review.js"></script>
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -4,11 +4,11 @@
|
|||
}
|
||||
|
||||
@section Style {
|
||||
<link rel="stylesheet" href="~/webnew/css/galeri.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/cssnew/galeri.css" asp-append-version="true" />
|
||||
}
|
||||
|
||||
@section Scripts {
|
||||
<script src="~/webnew/pages/galeri.js"></script>
|
||||
<script src="~/webnew/pagesnew/galeri.js"></script>
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
|
||||
@section Scripts {
|
||||
<script src="~/webnew/pages/home/index.js"></script>
|
||||
<script src="~/webnew/pagesnew/home/index.js"></script>
|
||||
}
|
||||
|
||||
@await Html.PartialAsync("~/Views/WebNew/Shared/Section/_Helpdesk.cshtml")
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
<!-- Slide 1 -->
|
||||
<div class="hero-slide active"
|
||||
style="background-image:url('/webnew/assets/image/backgroundhero.png');
|
||||
style="background-image:url('/webnew/assetsnew/image/backgroundhero.png');
|
||||
background-size: cover;
|
||||
background-position:center;
|
||||
background-repeat:no-repeat">
|
||||
|
|
@ -25,11 +25,11 @@
|
|||
<div class="hero-content">
|
||||
|
||||
<div class="hero-logo mb-3 bg-white">
|
||||
<img src="~/webnew/assets/image/logo/logollhd.png" />
|
||||
<img src="~/webnew/assets/image/logo/logokanllhd.png" />
|
||||
<img src="~/webnew/assets/image/logo/logoregistrasiklhk.png" />
|
||||
<img src="~/webnew/assets/image/logo/wilayahbebaskorupsi.png" />
|
||||
<img src="~/webnew/assets/image/logo/logodlh.png" />
|
||||
<img src="~/webnew/assetsnew/image/logo/logollhd.png" />
|
||||
<img src="~/webnew/assetsnew/image/logo/logokanllhd.png" />
|
||||
<img src="~/webnew/assetsnew/image/logo/logoregistrasiklhk.png" />
|
||||
<img src="~/webnew/assetsnew/image/logo/wilayahbebaskorupsi.png" />
|
||||
<img src="~/webnew/assetsnew/image/logo/logodlh.png" />
|
||||
</div>
|
||||
|
||||
<h1>Laboratorium Lingkungan Hidup Daerah</h1>
|
||||
|
|
@ -38,7 +38,7 @@
|
|||
Pemerintah Provinsi DKI Jakarta
|
||||
</p>
|
||||
|
||||
<a href="/WebNew/Layanan"
|
||||
<a href="/WebNew/layanan"
|
||||
class="btn btn-light rounded-pill px-4">
|
||||
Lihat Layanan
|
||||
</a>
|
||||
|
|
@ -51,7 +51,7 @@
|
|||
<div class="hero-slide"
|
||||
style="background-image:
|
||||
linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
|
||||
url('/webnew/assets/image/foto/gedungnew.jpeg');
|
||||
url('/webnew/assetsnew/image/foto/gedungnew.jpeg');
|
||||
background-size:cover;
|
||||
background-position:center;
|
||||
background-repeat:no-repeat">
|
||||
|
|
@ -59,11 +59,11 @@
|
|||
<div class="hero-content">
|
||||
|
||||
<div class="hero-logo mb-3 bg-white">
|
||||
<img src="~/webnew/assets/image/logo/logollhd.png" />
|
||||
<img src="~/webnew/assets/image/logo/logokanllhd.png" />
|
||||
<img src="~/webnew/assets/image/logo/logoregistrasiklhk.png" />
|
||||
<img src="~/webnew/assets/image/logo/wilayahbebaskorupsi.png" />
|
||||
<img src="~/webnew/assets/image/logo/logodlh.png" />
|
||||
<img src="~/webnew/assetsnew/image/logo/logollhd.png" />
|
||||
<img src="~/webnew/assetsnew/image/logo/logokanllhd.png" />
|
||||
<img src="~/webnew/assetsnew/image/logo/logoregistrasiklhk.png" />
|
||||
<img src="~/webnew/assetsnew/image/logo/wilayahbebaskorupsi.png" />
|
||||
<img src="~/webnew/assetsnew/image/logo/logodlh.png" />
|
||||
</div>
|
||||
|
||||
<h1>Laboratorium Lingkungan Hidup Daerah</h1>
|
||||
|
|
@ -72,7 +72,7 @@
|
|||
Pemerintah Provinsi DKI Jakarta
|
||||
</p>
|
||||
|
||||
<a href="/WebNew/Layanan"
|
||||
<a href="/WebNew/layanan"
|
||||
class="btn btn-light rounded-pill px-4">
|
||||
Lihat Layanan
|
||||
</a>
|
||||
|
|
@ -109,11 +109,11 @@
|
|||
<div class="row g-4 justify-content-center">
|
||||
|
||||
<div class="col-md-6 col-lg-4">
|
||||
<a href="/WebNew/Layanan?jenis=pcu" class="service-card-link">
|
||||
<a href="/WebNew/layanan?jenis=pcu" class="service-card-link">
|
||||
|
||||
<div class="service-card">
|
||||
|
||||
<div class="service-bg" style="background-image:url('/webnew/assets/image/foto/samplingair.jpeg')"></div>
|
||||
<div class="service-bg" style="background-image:url('/webnew/assetsnew/image/foto/samplingair.jpeg')"></div>
|
||||
<div class="service-overlay"></div>
|
||||
|
||||
<div class="service-content">
|
||||
|
|
@ -143,10 +143,10 @@
|
|||
</a>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4">
|
||||
<a href="/WebNew/Layanan?jenis=air" class="service-card-link">
|
||||
<a href="/WebNew/layanan?jenis=air" class="service-card-link">
|
||||
<div class="service-card">
|
||||
|
||||
<div class="service-bg" style="background-image:url('/webnew/assets/image/foto/pengujianair.jpeg')"></div>
|
||||
<div class="service-bg" style="background-image:url('/webnew/assetsnew/image/foto/1.jpeg')"></div>
|
||||
<div class="service-overlay"></div>
|
||||
|
||||
<div class="service-content" asp-area="WebNew" asp-controller="Layanan" asp-action="Air">
|
||||
|
|
@ -176,10 +176,10 @@
|
|||
</div>
|
||||
|
||||
<div class="col-md-6 col-lg-4">
|
||||
<a href="/WebNew/Layanan?jenis=udara" class="service-card-link">
|
||||
<a href="/WebNew/layanan?jenis=udara" class="service-card-link">
|
||||
<div class="service-card">
|
||||
|
||||
<div class="service-bg" style="background-image:url('/webnew/assets/image/foto/pengujianudara.jpeg')"></div>
|
||||
<div class="service-bg" style="background-image:url('/webnew/assetsnew/image/foto/pengujianudara.jpeg')"></div>
|
||||
<div class="service-overlay"></div>
|
||||
|
||||
<div class="service-content" asp-area="WebNew" asp-controller="Layanan" asp-action="Udara">
|
||||
|
|
@ -238,11 +238,11 @@
|
|||
<span class="badge-about">Tentang LLHD</span>
|
||||
|
||||
<div class="about-logo mb-3">
|
||||
<img src="~/webnew/assets/image/logo/logollhd.png" />
|
||||
<img src="~/webnew/assets/image/logo/logokanllhd.png" />
|
||||
<img src="~/webnew/assets/image/logo/logoregistrasiklhk.png" />
|
||||
<img src="~/webnew/assets/image/logo/wilayahbebaskorupsi.png" />
|
||||
<img src="~/webnew/assets/image/logo/logodlh.png" />
|
||||
<img src="~/webnew/assetsnew/image/logo/logollhd.png" />
|
||||
<img src="~/webnew/assetsnew/image/logo/logokanllhd.png" />
|
||||
<img src="~/webnew/assetsnew/image/logo/logoregistrasiklhk.png" />
|
||||
<img src="~/webnew/assetsnew/image/logo/wilayahbebaskorupsi.png" />
|
||||
<img src="~/webnew/assetsnew/image/logo/logodlh.png" />
|
||||
</div>
|
||||
|
||||
<h4 class="fw-bold mb-3">
|
||||
|
|
@ -254,7 +254,7 @@
|
|||
</p>
|
||||
|
||||
<p class="text-muted">
|
||||
LLHD telah terregistrasi dan menerapkan standar ISO/IEC 17025:2017 untuk menjamin keabsahan hasil uji serta pelayanan pelanggan.
|
||||
LLHD telah teregistrasi oleh Kementerian Lingkungan Hidup (KLH) dan menerapkan standar ISO/IEC 17025:2017 untuk menjamin keabsahan hasil uji serta pelayanan pelanggan.
|
||||
</p>
|
||||
|
||||
<div class="row g-3 mt-4">
|
||||
|
|
@ -371,13 +371,13 @@
|
|||
<div class="swiper-slide">
|
||||
<div class="service-card">
|
||||
|
||||
<div class="service-bg" style="background-image:url('/webnew/assets/image/foto/1.jpeg')"></div>
|
||||
<div class="service-bg" style="background-image:url('/webnew/assetsnew/image/foto/1.jpeg')"></div>
|
||||
<div class="service-overlay"></div>
|
||||
|
||||
<div class="service-content">
|
||||
<div class="top-content">
|
||||
<div class="icon">
|
||||
<img src="~/webnew/assets/image/icon/icon lab.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/icon lab.png" />
|
||||
</div>
|
||||
<p class="title">Penyelia</p>
|
||||
</div>
|
||||
|
|
@ -399,13 +399,13 @@
|
|||
<div class="swiper-slide">
|
||||
<div class="service-card">
|
||||
|
||||
<div class="service-bg" style="background-image: url('/webnew/assets/image/foto/2.jpeg')"></div>
|
||||
<div class="service-bg" style="background-image: url('/webnew/assetsnew/image/foto/2.jpeg')"></div>
|
||||
<div class="service-overlay"></div>
|
||||
|
||||
<div class="service-content">
|
||||
<div class="top-content">
|
||||
<div class="icon">
|
||||
<img src="~/webnew/assets/image/icon/icon user.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/icon user.png" />
|
||||
</div>
|
||||
<p class="title">Pengenalan Mutu</p>
|
||||
</div>
|
||||
|
|
@ -428,13 +428,13 @@
|
|||
<div class="swiper-slide">
|
||||
<div class="service-card">
|
||||
|
||||
<div class="service-bg" style="background-image:url('/webnew/assets/image/foto/3.jpeg')"></div>
|
||||
<div class="service-bg" style="background-image:url('/webnew/assetsnew/image/foto/3.jpeg')"></div>
|
||||
<div class="service-overlay"></div>
|
||||
|
||||
<div class="service-content">
|
||||
<div class="top-content">
|
||||
<div class="icon">
|
||||
<img src="~/webnew/assets/image/icon/icon check.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/icon check.png" />
|
||||
</div>
|
||||
<p class="title">Pelayanan</p>
|
||||
</div>
|
||||
|
|
@ -452,13 +452,13 @@
|
|||
<div class="swiper-slide">
|
||||
<div class="service-card">
|
||||
|
||||
<div class="service-bg" style="background-image:url('/webnew/assets/image/foto/4.jpeg')"></div>
|
||||
<div class="service-bg" style="background-image:url('/webnew/assetsnew/image/foto/4.jpeg')"></div>
|
||||
<div class="service-overlay"></div>
|
||||
|
||||
<div class="service-content">
|
||||
<div class="top-content">
|
||||
<div class="icon">
|
||||
<img src="~/webnew/assets/image/icon/icon handshake.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/icon handshake.png" />
|
||||
</div>
|
||||
<p class="title">Analisis Pengujian Air dan Udara</p>
|
||||
</div>
|
||||
|
|
@ -479,13 +479,13 @@
|
|||
<div class="swiper-slide">
|
||||
<div class="service-card">
|
||||
|
||||
<div class="service-bg" style="background-image:url('/webnew/assets/image/foto/1.jpeg')"></div>
|
||||
<div class="service-bg" style="background-image:url('/webnew/assetsnew/image/foto/1.jpeg')"></div>
|
||||
<div class="service-overlay"></div>
|
||||
|
||||
<div class="service-content">
|
||||
<div class="top-content">
|
||||
<div class="icon">
|
||||
<img src="~/webnew/assets/image/icon/icon lab.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/icon lab.png" />
|
||||
</div>
|
||||
<p class="title">Penyelia</p>
|
||||
</div>
|
||||
|
|
@ -507,13 +507,13 @@
|
|||
<div class="swiper-slide">
|
||||
<div class="service-card">
|
||||
|
||||
<div class="service-bg" style="background-image: url('/webnew/assets/image/foto/2.jpeg')"></div>
|
||||
<div class="service-bg" style="background-image: url('/webnew/assetsnew/image/foto/2.jpeg')"></div>
|
||||
<div class="service-overlay"></div>
|
||||
|
||||
<div class="service-content">
|
||||
<div class="top-content">
|
||||
<div class="icon">
|
||||
<img src="~/webnew/assets/image/icon/icon user.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/icon user.png" />
|
||||
</div>
|
||||
<p class="title">Pengendalian Mutu</p>
|
||||
</div>
|
||||
|
|
@ -536,13 +536,13 @@
|
|||
<div class="swiper-slide">
|
||||
<div class="service-card">
|
||||
|
||||
<div class="service-bg" style="background-image:url('/webnew/assets/image/foto/3.jpeg')"></div>
|
||||
<div class="service-bg" style="background-image:url('/webnew/assetsnew/image/foto/3.jpeg')"></div>
|
||||
<div class="service-overlay"></div>
|
||||
|
||||
<div class="service-content">
|
||||
<div class="top-content">
|
||||
<div class="icon">
|
||||
<img src="~/webnew/assets/image/icon/icon check.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/icon check.png" />
|
||||
</div>
|
||||
<p class="title">Pelayanan</p>
|
||||
</div>
|
||||
|
|
@ -560,13 +560,13 @@
|
|||
<div class="swiper-slide">
|
||||
<div class="service-card">
|
||||
|
||||
<div class="service-bg" style="background-image:url('/webnew/assets/image/foto/4.jpeg')"></div>
|
||||
<div class="service-bg" style="background-image:url('/webnew/assetsnew/image/foto/4.jpeg')"></div>
|
||||
<div class="service-overlay"></div>
|
||||
|
||||
<div class="service-content">
|
||||
<div class="top-content">
|
||||
<div class="icon">
|
||||
<img src="~/webnew/assets/image/icon/icon handshake.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/icon handshake.png" />
|
||||
</div>
|
||||
<p class="title">Analisis Pengujian Air dan Udara</p>
|
||||
</div>
|
||||
|
|
@ -646,11 +646,11 @@
|
|||
<div class="testimonial-card">
|
||||
|
||||
<div class="stars mb-3">
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
</div>
|
||||
|
||||
<p class="testimonial-text">
|
||||
|
|
@ -671,11 +671,11 @@
|
|||
<div class="testimonial-card">
|
||||
|
||||
<div class="stars mb-3">
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star zero.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star zero.png" />
|
||||
</div>
|
||||
|
||||
<p class="testimonial-text">
|
||||
|
|
@ -696,11 +696,11 @@
|
|||
<div class="testimonial-card">
|
||||
|
||||
<div class="stars mb-3">
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/starhalf.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/starhalf.png" />
|
||||
</div>
|
||||
|
||||
<p class="testimonial-text">
|
||||
|
|
@ -721,11 +721,11 @@
|
|||
<div class="testimonial-card">
|
||||
|
||||
<div class="stars mb-3">
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
</div>
|
||||
|
||||
<p class="testimonial-text">
|
||||
|
|
@ -746,11 +746,11 @@
|
|||
<div class="testimonial-card">
|
||||
|
||||
<div class="stars mb-3">
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
</div>
|
||||
|
||||
<p class="testimonial-text">
|
||||
|
|
@ -771,11 +771,11 @@
|
|||
<div class="testimonial-card">
|
||||
|
||||
<div class="stars mb-3">
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/starhalf.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/starhalf.png" />
|
||||
</div>
|
||||
|
||||
<p class="testimonial-text">
|
||||
|
|
@ -796,11 +796,11 @@
|
|||
<div class="testimonial-card">
|
||||
|
||||
<div class="stars mb-3">
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star.png" />
|
||||
<img src="~/webnew/assets/image/icon/star zero.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/star zero.png" />
|
||||
</div>
|
||||
|
||||
<p class="testimonial-text">
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
}
|
||||
|
||||
@section Style {
|
||||
<link rel="stylesheet" href="~/webnew/css/kontak.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/cssnew/kontak.css" asp-append-version="true" />
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -4,12 +4,12 @@
|
|||
}
|
||||
|
||||
@section Style {
|
||||
<link rel="stylesheet" href="~/webnew/css/layanan/detailitem.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/cssnew/layanan/detailitem.css" asp-append-version="true" />
|
||||
}
|
||||
|
||||
|
||||
@section Scripts {
|
||||
<script src="~/webnew/pages/layanan/detail-item.js"></script>
|
||||
<script src="~/webnew/pagesnew/layanan/detail-item.js"></script>
|
||||
}
|
||||
|
||||
@await Html.PartialAsync("~/Views/WebNew/Shared/Section/_Helpdesk.cshtml")
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
<h3 id="judul"></h3>
|
||||
<p id="deskripsi-singkat"></p>
|
||||
<ul id="deskripsi"></ul>
|
||||
<a href="/webnew/assets/document/parameter-terakreditasi-kan.pdf"
|
||||
<a href="/webnew/assetsnew/document/parameter-terakreditasi-kan.pdf"
|
||||
target="_blank"
|
||||
class="btn btn-primary rounded-pill px-4">
|
||||
|
||||
|
|
@ -89,4 +89,4 @@
|
|||
<span class="text-danger">* Parameter yang <b>tebal (bold)</b> telah terakreditasi oleh KAN</span>
|
||||
</div>
|
||||
|
||||
<script src="~/webnew/pages/layanan/detail-layanan.js"></script>
|
||||
<script src="~/webnew/pagesnew/layanan/detail-layanan.js"></script>
|
||||
|
|
|
|||
|
|
@ -8,8 +8,8 @@
|
|||
|
||||
|
||||
@section Style {
|
||||
<link rel="stylesheet" href="~/webnew/css/layanan/layanan.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/css/layanan/detaillayanan.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/cssnew/layanan/layanan.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/cssnew/layanan/detaillayanan.css" asp-append-version="true" />
|
||||
}
|
||||
|
||||
<div id="content">
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
@section Scripts {
|
||||
<script src="~/webnew/pages/layanan/layanan.js"></script>
|
||||
<script src="~/webnew/pagesnew/layanan/layanan.js"></script>
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -11,9 +11,9 @@
|
|||
|
||||
<h5 class="mb-4 mt-4">Tahap Pengujian Sampel Laboratorium</h5>
|
||||
|
||||
<div class="tahap-image-wrapper">
|
||||
<img src="~/webnew/assets/image/tahappengujianllhd.png"
|
||||
class="img-fluid tahap-image">
|
||||
<div class="tahap-scroll-wrapper">
|
||||
<img src="~/webnew/assetsnew/image/tahappengujianllhd.png"
|
||||
class="tahap-image">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
@ -29,7 +29,7 @@
|
|||
<div class="layanan-card">
|
||||
<h6>Pengambilan Contoh Uji (PCU) Air</h6>
|
||||
|
||||
<img src="~/webnew/assets/image/foto/samplingair.jpeg" class="card-img" />
|
||||
<img src="~/webnew/assetsnew/image/foto/samplingair.jpeg" class="card-img" />
|
||||
|
||||
<p class="desc">
|
||||
Beberapa pengujian laboratorium yang dapat dilakukan pada pengujian air yaitu:
|
||||
|
|
@ -41,10 +41,10 @@
|
|||
<li>Air Minum.</li>
|
||||
</ul>
|
||||
|
||||
<a href="/WebNew/Layanan?jenis=pcu" class="card-footer-custom">
|
||||
<a href="/WebNew/layanan?jenis=pcu" class="card-footer-custom">
|
||||
<span>Lihat Harga</span>
|
||||
<div class="arrow-btn">
|
||||
<img src="~/webnew/assets/image/icon/arrow.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/arrow.png" />
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
|
|
@ -54,7 +54,7 @@
|
|||
<div class="layanan-card">
|
||||
<h6>Pengujian Air</h6>
|
||||
|
||||
<img src="~/webnew/assets/image/foto/pengujianair.jpeg" class="card-img" />
|
||||
<img src="~/webnew/assetsnew/image/foto/1.jpeg" class="card-img" />
|
||||
|
||||
<p class="desc">
|
||||
Beberapa pengujian laboratorium yang dapat dilakukan pada pengujian air yaitu:
|
||||
|
|
@ -68,10 +68,10 @@
|
|||
<li>Air Perpipaan.</li>
|
||||
</ul>
|
||||
|
||||
<a href="/WebNew/Layanan?jenis=air" class="card-footer-custom">
|
||||
<a href="/WebNew/layanan?jenis=air" class="card-footer-custom">
|
||||
<span>Lihat Harga</span>
|
||||
<div class="arrow-btn">
|
||||
<img src="~/webnew/assets/image/icon/arrow.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/arrow.png" />
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
|
|
@ -81,7 +81,7 @@
|
|||
<div class="layanan-card">
|
||||
<h6>Pengujian Udara</h6>
|
||||
|
||||
<img src="~/webnew/assets/image/foto/pengujianudara.jpeg" class="card-img" />
|
||||
<img src="~/webnew/assetsnew/image/foto/pengujianudara.jpeg" class="card-img" />
|
||||
|
||||
<p class="desc">
|
||||
Beberapa pengujian laboratorium yang dapat dilakukan pada pengujian udara yaitu:
|
||||
|
|
@ -96,10 +96,10 @@
|
|||
<li>SPKU (stasiun pemantau kualitas udara)</li>
|
||||
</ul>
|
||||
|
||||
<a href="/WebNew/Layanan?jenis=udara" class="card-footer-custom">
|
||||
<a href="/WebNew/layanan?jenis=udara" class="card-footer-custom">
|
||||
<span>Lihat Harga</span>
|
||||
<div class="arrow-btn">
|
||||
<img src="~/webnew/assets/image/icon/arrow.png" />
|
||||
<img src="~/webnew/assetsnew/image/icon/arrow.png" />
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,11 +4,11 @@
|
|||
}
|
||||
|
||||
@section Style {
|
||||
<link rel="stylesheet" href="~/webnew/css/regulasi.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/cssnew/regulasi.css" asp-append-version="true" />
|
||||
}
|
||||
|
||||
@section Scripts {
|
||||
<script src="~/webnew/pages/regulasi.js"></script>
|
||||
<script src="~/webnew/pagesnew/regulasi.js"></script>
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
}
|
||||
|
||||
@section Style {
|
||||
<link rel="stylesheet" href="~/webnew/css/sertifikat.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/cssnew/sertifikat.css" asp-append-version="true" />
|
||||
}
|
||||
|
||||
@await Html.PartialAsync("~/Views/WebNew/Shared/Section/_Hero.cshtml", "Sertifikat")
|
||||
|
|
@ -19,9 +19,9 @@
|
|||
<div class="col-md-6">
|
||||
<div class="sertifikat-card">
|
||||
|
||||
<a href="~/webnew/assets/document/sertifikat//sertifikat-akreditasi-llhd.pdf" target="_blank">
|
||||
<a href="~/webnew/assetsnew/document/sertifikat//sertifikat-akreditasi-llhd.pdf" target="_blank">
|
||||
<div class="pdf-preview">
|
||||
<iframe src="~/webnew/assets/document/sertifikat/sertifikat-akreditasi-llhd.pdf"></iframe>
|
||||
<iframe src="~/webnew/assetsnew/document/sertifikat/sertifikat-akreditasi-llhd.pdf"></iframe>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
|
@ -29,11 +29,11 @@
|
|||
|
||||
<div class="sertifikat-action">
|
||||
|
||||
<a href="~/webnew/assets/document/sertifikat/sertifikat-akreditasi-llhd.pdf" target="_blank" class="btn-lihat">
|
||||
<a href="~/webnew/assetsnew/document/sertifikat/sertifikat-akreditasi-llhd.pdf" target="_blank" class="btn-lihat">
|
||||
<i class="bi bi-eye"></i> Lihat Dokumen
|
||||
</a>
|
||||
|
||||
<a href="~/webnew/assets/document/sertifikat/sertifikat-akreditasi-llhd.pdf" download class="btn-unduh">
|
||||
<a href="~/webnew/assetsnew/document/sertifikat/sertifikat-akreditasi-llhd.pdf" download class="btn-unduh">
|
||||
<i class="bi bi-download"></i> Unduh
|
||||
</a>
|
||||
|
||||
|
|
@ -44,9 +44,9 @@
|
|||
<div class="col-md-6">
|
||||
<div class="sertifikat-card">
|
||||
|
||||
<a href="~/webnew/assets/document/sertifikat/sertifikat-wilayah-bebas-korupsi-wbk.pdf" target="_blank">
|
||||
<a href="~/webnew/assetsnew/document/sertifikat/sertifikat-wilayah-bebas-korupsi-wbk.pdf" target="_blank">
|
||||
<div class="pdf-preview">
|
||||
<iframe src="~/webnew/assets/document/sertifikat/sertifikat-wilayah-bebas-korupsi-wbk.pdf"></iframe>
|
||||
<iframe src="~/webnew/assetsnew/document/sertifikat/sertifikat-wilayah-bebas-korupsi-wbk.pdf"></iframe>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
|
@ -54,11 +54,11 @@
|
|||
|
||||
<div class="sertifikat-action">
|
||||
|
||||
<a href="~/webnew/assets/document/sertifikat/sertifikat-wilayah-bebas-korupsi-wbk.pdf" target="_blank" class="btn-lihat">
|
||||
<a href="~/webnew/assetsnew/document/sertifikat/sertifikat-wilayah-bebas-korupsi-wbk.pdf" target="_blank" class="btn-lihat">
|
||||
<i class="bi bi-eye"></i> Lihat Dokumen
|
||||
</a>
|
||||
|
||||
<a href="~/webnew/assets/document/sertifikat/sertifikat-wilayah-bebas-korupsi-wbk.pdf" download class="btn-unduh">
|
||||
<a href="~/webnew/assetsnew/document/sertifikat/sertifikat-wilayah-bebas-korupsi-wbk.pdf" download class="btn-unduh">
|
||||
<i class="bi bi-download"></i> Unduh
|
||||
</a>
|
||||
|
||||
|
|
@ -70,9 +70,9 @@
|
|||
<div class="col-md-6">
|
||||
<div class="sertifikat-card">
|
||||
|
||||
<a href="~/webnew/assets/document/sertifikat/registrasi-labling-llhd.pdf" target="_blank">
|
||||
<a href="~/webnew/assetsnew/document/sertifikat/registrasi-labling-llhd.pdf" target="_blank">
|
||||
<div class="pdf-preview">
|
||||
<iframe src="~/webnew/assets/document/sertifikat/registrasi-labling-llhd.pdf"></iframe>
|
||||
<iframe src="~/webnew/assetsnew/document/sertifikat/registrasi-labling-llhd.pdf"></iframe>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
|
@ -80,11 +80,11 @@
|
|||
|
||||
<div class="sertifikat-action">
|
||||
|
||||
<a href="~/webnew/assets/document/sertifikat/registrasi-labling-llhd.pdf" target="_blank" class="btn-lihat">
|
||||
<a href="~/webnew/assetsnew/document/sertifikat/registrasi-labling-llhd.pdf" target="_blank" class="btn-lihat">
|
||||
<i class="bi bi-eye"></i> Lihat Dokumen
|
||||
</a>
|
||||
|
||||
<a href="~/webnew/assets/document/sertifikat/registrasi-labling-llhd.pdf" download class="btn-unduh">
|
||||
<a href="~/webnew/assetsnew/document/sertifikat/registrasi-labling-llhd.pdf" download class="btn-unduh">
|
||||
<i class="bi bi-download"></i> Unduh
|
||||
</a>
|
||||
|
||||
|
|
@ -96,21 +96,21 @@
|
|||
<div class="col-md-6">
|
||||
<div class="sertifikat-card">
|
||||
|
||||
<a href="~/webnew/assets/document/parameter-terakreditasi-kan.pdf" target="_blank">
|
||||
<a href="~/webnew/assetsnew/document/parameter-terakreditasi-kan.pdf" target="_blank">
|
||||
<div class="pdf-preview">
|
||||
<iframe src="~/webnew/assets/document/parameter-terakreditasi-kan.pdf"></iframe>
|
||||
<iframe src="~/webnew/assetsnew/document/parameter-terakreditasi-kan.pdf"></iframe>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<h6>RList Parameter Terakreditasi</h6>
|
||||
<h6>List Parameter Terakreditasi</h6>
|
||||
|
||||
<div class="sertifikat-action">
|
||||
|
||||
<a href="~/webnew/assets/document/parameter-terakreditasi-kan.pdf" target="_blank" class="btn-lihat">
|
||||
<a href="~/webnew/assetsnew/document/parameter-terakreditasi-kan.pdf" target="_blank" class="btn-lihat">
|
||||
<i class="bi bi-eye"></i> Lihat Dokumen
|
||||
</a>
|
||||
|
||||
<a href="~/webnew/assets/document/parameter-terakreditasi-kan.pdf" download class="btn-unduh">
|
||||
<a href="~/webnew/assetsnew/document/parameter-terakreditasi-kan.pdf" download class="btn-unduh">
|
||||
<i class="bi bi-download"></i> Unduh
|
||||
</a>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<footer class="footer-section"
|
||||
style="background-image: url(' /webnew/assets/image/footer.png');">
|
||||
style="background-image: url(' /webnew/assetsnew/image/footer.png');">
|
||||
<div class="container py-5">
|
||||
|
||||
<div class="row">
|
||||
|
|
@ -7,7 +7,7 @@
|
|||
<div class="col-md-5 mb-4">
|
||||
|
||||
<div class="footer-logo mb-4">
|
||||
<img src="~/webnew/assets/image/logo/logollhdbg.png" alt="LLHD">
|
||||
<img src="~/webnew/assetsnew/image/logo/logollhdbg.png" alt="LLHD">
|
||||
</div>
|
||||
|
||||
<p>
|
||||
|
|
@ -26,9 +26,9 @@
|
|||
<ul class="footer-links">
|
||||
<li><a href="#">Beranda</a></li>
|
||||
<li><a asp-area="WebNew" asp-controller="Layanan" asp-action="Index">Layanan</a></li>
|
||||
<li><a href="/WebNew/Layanan?jenis=pcu">Layanan PCU</a></li>
|
||||
<li><a href="/WebNew/Layanan?jenis=air">Layanan Uji Air</a></li>
|
||||
<li><a href="/WebNew/Layanan?jenis=udara">Layanan Uji Udara</a></li>
|
||||
<li><a href="/WebNew/layanan?jenis=pcu">Layanan PCU</a></li>
|
||||
<li><a href="/WebNew/layanan?jenis=air">Layanan Uji Air</a></li>
|
||||
<li><a href="/WebNew/layanan?jenis=udara">Layanan Uji Udara</a></li>
|
||||
<li><a asp-area="WebNew" asp-controller="Regulasi" asp-action="Index">Regulasi</a></li>
|
||||
<li><a asp-area="WebNew" asp-controller="Home" asp-action="sertifikat">Sertifikasi</a></li>
|
||||
<li><a asp-area="WebNew" asp-controller="Home" asp-action="TentangKami">Tentang Kami</a></li>
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
<div class="container">
|
||||
|
||||
<a class="navbar-brand" asp-area="WebNew" asp-controller="Home" asp-action="Index">
|
||||
<img src="~/webnew/assets/image/logo/Logollhd.png" width="120" />
|
||||
<img src="~/webnew/assetsnew/image/logo/Logollhd.png" width="120" />
|
||||
</a>
|
||||
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
|
||||
|
|
@ -32,9 +32,9 @@
|
|||
</a>
|
||||
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="dropdown-item" href="/WebNew/Layanan?jenis=pcu">PCU Air</a></li>
|
||||
<li><a class="dropdown-item" href="/WebNew/Layanan?jenis=air">Pengujian Air</a></li>
|
||||
<li><a class="dropdown-item" href="/WebNew/Layanan?jenis=udara">Pengujian Udara</a></li>
|
||||
<li><a class="dropdown-item" href="/WebNew/layanan?jenis=pcu">PCU Air</a></li>
|
||||
<li><a class="dropdown-item" href="/WebNew/layanan?jenis=air">Pengujian Air</a></li>
|
||||
<li><a class="dropdown-item" href="/WebNew/layanan?jenis=udara">Pengujian Udara</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
|
|
@ -107,4 +107,4 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<script src="~/webnew/pages/header.js"></script>
|
||||
<script src="~/webnew/pagesnew/header.js"></script>
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
<section class="hero-section">
|
||||
<div class="container">
|
||||
<div class="hero-box text-center d-flex align-items-center justify-content-center">
|
||||
<img src="/webnew/assets/image/backgroundhero.png"
|
||||
<img src="/webnew/assetsnew/image/backgroundhero.png"
|
||||
alt="Hero Background"
|
||||
class="hero-bg" />
|
||||
|
||||
|
|
|
|||
|
|
@ -6,16 +6,15 @@
|
|||
<title>@ViewData["Title"] - Laboratorium Lingkungan Hidup Jakarta</title>
|
||||
<link rel="stylesheet" href="~/webnew/lib/bootstrap/dist/css/bootstrap.min.css" />
|
||||
|
||||
<link rel="stylesheet" href="~/webnew/css/site.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/css/header.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/css/index.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/css/footer.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/css/hero.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/css/helpdesk.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/cssnew/site.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/cssnew/header.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/cssnew/index.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/cssnew/footer.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/cssnew/hero.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/cssnew/helpdesk.css" asp-append-version="true" />
|
||||
|
||||
|
||||
<link rel="stylesheet" href="~/WebApplication2.styles.css" asp-append-version="true" />
|
||||
<link rel="icon" type="image/png" href="~/webnew/assets/image/logo/icon logo.png" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
|
||||
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css" rel="stylesheet">
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
}
|
||||
|
||||
@section Style {
|
||||
<link rel="stylesheet" href="~/webnew/css/tentangkami.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/cssnew/tentangkami.css" asp-append-version="true" />
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -15,35 +15,10 @@
|
|||
<section class="about-section">
|
||||
<div class="container">
|
||||
|
||||
<div class="organisasi-card">
|
||||
|
||||
<h3 class="text-center">Struktur Organisasi LLHD</h3>
|
||||
<img src="~/webnew/assets/image/strukturorganisasi.png" class="about-img rounded-2" />
|
||||
</div>
|
||||
|
||||
<div class="row g-4">
|
||||
|
||||
<div class="col-md-6">
|
||||
<div class="about-card">
|
||||
|
||||
<img src="~/webnew/assets/image/visimisi.png" class="about-img" />
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6">
|
||||
<div class="about-card">
|
||||
|
||||
<img src="~/webnew/assets/image/sejarah.png" class="about-img" />
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="value-section">
|
||||
|
||||
<h6 class="mb-4 text-center">Value LLHD</h6>
|
||||
<h3 class="text-center">Value LLHD</h3>
|
||||
<br />
|
||||
|
||||
|
||||
<div class="row">
|
||||
|
|
@ -52,7 +27,7 @@
|
|||
<div class="icon-box">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-shield-check-icon lucide-shield-check"><path d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" /><path d="m9 12 2 2 4-4" /></svg>
|
||||
</div>
|
||||
<span class="value-label">Integritas</span>
|
||||
<h5 class="value-label">Integritas</h5>
|
||||
<p>Menjunjung tinggi kejujuran, objektivitas, dan etika pada setiap proses layanan</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -61,7 +36,7 @@
|
|||
<div class="icon-box">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-briefcase-business-icon lucide-briefcase-business"><path d="M12 12h.01" /><path d="M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2" /><path d="M22 13a18.15 18.15 0 0 1-20 0" /><rect width="20" height="14" x="2" y="6" rx="2" /></svg>
|
||||
</div>
|
||||
<span class="value-label">Profesional</span>
|
||||
<h5 class="value-label">Profesional</h5>
|
||||
<p>Didukung oleh SDM yang kompeten, berpengalaman, serta memberikan layanan cepat, responsif, dan berkualitas</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -70,7 +45,7 @@
|
|||
<div class="icon-box">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-clipboard-check-icon lucide-clipboard-check"><rect width="8" height="4" x="8" y="2" rx="1" ry="1" /><path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" /><path d="m9 14 2 2 4-4" /></svg>
|
||||
</div>
|
||||
<span class="value-label">Akuntabel</span>
|
||||
<h5 class="value-label">Akuntabel</h5>
|
||||
<p>Orientasi pada proses yang dapat dipertanggungjawabkan dan telusur sesuai dengan standar dan prosedur</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -79,7 +54,7 @@
|
|||
<div class="icon-box">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-recycle-icon lucide-recycle"><path d="M7 19H4.815a1.83 1.83 0 0 1-1.57-.881 1.785 1.785 0 0 1-.004-1.784L7.196 9.5" /><path d="M11 19h8.203a1.83 1.83 0 0 0 1.556-.89 1.784 1.784 0 0 0 0-1.775l-1.226-2.12" /><path d="m14 16-3 3 3 3" /><path d="M8.293 13.596 7.196 9.5 3.1 10.598" /><path d="m9.344 5.811 1.093-1.892A1.83 1.83 0 0 1 11.985 3a1.784 1.784 0 0 1 1.546.888l3.943 6.843" /><path d="m13.378 9.633 4.096 1.098 1.097-4.096" /></svg>
|
||||
</div>
|
||||
<span class="value-label">Berkelanjutan</span>
|
||||
<h5 class="value-label">Berkelanjutan</h5>
|
||||
<p>Komitmen untuk menjaga kualitas lingkungan dan mutu layanan serta inovasi dan perbaikan</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -87,5 +62,37 @@
|
|||
|
||||
</div>
|
||||
|
||||
<div class="organisasi-card">
|
||||
|
||||
<h3 class="text-center">Struktur Organisasi LLHD</h3>
|
||||
<div class="organisasi-wrapper">
|
||||
<img src="~/webnew/assetsnew/image/strukturorganisasi.png"
|
||||
class="struktur-img" />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="row g-4">
|
||||
|
||||
<div class="col-md-6">
|
||||
<div class="about-card">
|
||||
|
||||
<img src="~/webnew/assetsnew/image/visimisi.png" class="about-img" />
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6">
|
||||
<div class="about-card">
|
||||
|
||||
<img src="~/webnew/assetsnew/image/sejarah.png" class="about-img" />
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
|
@ -3,11 +3,11 @@
|
|||
Layout = "~/Views/WebNew/Shared/_Layout.cshtml";
|
||||
}
|
||||
@section Style {
|
||||
<link rel="stylesheet" href="~/webnew/css/video.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/webnew/cssnew/video.css" asp-append-version="true" />
|
||||
}
|
||||
|
||||
@section Scripts {
|
||||
<script src="~/webnew/pages/video.js"></script>
|
||||
<script src="~/webnew/pagesnew/video.js"></script>
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 56 KiB |
|
Before Width: | Height: | Size: 52 KiB |
|
Before Width: | Height: | Size: 829 KiB |
|
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 54 KiB |
|
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.8 KiB |
|
Before Width: | Height: | Size: 116 KiB After Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 349 KiB After Width: | Height: | Size: 349 KiB |
|
Before Width: | Height: | Size: 364 KiB After Width: | Height: | Size: 364 KiB |
|
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 78 KiB |
|
Before Width: | Height: | Size: 113 KiB After Width: | Height: | Size: 113 KiB |
|
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 82 KiB |
|
Before Width: | Height: | Size: 129 KiB After Width: | Height: | Size: 129 KiB |
|
Before Width: | Height: | Size: 103 KiB After Width: | Height: | Size: 103 KiB |
|
Before Width: | Height: | Size: 113 KiB After Width: | Height: | Size: 113 KiB |
|
Before Width: | Height: | Size: 81 KiB After Width: | Height: | Size: 81 KiB |
|
Before Width: | Height: | Size: 113 KiB After Width: | Height: | Size: 113 KiB |
|
Before Width: | Height: | Size: 252 KiB After Width: | Height: | Size: 252 KiB |
|
Before Width: | Height: | Size: 331 KiB After Width: | Height: | Size: 331 KiB |
|
Before Width: | Height: | Size: 6.6 MiB After Width: | Height: | Size: 6.6 MiB |
|
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 1.9 MiB |
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 122 KiB After Width: | Height: | Size: 122 KiB |
|
Before Width: | Height: | Size: 141 KiB After Width: | Height: | Size: 141 KiB |
|
Before Width: | Height: | Size: 365 B After Width: | Height: | Size: 365 B |
|
Before Width: | Height: | Size: 594 B After Width: | Height: | Size: 594 B |
|
Before Width: | Height: | Size: 943 B After Width: | Height: | Size: 943 B |
|
Before Width: | Height: | Size: 818 B After Width: | Height: | Size: 818 B |
|
Before Width: | Height: | Size: 448 B After Width: | Height: | Size: 448 B |
|
Before Width: | Height: | Size: 634 B After Width: | Height: | Size: 634 B |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 629 B After Width: | Height: | Size: 629 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 949 B After Width: | Height: | Size: 949 B |
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 802 B After Width: | Height: | Size: 802 B |
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 279 KiB After Width: | Height: | Size: 279 KiB |
|
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 94 KiB |
|
After Width: | Height: | Size: 60 KiB |
|
After Width: | Height: | Size: 56 KiB |
|
Before Width: | Height: | Size: 316 KiB After Width: | Height: | Size: 316 KiB |
|
Before Width: | Height: | Size: 203 KiB After Width: | Height: | Size: 203 KiB |
|
Before Width: | Height: | Size: 76 KiB After Width: | Height: | Size: 76 KiB |
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 39 KiB |