Skip to content
This repository was archived by the owner on Jul 17, 2025. It is now read-only.

Commit 3237906

Browse files
committed
docs: screenshots
1 parent 20990cc commit 3237906

4 files changed

Lines changed: 75 additions & 2 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ jobs:
3232
pip install mkdocs
3333
pip install mkdocs-material
3434
pip install mkdocs-macros-plugin
35+
pip install mkdocs-glightbox
3536
3637
- name: Build and Deploy MkDocs
3738
run: mkdocs gh-deploy --force --remote-name origin

docs/screenshots.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
---
2+
hide:
3+
- navigation
4+
- toc
5+
---
6+
7+
# Screenshots
8+
Screenshots provide a visual guide to help you understand OBMS features and functionality. This section includes annotated images of key interfaces, workflows, and settings to make navigation easier. Whether you're setting up your system, managing orders, or configuring modules, these screenshots serve as a quick reference to ensure a smooth experience.
9+
10+
## General
11+
<div class="image-gallery">
12+
<div>
13+
<img src="https://dummyimage.com/600x400/eee/000?text=Coming+Soon" alt="Image title" loading="lazy" style="width: 100%;" />
14+
</div>
15+
<div>
16+
<img src="https://dummyimage.com/600x400/eee/000?text=Coming+Soon" alt="Image title" loading="lazy" style="width: 100%;" />
17+
</div>
18+
<div>
19+
<img src="https://dummyimage.com/600x400/eee/000?text=Coming+Soon" alt="Image title" loading="lazy" style="width: 100%;" />
20+
</div>
21+
</div>
22+
23+
## Customer Area
24+
<div class="image-gallery">
25+
<div>
26+
<img src="https://dummyimage.com/600x400/eee/000?text=Coming+Soon" alt="Image title" loading="lazy" style="width: 100%;" />
27+
</div>
28+
<div>
29+
<img src="https://dummyimage.com/600x400/eee/000?text=Coming+Soon" alt="Image title" loading="lazy" style="width: 100%;" />
30+
</div>
31+
<div>
32+
<img src="https://dummyimage.com/600x400/eee/000?text=Coming+Soon" alt="Image title" loading="lazy" style="width: 100%;" />
33+
</div>
34+
<div>
35+
<img src="https://dummyimage.com/600x400/eee/000?text=Coming+Soon" alt="Image title" loading="lazy" style="width: 100%;" />
36+
</div>
37+
<div>
38+
<img src="https://dummyimage.com/600x400/eee/000?text=Coming+Soon" alt="Image title" loading="lazy" style="width: 100%;" />
39+
</div>
40+
<div>
41+
<img src="https://dummyimage.com/600x400/eee/000?text=Coming+Soon" alt="Image title" loading="lazy" style="width: 100%;" />
42+
</div>
43+
</div>
44+
45+
## Admin Area
46+
<div class="image-gallery">
47+
<div>
48+
<img src="https://dummyimage.com/600x400/eee/000?text=Coming+Soon" alt="Image title" loading="lazy" style="width: 100%;" />
49+
</div>
50+
<div>
51+
<img src="https://dummyimage.com/600x400/eee/000?text=Coming+Soon" alt="Image title" loading="lazy" style="width: 100%;" />
52+
</div>
53+
<div>
54+
<img src="https://dummyimage.com/600x400/eee/000?text=Coming+Soon" alt="Image title" loading="lazy" style="width: 100%;" />
55+
</div>
56+
</div>

docs/stylesheets/extra.css

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,17 @@
237237
opacity: 1;
238238
}
239239

240+
.image-gallery {
241+
display: grid;
242+
justify-content: space-between;
243+
gap: .5rem;
244+
grid-template-columns: repeat(3, 1fr);
245+
grid-auto-rows: auto;
246+
}
247+
240248
@media (max-width: 959px) {
241-
.features-list {
249+
.features-list,
250+
.image-gallery {
242251
grid-template-columns: repeat(2, 1fr);
243252
}
244253
}
@@ -252,7 +261,8 @@
252261
grid-template-columns: repeat(1, 1fr);
253262
}
254263

255-
.features-list {
264+
.features-list,
265+
.image-gallery {
256266
grid-template-columns: repeat(1, 1fr);
257267
}
258268
}

mkdocs.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,12 @@ theme:
2525
- content.code.copy
2626
experimental: true
2727
copyright: "© 2025 OBMS (Open Business Management Software). All rights reserved."
28+
markdown_extensions:
29+
- attr_list
30+
- md_in_html
31+
- pymdownx.blocks.caption
2832
plugins:
33+
- glightbox
2934
- search
3035
- macros:
3136
macros_file: "mkdocs_macros.py"
@@ -66,6 +71,7 @@ extra_javascript:
6671
- js/extra.js
6772
nav:
6873
- Home: index.md
74+
- Screenshots: screenshots.md
6975
- Documentation:
7076
- About: docs/about.md
7177
- Getting Started:

0 commit comments

Comments
 (0)