|
@@ -6,18 +6,19 @@ import Sidenav from '@components/dashboard/_sidenav.astro';
|
|
|
import Scripts from '@components/_scripts.astro';
|
|
|
|
|
|
const title = 'AdminLTE 4 | Timeline Elements'
|
|
|
+const path = '../../../dist'
|
|
|
const mainPage = 'ui-elements'
|
|
|
const page = 'timeline'
|
|
|
---
|
|
|
<!DOCTYPE html>
|
|
|
<html lang="en">
|
|
|
<head>
|
|
|
- <Head title={title} />
|
|
|
+ <Head title={title} path={path} />
|
|
|
</head>
|
|
|
<body class="layout-fixed sidebar-expand-lg bg-body-tertiary">
|
|
|
<div class="app-wrapper">
|
|
|
- <Topbar />
|
|
|
- <Sidenav mainPage={mainPage} page={page} />
|
|
|
+ <Topbar path={path} />
|
|
|
+ <Sidenav path={path} mainPage={mainPage} page={page} />
|
|
|
<!-- Main content -->
|
|
|
<main class="app-main">
|
|
|
<div class="app-content-header">
|
|
@@ -106,10 +107,10 @@ const page = 'timeline'
|
|
|
<span class="time"><i class="fa-solid fa-clock"></i> 2 days ago</span>
|
|
|
<h3 class="timeline-header"><a href="#">Mina Lee</a> uploaded new photos</h3>
|
|
|
<div class="timeline-body">
|
|
|
- <img src="../../assets/img/user1-128x128.jpg" alt="...">
|
|
|
- <img src="../../assets/img/user3-128x128.jpg" alt="...">
|
|
|
- <img src="../../assets/img/user4-128x128.jpg" alt="...">
|
|
|
- <img src="../../assets/img/user5-128x128.jpg" alt="...">
|
|
|
+ <img src={path + '/assets/img/user1-128x128.jpg'} alt="...">
|
|
|
+ <img src={path + '/assets/img/user1-128x128.jpg'} alt="...">
|
|
|
+ <img src={path + '/assets/img/user1-128x128.jpg'} alt="...">
|
|
|
+ <img src={path + '/assets/img/user1-128x128.jpg'} alt="...">
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -152,6 +153,6 @@ const page = 'timeline'
|
|
|
</div>
|
|
|
<!-- ./app-wrapper -->
|
|
|
|
|
|
- <Scripts />
|
|
|
+ <Scripts path={path} />
|
|
|
</body>
|
|
|
</html>
|