X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/46a90d7cfe54bb6df2f99175abd0ad7d26b3da72..4616e23c1bd0474db31b4bc303aa17b61fc3cefb:/apps/wolnelektury_core/templates/main_page.html diff --git a/apps/wolnelektury_core/templates/main_page.html b/apps/wolnelektury_core/templates/main_page.html index f9ff45ec4..57a442e92 100755 --- a/apps/wolnelektury_core/templates/main_page.html +++ b/apps/wolnelektury_core/templates/main_page.html @@ -7,9 +7,12 @@ {% block ogtitle %}{% trans "Wolne Lektury internet library" %}{% endblock %} {% block body %} - - <div id="big-cite"> - {% cite_promo %} + <div id="big-cite"{% if cite.image %} + style=" + background-image: url('{{ cite.image.url }}'); + background-position: 50% {{ cite.image_shift|default_if_none:50 }}%; + "{% endif %} > + {% render_cite cite %} </div> {% spaceless %} @@ -56,8 +59,9 @@ <li><a href="{% url suggest_publishing %}" id="suggest-publishing" class="ajaxable">{% trans "Missing a book?" %}</a></li> <li><a href="{% url publish_plan %}">{% trans "Publishing plan" %}</a></li> <li><a href="{% url api %}">API</a></li> - <li><a href="{% url lesmianator %}">LeÅmianator</a></li> - <li><a href="http://polski.wolnelektury.pl">MateriaÅy do nauki j. polskiego</a></li> + <li><a href="{% url oaipmh %}">OAI-PMH</a></li> + <li><a href="{% url lesmianator %}" lang="pl">LeÅmianator</a></li> + <li><a href="http://polski.wolnelektury.pl" lang="pl">MateriaÅy do nauki j. polskiego</a></li> </ul> </div> @@ -72,11 +76,11 @@ <div class="social-links"> <a href="http://pl-pl.facebook.com/pages/Wolne-Lektury/203084073268" title='Wolne Lektury @ Facebook'> - <img src="{% static "img/social/f.png" %}" /> + <img src="{% static "img/social/f.png" %}" alt="Wolne Lektury @ Facebook" /> </a> <a href="http://nk.pl/profile/30441509" title='Wolne Lektury @ NK'> - <img src="{% static "img/social/nk.png" %}" /> + <img src="{% static "img/social/nk.png" %}" alt="Wolne Lektury @ NK.pl" /> </a> </div> </div> @@ -89,8 +93,19 @@ {% block add_footer %} <p>{% trans "Image used:" %} -<a href="http://www.flickr.com/photos/lou/430980641/">books about architecture</a>, -saikofish@Flickr, -<a href="http://creativecommons.org/licenses/by-nc-sa/2.0/">CC BY NC SA</a>. +{% if cite.image %} + {% if cite.image_link %}<a href="{{ cite.image_link }}">{% endif %} + {% if cite.image_title %} + {{ cite.image_title }}{% else %} + untitled{% endif %}{% if cite.image_link %}</a>{% endif %}, + {% if cite.image_author %}{{ cite.image_author }},{% endif %} + {% if cite.image_license_link %}<a href="{{ cite.image_license_link }}">{% endif %} + {{ cite.image_license }} + {% if cite.image_license_link %}</a>{% endif %} +{% else %} + <a href="http://www.flickr.com/photos/lou/430980641/">books about architecture</a>, + saikofish@Flickr, + <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/">CC BY NC SA</a>. +{% endif %} </p> {% endblock %}