Skip to content

Commit

Permalink
Fix asset url prepend
Browse files Browse the repository at this point in the history
  • Loading branch information
Alanaktion committed Mar 26, 2023
1 parent 2be0bfb commit 1edce5a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.html
Expand Up @@ -20,7 +20,7 @@ <h2 id="dashboard">Dashboard</h2>
<p>The dashboard is the main page for logged in users. It provides a quick way to access all assigned projects, tasks, and bugs, as well as create new ones. In future updates, the dashboard will allow grouping issues by projects, sprints, and issue authors, as well as bulk editing of issues.</p>
</div>
<div class="col-md-5">
<img class="img-responsive" src="{{ '/img/dashboard.svg' | prepend: site.assetsUrl }}" alt>
<img class="img-responsive" src="{{ '/img/dashboard.svg' | prepend: site.assetsurl }}" alt>
</div>
</div>
<div class="row row-spaced">
Expand All @@ -29,7 +29,7 @@ <h2 id="issues">Issues</h2>
<p>Every issue has a dedicated page with everything about it right there. Users can leave comments on issues, and the history tab shows a log of everything that's happened with the issue. You can add users as a watcher so they'll be notified when the issue is updated or commented on. You can also view and add related issues.</p>
</div>
<div class="col-md-5 col-md-pull-7">
<img class="img-responsive" src="{{ '/img/issue.svg' | prepend: site.assetsUrl }}" alt>
<img class="img-responsive" src="{{ '/img/issue.svg' | prepend: site.assetsurl }}" alt>
</div>
</div>
<div class="row row-spaced">
Expand All @@ -38,7 +38,7 @@ <h2 id="backlog">Backlog</h2>
<p>Projects can be sorted and moved into customizable sprints from a simple drag-and-drop interface. The backlog also keeps a history of all previous sprints and their projects. The backlog can be filtered to only show projects related to a specific group of users.</p>
</div>
<div class="col-md-5">
<img class="img-responsive" src="{{ '/img/backlog.png' | prepend: site.assetsUrl }}" alt>
<img class="img-responsive" src="{{ '/img/backlog.png' | prepend: site.assetsurl }}" alt>
</div>
</div>
<div class="row row-spaced">
Expand All @@ -47,7 +47,7 @@ <h2 id="taskboard">Taskboard</h2>
<p>The taskboard displays the projects and tasks in a sprint with a scrum board interface. Tasks can be moved between projects, and users can update them with priorities, due dates, and hours spent working on the task. Like the backlog, the taskboard can be filtered to only show tasks and projects related to a specific group of users to prevent it from being excessively large when several departments have tasks in a single sprint.</p>
</div>
<div class="col-md-5 col-md-pull-7">
<img class="img-responsive" src="{{ '/img/taskboard.png' | prepend: site.assetsUrl }}" alt>
<img class="img-responsive" src="{{ '/img/taskboard.png' | prepend: site.assetsurl }}" alt>
</div>
</div>
</div>
Expand Down

0 comments on commit 1edce5a

Please sign in to comment.