Changeset - 3eb70fcb8658
[Not reviewed]
0 5 0
Daniel Pono Takamori - 2 years ago 2021-10-19 04:32:02
pono@apache.org
temporarily(?) remove FAQs, Recommended Resources
5 files changed with 13 insertions and 4 deletions:
0 comments (0 inline, 0 general)
www/conservancy/static/press/kit.html
Show inline comments
 
{% extends "base_press.html" %}
 
{% extends "base_learn.html" %}
 
{% block subtitle %}Press Kit - {% endblock %}
 
{% block submenuselection %}Press Kit{% endblock %}
 
{% block content %}
 
<h1 id="PressInformation">Press Kit</h1>
 

	
 
<p>Here's a collection of documents (collated and individual) for distribution
 
   and reference.</p>
 

	
 
<p><a href="#fixme">Full Press Kit</a></p>
 
<p><a href="#fixme">Press Release</a></p>
 
<p><a href="#fixme">Glossary</a></p>
 
<p><a href="#fixme">Q&A</a></p>
 
<p><a href="#fixme">Quotes</a></p>
 

	
 
{% endblock %}
www/conservancy/templates/base_learn.html
Show inline comments
 
{% extends "base_conservancy.html" %}
 
{% block outercontent %}
 
    <div id="container">
 
         <div id="sidebar" class="{% block submenuselection %}other{% endblock %}">
 
            <h2>Learn</h2>
 
            {% include 'submenus/learn_partial.html' %}
 
                  <h2>Resources for Journalists</h2>
 
            <h2>Resources for Journalists</h2>
 
            <ul>
 
            <li class="Vizio"><a href="/vizio">Vizio</a></li>
 
            <li class="News"><a href="/news/">News</a></li>
 
            <li class="PressKit"><a href="/press/kit.html">Press Kit</a></li>
 
            <li class="Glossary"><a href="/copyleft-compliance/glossary.html">Glossary</a></li>
 
            </ul>
 
   </div>
 
               <div id="mainContent">{% block content %}{% endblock %}
 
               </div>
 
</div>
 
{% endblock %}
www/conservancy/templates/news/pressrelease_list.html
Show inline comments
 
{% extends "base_news.html" %}
 
{% block subtitle %}News - {% endblock %}
 

	
 
{% block outercontent %}
 
    <div id="container">
 
         <div id="sidebar" class="{% block submenuselection %}other{% endblock %}">
 
         <h2>News Index by Year</h2>
 
         <ul>
 
         {% for year in date_list reversed %}<li class="{{ year|date:"Y" }}"><a href="{{ year|date:"Y" }}/">{{ year|date:"Y" }}</a></li>{% endfor %}
 
         </ul>
 
         <h2>Resources for Journalists</h2>
 
         <ul>
 
            <li class="Vizio"><a href="/vizio">Vizio</a></li>
 
            <li class="News"><a href="/news/">News</a></li>
 
            <li class="PressKit"><a href="/press/kit.html">Press Kit</a></li>
 
            <li class="Glossary"><a href="/copyleft-compliance/glossary.html">Glossary</a></li>
 
         </ul>
 

	
 
         </div>
 
         <div id="mainContent">
 
           <div class="breadcrumbs">
 
             <p><a href="/">Home</a> / <a href="/news/">News</a></p>
 
           </div>
 
         <h1><a href="/feeds/news/" class="feedlink"><img src="/img/feed-icon-14x14.png" alt="[RSS]"/></a> Conservancy News</h1>
 

	
 

	
 
{% ifnotequal news.number 1 %}<p>(Page {{ news.number }} of {{ news.paginator.num_pages }})</p>{% endifnotequal %}
 

	
 
{% for pressr in news %}
 
  {% if pressr.is_recent %}
 
    {% include "news/pressrelease_partial.html" with pressr=pressr show="summary" only %}
 
  {% else %}
 
    {% include "news/pressrelease_partial.html" with pressr=pressr show="dateline" only %}
 
  {% endif %}
 
{% endfor %}
 

	
 
<p>
 
{% if news.has_next %}<a class="next_page_button" href="?page={{ news.next_page_number }}">Next page (older) &raquo;</a>{% endif %}
 
{% if news.has_previous %}<a href="?page={{ news.previous_page_number }}">&laquo; Previous page (newer)</a>{% endif %}
 
</p>
 
{% if news.paginator.num_pages > 1 %}<p class="pagination_list"> {% for pagenum in news.paginator.page_range %}{% ifequal pagenum news.number %}[{{ pagenum }}]{% else %}<a href="?page={{ pagenum }}">{{ pagenum }}</a>{% endifequal %} {% endfor %}</p>{% endif %}
 
         </div>
 
 </div>
 
<div class="clear"></div>
 

	
 
{% endblock %}
www/conservancy/templates/submenus/learn_partial.html
Show inline comments
 
<ul>
 
  <li><a href="/copyleft-compliance/glossary.html">Glossary of Terms</a></li>
 
  <li><a href="/press/qanda.html">Q&A</a></li>
 
  <li><a href="#fixme">Recommended Resources</a></li>
 
  <li><a href="#fixme">In The News</a></li>
 
</ul>
www/conservancy/templates/submenus/what_we_do_partial.html
Show inline comments
 
<ul>
 
  <li><a href="/projects/">Member Projects</a></li>
 
  <li><a href="/copyleft-compliance/">Copyleft Compliance</a></li>
 
  <li><a href="/vizio/">Vizio</a></li>
 
  <li><a href="#fixme">FAQs</a></li>
 
</ul>
0 comments (0 inline, 0 general)