-
-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'blt-tomato' of https://github.com/nikhil25803/BLT into …
…blt-tomato
- Loading branch information
Showing
11 changed files
with
541 additions
and
678 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<div class="w-[70%] max-sm:w-[100%]"> | ||
<div class="px-10 mt-5"> | ||
<h3 class="font-[ubuntu] text-[17px] p-3 my-2 font-semibold">Screenshots</h3> | ||
<div id="image-slider" class="splide"> | ||
<div class="splide__track"> | ||
<ul class="splide__list"> | ||
{% if object.screenshot %} | ||
<li class="splide__slide"> | ||
<a href="{{ object.screenshot.url }}" | ||
target="_blank" | ||
class="flex align-middle justify-center" | ||
rel="noopener noreferrer"> | ||
<img src="{{ object.screenshot.url }}" | ||
class="rounded-lg" | ||
alt="issue screenshot" | ||
data-lightbox="image" | ||
height="auto" | ||
width="auto"> | ||
</a> | ||
</li> | ||
<br> | ||
<br> | ||
{% else %} | ||
{% for screenshot in screenshots %} | ||
<li class="splide__slide"> | ||
<a href="{{ screenshot.image.url }}" | ||
target="_blank" | ||
class="flex align-middle justify-center" | ||
rel="noopener noreferrer"> | ||
<img src="{{ screenshot.image.url }}" | ||
class="rounded-lg" | ||
alt="issue screenshot" | ||
data-lightbox="image" | ||
height="auto" | ||
width="auto"> | ||
</a> | ||
</li> | ||
<br> | ||
<br> | ||
{% endfor %} | ||
{% endif %} | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="px-10 mt-5 border-b-2 border-[#584ac080]"> | ||
{% if object.markdown_description %} | ||
<h3 class="font-[ubuntu] text-[16px] lg:text-[20px] p-3 my-2 font-semibold">Issue Description</h3> | ||
<p class="ml-3 text-justify text-[12px] lg:text-[14px] lg:w-11/12" | ||
id="bug_report">{{ object.markdown_description }}</p> | ||
{% endif %} | ||
</div> | ||
<div class="px-10 rounded-lg bg-white">{% include "comments2.html" %}</div> | ||
</div> |
Oops, something went wrong.