More &yet branding
This commit is contained in:
		
							
								
								
									
										21
									
								
								docs/_static/haiku.css
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										21
									
								
								docs/_static/haiku.css
									
									
									
									
										vendored
									
									
								
							@@ -409,3 +409,24 @@ div.viewcode-block:target {
 | 
			
		||||
    padding: 0 12px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
#from_andyet {
 | 
			
		||||
    -webkit-box-shadow: #CCC 0px 0px 3px;
 | 
			
		||||
    background: rgba(255, 255, 255, 1);
 | 
			
		||||
    bottom: 0px;
 | 
			
		||||
    right: 17px;
 | 
			
		||||
    padding: 3px 10px;
 | 
			
		||||
    position: fixed;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#from_andyet h2 {
 | 
			
		||||
    background-image: url("images/from_&yet.png");
 | 
			
		||||
    background-repeat: no-repeat;
 | 
			
		||||
    height: 29px;
 | 
			
		||||
    line-height: 0;
 | 
			
		||||
    text-indent: -9999em;
 | 
			
		||||
    width: 79px;
 | 
			
		||||
    margin-top: 0;
 | 
			
		||||
    margin: 0px;
 | 
			
		||||
    padding: 0px;
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										
											BIN
										
									
								
								docs/_static/header.png
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								docs/_static/header.png
									
									
									
									
										vendored
									
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 96 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								docs/_static/images/from_&yet.png
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								docs/_static/images/from_&yet.png
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 2.7 KiB  | 
							
								
								
									
										70
									
								
								docs/_templates/layout.html
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										70
									
								
								docs/_templates/layout.html
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,70 @@
 | 
			
		||||
{#
 | 
			
		||||
    haiku/layout.html
 | 
			
		||||
    ~~~~~~~~~~~~~~~~~
 | 
			
		||||
 | 
			
		||||
    Sphinx layout template for the haiku theme.
 | 
			
		||||
 | 
			
		||||
    :copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS.
 | 
			
		||||
    :license: BSD, see LICENSE for details.
 | 
			
		||||
#}
 | 
			
		||||
{% extends "basic/layout.html" %}
 | 
			
		||||
{% set script_files = script_files + ['_static/theme_extras.js'] %}
 | 
			
		||||
{% set css_files = css_files + ['_static/print.css'] %}
 | 
			
		||||
 | 
			
		||||
{# do not display relbars #}
 | 
			
		||||
{% block relbar1 %}{% endblock %}
 | 
			
		||||
{% block relbar2 %}{% endblock %}
 | 
			
		||||
 | 
			
		||||
{% macro nav() %}
 | 
			
		||||
        <p>
 | 
			
		||||
        {%- block haikurel1 %}
 | 
			
		||||
        {%- endblock %}
 | 
			
		||||
        {%- if prev %}
 | 
			
		||||
        «  <a href="{{ prev.link|e }}">{{ prev.title }}</a>
 | 
			
		||||
          ::  
 | 
			
		||||
        {%- endif %}
 | 
			
		||||
        <a class="uplink" href="{{ pathto(master_doc) }}">{{ _('Contents') }}</a>
 | 
			
		||||
        {%- if next %}
 | 
			
		||||
          ::  
 | 
			
		||||
        <a href="{{ next.link|e }}">{{ next.title }}</a>  »
 | 
			
		||||
        {%- endif %}
 | 
			
		||||
        {%- block haikurel2 %}
 | 
			
		||||
        {%- endblock %}
 | 
			
		||||
        </p>
 | 
			
		||||
{% endmacro %}
 | 
			
		||||
 | 
			
		||||
{% block content %}
 | 
			
		||||
      <div class="header">
 | 
			
		||||
        {%- block haikuheader %}
 | 
			
		||||
        {%- if theme_full_logo != "false" %}
 | 
			
		||||
        <a href="{{ pathto('index') }}">
 | 
			
		||||
          <img class="logo" src="{{ pathto('_static/' + logo, 1) }}" alt="Logo"/>
 | 
			
		||||
        </a>
 | 
			
		||||
        {%- else %}
 | 
			
		||||
        {%- if logo -%}
 | 
			
		||||
          <img class="rightlogo" src="{{ pathto('_static/' + logo, 1) }}" alt="Logo"/>
 | 
			
		||||
        {%- endif -%}
 | 
			
		||||
        <h1 class="heading"><a href="{{ pathto('index') }}">
 | 
			
		||||
          <span>{{ title|striptags }}</span></a></h1>
 | 
			
		||||
        <h2 class="heading"><span>{{ shorttitle|e }}</span></h2>
 | 
			
		||||
        {%- endif %}
 | 
			
		||||
        {%- endblock %}
 | 
			
		||||
      </div>
 | 
			
		||||
      <div class="topnav">
 | 
			
		||||
      {{ nav() }}
 | 
			
		||||
      </div>
 | 
			
		||||
      <div class="content">
 | 
			
		||||
        {#{%- if display_toc %}
 | 
			
		||||
        <div id="toc">
 | 
			
		||||
          <h3>Table Of Contents</h3>
 | 
			
		||||
          {{ toc }}
 | 
			
		||||
        </div>
 | 
			
		||||
        {%- endif %}#}
 | 
			
		||||
        {% block body %}{% endblock %}
 | 
			
		||||
      </div>
 | 
			
		||||
      <div class="bottomnav">
 | 
			
		||||
      {{ nav() }}
 | 
			
		||||
      </div>
 | 
			
		||||
      <a id="from_andyet" href="http://andyet.net"><h2>From &yet</h2></a>
 | 
			
		||||
{% endblock %}
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user