forked from nyergler/hieroglyph
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BUSY: asis (experiment) -- to fix bug nyergler#102
- Loading branch information
Albert Mietus
authored and
Albert Mietus
committed
Jul 23, 2015
1 parent
bb747f6
commit 273f785
Showing
4 changed files
with
36 additions
and
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,10 @@ | ||
<slide class="{% if slide_number==1 %}title-slide segue nobackground {% endif %}{% if slide_classes %}{{ ' '.join(slide_classes) }} {% endif %}level-{{ level }}"{% if id %} id="{{ id }}"{% endif %}> | ||
<hgroup> | ||
{% if title %}<h{{ level }}>{{ title }}</h{{ level }}> {% endif %} | ||
</hgroup> | ||
<article class="{{ content_classes|join(' ') }}"> | ||
{{ content }} | ||
<slide class="{% if slide_number==1 %}title-slide segue nobackground {% endif %}{% if slide_classes %}{{ ' '.join(slide_classes) }} {% endif %}level-{{ level }}"{% if id %} id="{{ id }}"{% endif %}> | ||
<hgroup> {% if title %}<h{{ level }}>{{ title }}</h{{ level }}> {% endif %}</hgroup> | ||
<article class="{{ content_classes|join(' ') }}"> | ||
{{ content }} | ||
|
||
{% if config.slide_numbers %}<div class="slide-no">{{ slide_number }}</div>{% endif %} | ||
{% if config.slide_footer %}<div class="slide-footer">{{ config.slide_footer }}</div>{% endif %} | ||
</article> | ||
</slide> | ||
|
||
{% if config.slide_numbers %} | ||
<div class="slide-no">{{ slide_number }}</div> | ||
{% endif %} | ||
{% if config.slide_footer %} | ||
<div class="slide-footer">{{ config.slide_footer }}</div> | ||
{% endif %} | ||
</article> | ||
</slide> |