forked from Sefaria/Sefaria-Project
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
49 additions
and
53 deletions.
There are no files selected for viewing
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
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,45 @@ | ||
{% extends "base.html" %} | ||
{% load i18n sefaria_tags %} | ||
|
||
{% block title %}Texts Digitized by Pecha{% endblock %} | ||
|
||
{% block description %}{% endblock %} | ||
|
||
{% block content %} | ||
|
||
<div id="digitizedBySefaria" class="container doc static"> | ||
<div class="inner"> | ||
|
||
<h1> | ||
<span class="int-en">Texts Digitized by Pecha</span> | ||
<span class="int-he">དཔེ་ཆ་དྲ་བས་ཨང་བསྒྱུར་བྱས་པ།</span> | ||
</h1> | ||
|
||
<p> | ||
<span class="int-en">Description coming soon ...</span> | ||
<span class="int-he">Description coming soon ...</span> | ||
</p> | ||
|
||
|
||
<ul id="texts"> | ||
{% for text in texts %} | ||
<li> | ||
{% if request.interfaceLang == "hebrew" %} | ||
|
||
<div>{{ text.title|he_ref_link }}</div> | ||
<div class='sub'>{{ text.heVersionTitle|default:text.versionTitle }} ({{ text.language|lang_code }})</div> | ||
|
||
{% else %} | ||
|
||
<div>{{ text.title|ref_link }}</div> | ||
<div class='sub'>{{ text.versionTitle }} ({{ text.language|lang_code }})</div> | ||
|
||
{% endif %} | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
|
||
</div> | ||
</div> | ||
|
||
{% endblock %} |
This file was deleted.
Oops, something went wrong.