Skip to content

Commit

Permalink
Add container styling and dynamic content placeholders
Browse files Browse the repository at this point in the history
Introduced a styled container for improved layout and readability. Added placeholders for dynamic content and a "Load More" button to facilitate future enhancements.

Signed-off-by: Gregory <[email protected]>
  • Loading branch information
tajemniktv committed Oct 23, 2024
1 parent 5a259f1 commit f95fc60
Showing 1 changed file with 45 additions and 10 deletions.
55 changes: 45 additions & 10 deletions site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@
padding: 20px;
}

.container {
max-width: 800px;
margin: auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
color: #343a40;
text-align: center;
Expand All @@ -35,19 +44,45 @@
a:hover {
color: #0056b3;
}

/* Additional styling for dynamic content */
.placeholder {
background: #e9ecef;
border-radius: 4px;
height: 20px;
width: 70%;
margin: 20px 0;
}

.btn-primary {
background-color: #007bff;
border: none;
}

.btn-primary:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<h1>Unpublished Docs</h1>
<ul>
<!-- Assuming files in "unpublished docs" and dynamically listing them -->
<li><a href="Unpublished%20docs/DEV ENGINE INI LOW PERFORMANCE.md">doc1.md</a></li>
<li><a href="Unpublished%20docs/DEV ENGINE INI LOW PERFORMANCE.md">doc2.md</a></li>
<li><a href="Unpublished%20docs/DEV ENGINE INI LOW PERFORMANCE.md">doc3.md</a></li>
<li><a href="Unpublished%20docs/DEV ENGINE INI LOW PERFORMANCE.md">doc4.md</a></li>
<li><a href="Unpublished%20docs/DEV ENGINE INI LOW PERFORMANCE.md">doc5.md</a></li>
<!-- Add more links as needed -->
</ul>
<div class="container">
<h1>Unpublished Docs</h1>
<ul>
<!-- Assuming files in "unpublished docs" and dynamically listing them -->
<li><a href="Unpublished%20docs/doc1.md">Document 1</a></li>
<li><a href="Unpublished%20docs/doc2.md">Document 2</a></li>
<li><a href="Unpublished%20docs/doc3.md">Document 3</a></li>
<li><a href="Unpublished%20docs/doc4.md">Document 4</a></li>
<li><a href="Unpublished%20docs/doc5.md">Document 5</a></li>
<!-- Placeholder for additional docs to be dynamically added -->
<div class="placeholder"></div>
<div class="placeholder"></div>
</ul>
<!-- Placeholder for future button or additional actions -->
<div class="text-center mt-4">
<button class="btn btn-primary">Load More</button>
</div>
</div>
<script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
Expand Down

0 comments on commit f95fc60

Please sign in to comment.