Skip to content

Commit

Permalink
Fix relative paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Aamir Jawaid committed Jan 10, 2024
1 parent ff9f9cf commit 121f3d2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/_layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<title>{{ page.title }} - {{ site.title }}</title>
<link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}">
<link rel="stylesheet" href="{{site.baseurl}}/assets/css/main.css" | relative_url }}">
</head>
<body class="dark-theme">
<div id="container">
Expand Down
10 changes: 5 additions & 5 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: default
title: "Simple Salat Menubar"
---

<img src="/assets/images/dark-screenshot-large.png" alt="Screenshot for the menubar" style="width:500px;"/>
<img src="{{site.baseurl}}/assets/images/dark-screenshot-large.png" alt="Screenshot for the menubar" style="width:500px;"/>


Simple Salat Times is a small menubar for Mac that displays the upcoming salat times.
Expand All @@ -17,18 +17,18 @@ Simple Salat Times keeps features to what is essential so that you can keep up w
The app follows Apple's guidance on clean, simple design and style. It supports both light and dark mode.

<section class="info">
<img src="/assets/images/dark-screenshot.png" alt="Screenshot for the menubar" style="width:250px;"/>
<img src="/assets/images/light-screenshot.png" alt="Screenshot for the menubar" style="width:250px;"/>
<img src="{{site.baseurl}}/assets/images/dark-screenshot.png" alt="Screenshot for the menubar" style="width:250px;"/>
<img src="{{site.baseurl}}/assets/images/light-screenshot.png" alt="Screenshot for the menubar" style="width:250px;"/>
</section>

### Introduce more simplicity as needed

You can choose how long you would like the salat label to be

<img src="/assets/images/label-demo.gif" alt="Screenshot for the menubar" style="width:500px;"/>
<img src="{{site.baseurl}}/assets/images/label-demo.gif" alt="Screenshot for the menubar" style="width:500px;"/>

### Notifications

Not enabled by default, but if you choose, you can enable notifications to alert you when the salat time comes and also when the next one will begin.

<img src="/assets/images/notification-demo.png" alt="Screenshot for the menubar" style="width:350px;margin-left: auto;margin-right: auto;display:block;"/>
<img src="{{site.baseurl}}/assets/images/notification-demo.png" alt="Screenshot for the menubar" style="width:350px;margin-left: auto;margin-right: auto;display:block;"/>

0 comments on commit 121f3d2

Please sign in to comment.