mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 02:15:10 +00:00 
			
		
		
		
	 582c0a6ac2
			
		
	
	
		582c0a6ac2
		
	
	
	
	
		
			
			svn+ssh://pythondev@svn.python.org/python/trunk ........ r80388 | georg.brandl | 2010-04-23 00:15:33 +0200 (Fr, 23 Apr 2010) | 1 line Add "report a bug" links in some prominent places. Make it clear that doc bugs can be mailed to docs@python.org. Clarify tracker usage. ........
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "!layout.html" %}
 | |
| {% block rootrellink %}
 | |
|         <li><img src="{{ pathto('_static/py.png', 1) }}" alt=""
 | |
|                  style="vertical-align: middle; margin-top: -1px"/></li>
 | |
|         <li><a href="{{ pathto('index') }}">{{ shorttitle }}</a>{{ reldelim1 }}</li>
 | |
| {% endblock %}
 | |
| {% block extrahead %}
 | |
|     <link rel="shortcut icon" type="image/png" href="{{ pathto('_static/py.png', 1) }}" />
 | |
| {{ super() }}
 | |
| {% endblock %}
 | |
| {% block footer %}
 | |
|     <div class="footer">
 | |
|     © <a href="{{ pathto('copyright') }}">Copyright</a> {{ copyright|e }}.
 | |
|     <br />
 | |
|     The Python Software Foundation is a non-profit corporation.  
 | |
|     <a href="http://www.python.org/psf/donations/">Please donate.</a>
 | |
|     <br />
 | |
|     Last updated on {{ last_updated|e }}.
 | |
|     <a href="{{ pathto('bugs') }}">Found a bug</a>?
 | |
|     <br />
 | |
|     Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> {{ sphinx_version|e }}.
 | |
|     </div>
 | |
| {% endblock %}
 | |
| {% block sidebarsourcelink %}
 | |
| {%- if show_source and has_source and sourcename %}
 | |
| <h3>{{ _('This Page') }}</h3>
 | |
| <ul class="this-page-menu">
 | |
|   <li><a href="{{ pathto('bugs') }}">Report a Bug</a></li>
 | |
|   <li><a href="{{ pathto('_sources/' + sourcename, true)|e }}"
 | |
|          rel="nofollow">Show Source</a></li>
 | |
| </ul>
 | |
| {%- endif %}
 | |
| {% endblock %}
 |