Skip to content

Commit

Permalink
upgrade to 0.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Saeid Darvishi committed Aug 24, 2015
1 parent 72fba29 commit e0f8f09
Show file tree
Hide file tree
Showing 17 changed files with 174 additions and 69 deletions.
14 changes: 10 additions & 4 deletions demo/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
import sys
import os
import shlex
import sphinx_minoo_theme

# if istall with pip
#import sphinx_minoo_theme

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
Expand Down Expand Up @@ -68,7 +70,7 @@
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = None
language = 'en'

# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
Expand All @@ -78,7 +80,7 @@

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
exclude_patterns = []
exclude_patterns = ['_build']

# The reST default role (used for this markup: `text`) to use for all
# documents.
Expand Down Expand Up @@ -120,7 +122,11 @@
#html_theme_options = {}

# Add any paths that contain custom themes here, relative to this directory.
html_theme_path = [sphinx_minoo_theme.get_html_theme_path()]

# if istall with pip
#html_theme_path = [sphinx_minoo_theme.get_html_theme_path()]

html_theme_path = ['_templates']

# The name for this set of Sphinx documents. If None, it defaults to
# "<project> v<release> documentation".
Expand Down
4 changes: 2 additions & 2 deletions sphinx_minoo_theme/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
class MinooVersion():
major = "0"
minor = "9"
micro = "5"
micro = "6"
level = "Beta"
release = r"2015/05/21"
release = r"2015/08/24"
def info(self):
info = ".".join([self.major, self.minor, self.micro])
return info
Expand Down
Binary file removed sphinx_minoo_theme/__init__.pyc
Binary file not shown.
9 changes: 7 additions & 2 deletions sphinx_minoo_theme/includes/bottom.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,12 @@
{%- if hasdoc('copyright') %}
{% trans path=pathto('copyright'), copyright=copyright|e %}&copy; <a href="{{ path }}">Copyright</a> {{ copyright }}.{% endtrans %}
{%- else %}
{% trans copyright=copyright|e %}&copy; Copyright {{ copyright }}.{% endtrans %}
{% trans copyright=copyright|e %}
<a rel="license" href="http://creativecommons.org/licenses/by-nc/4.0/" target="_blank">
<img alt="Creative Commons License" style="border-width:0;margin-bottom: 3px" src="https://i.creativecommons.org/l/by-nc/4.0/80x15.png" />
</a>
<span style="display: inline-block;vertical-align: middle" >{{ copyright }} </span>
{% endtrans %}
{%- endif %}
{%- endif %}
</p>
Expand All @@ -39,7 +44,7 @@
{%- if show_sphinx %}
<p style="font-size: 13px;">
{% trans sphinx_version=sphinx_version|e %}
Created using <a href="http://sphinx-doc.org/">Sphinx</a> ({{ sphinx_version }}) with <a href="https://github.com/saeiddrv/SphinxMinooTheme">Minoo</a> (Beta 0.9.5) theme.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> ({{ sphinx_version }}) with <a href="https://github.com/saeiddrv/SphinxMinooTheme">Minoo</a> (Beta 0.9.6) theme.
{% endtrans %}
</p>
{%- endif %}
Expand Down
12 changes: 7 additions & 5 deletions sphinx_minoo_theme/includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">


{{ metatags }}

{%- block htmltitle %}
<title>{{ title|striptags|e }}{{ titlesuffix }}</title>
{% if pagename != "index" %}
<title>{{ title|striptags|e }}{{ titlesuffix }}</title>
{% else %}
<title>{{ title|striptags|e }}</title>
{% endif %}
{%- endblock %}

{% if favicon %}
Expand All @@ -26,15 +29,15 @@
<link rel="stylesheet" type=text/css href="{{ pathto(cssfile, 1) }}">
{% endfor %}

<link rel="stylesheet" type=text/css href="{{ pathto('_static/bootstrap.min.css', 1) }}">
<link rel="stylesheet" type=text/css href="{{ pathto('_static/font-awesome.min.css', 1) }}">
<link rel="stylesheet" type=text/css href="{{ pathto('_static/bootstrap.min.css', 1) }}">
<link rel="stylesheet" type=text/css href="{{ pathto('_static/pygment-solarized-light.css', 1) }}">

{% if theme_direction == "ltr" %}
<link rel="stylesheet" type=text/css href="{{ pathto('_static/minoo-ltr.css', 1) }}">
{% else %}
<link rel="stylesheet" type=text/css href="{{ pathto('_static/minoo-rtl.css', 1) }}">
{% endif %}
{% endif %}

{%- block linktags %}
{%- if hasdoc('about') %}
Expand Down Expand Up @@ -96,4 +99,3 @@

<script type="text/javascript" src="{{ pathto('_static/minoo.js', 1) }}"></script>
<script type="text/javascript" src="{{ pathto('_static/modernizr.min.js', 1) }}"></script>

1 change: 1 addition & 0 deletions sphinx_minoo_theme/includes/top.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<a><i class="fa fa-folder-open-o"></i>&nbsp; {{ title }}</a>
{% else %}
<a><i class="fa fa-folder-o"></i>&nbsp; {{glossary.root_page}}</a>
<a href="http://coderz.ir/python" class="top-src" target="_blank"><i class="fa fa-map-marker"></i>&nbsp; در کدرز</a>
{% endif %}
{% if pagename != "search" %}
{% if display_github %}
Expand Down
4 changes: 2 additions & 2 deletions sphinx_minoo_theme/static/font-awesome.min.css

Large diffs are not rendered by default.

Binary file modified sphinx_minoo_theme/static/fonts/FontAwesome.otf
Binary file not shown.
Binary file modified sphinx_minoo_theme/static/fonts/fontawesome-webfont.eot
Binary file not shown.
105 changes: 90 additions & 15 deletions sphinx_minoo_theme/static/fonts/fontawesome-webfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified sphinx_minoo_theme/static/fonts/fontawesome-webfont.ttf
Binary file not shown.
Binary file modified sphinx_minoo_theme/static/fonts/fontawesome-webfont.woff
Binary file not shown.
Binary file modified sphinx_minoo_theme/static/fonts/fontawesome-webfont.woff2
Binary file not shown.
5 changes: 5 additions & 0 deletions sphinx_minoo_theme/static/jquery.js

Large diffs are not rendered by default.

39 changes: 22 additions & 17 deletions sphinx_minoo_theme/static/minoo-ltr.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ html{height:100%}
a,ul>li>a,ol>li>a{text-decoration:none!important;color:#5C6BC0;padding:0}
a:hover,ul>li>a:hover,ol>li>a:hover{color:#66BB6A}
i{vertical-align:middle}
h1,h2,h3,h4,h5,h6{font-weight:bold;color:#000000}
h1,h2,h3,h4,h5,h6{font-weight:bold;color:#000000;display:inline-block}
h1,h2{padding:10px 0 10px 15px}
h1{background-color:#5C6BC0;color:#FFFFFF;line-height:26px;border-left:5px #E8EAF6 solid}
p{line-height:24px;margin:0;font-size:16px}
h1{font-size:175%}
h2{font-size:150%}
Expand All @@ -31,11 +33,11 @@ th{text-align:left}
td,th{vertical-align:top}
thead{background-color:#5C6BC0;color:#FFFFFF}
caption{text-align:center;color:#212121;padding:8px 24px;background-color:#E8EAF6}
code,kbd,pre,samp{font-family:monospace;background-color:#E8EAF6;border-radius:0;border:none;direction:ltr;font-size:12px}
code,kbd,pre,samp{background-color:#E8EAF6;border-radius:0;border:none;direction:ltr;font-size:12px}
code,kbd,samp{padding:2px 6px;white-space:pre}
pre{margin:0;overflow-wrap:normal}
ul,ol{padding-left:24px}
ul li{list-style:disc;margin-top:1px}
ul,ol{padding-left:24px;font-size:16px}
ul li{list-style:disc;margin-top:1px;font-size:16px}
dl dt{font-weight:bold}
dl dd{margin:0 0 12px 24px}

Expand Down Expand Up @@ -113,7 +115,8 @@ div[class^='highlight']{overflow-x:auto;direction:ltr}
div[class^='highlight'] td.code{width:100%}
div[class^='highlight-'] .highlight,div[class^='last highlight-'] .highlight{margin-bottom:0}
a.headerlink{visibility:hidden;content:none}
h1:hover a.headerlink:before,h2:hover a.headerlink:before,h3:hover a.headerlink:before,caption:hover a.headerlink:before{visibility:visible;display:inline-block;content:"\f13d";font-size:13px;color:#66BB6A;margin-left:5px}
h3:hover a.headerlink:before,caption:hover a.headerlink:before{font-family:FontAwesome;visibility:visible;display:inline-block;content:"\f13d";font-size:13px;color:#66BB6A;margin-left:5px;height:10px}
h1:hover a.headerlink:before,h2:hover a.headerlink:before{font-family:FontAwesome;visibility:visible;display:inline-block;content:"\f13d";font-size:13px;color:#FFFFFF;margin-left:5px;height:10px}
p.rubric{margin-bottom:12px;font-weight:bold}
.container{padding-right:0;padding-left:0;margin:0 0 24px 0;width:100%}
.linenodiv pre{border-left:0;background-color:#5C6BC0;color:#FFFFFF}
Expand Down Expand Up @@ -144,7 +147,8 @@ table.docutils.footnote{white-space:normal}
#sidebar-bottom-list #tree-toc ul{padding:0;margin:0 0 0 24px}
#sidebar-bottom-list #tree-toc ul li>a,#sidebar-bottom-list #tree-toc ul li.current>a{line-height:26px;border-left:0}
#sidebar-bottom-list #tree-toc ul li>a{color:#212121;background-color:#E8EAF6}
#sidebar-bottom-list #tree-toc ul li.current>a{color:#FFFFFF;background-color:#66BB6A}
#sidebar-bottom-list #tree-toc ul li.current>a,h2{color:#FFFFFF;background-color:#66BB6A}
h2{border-left:5px #E8EAF6 solid !important}
#sidebar-bottom-list #tree-toc ul li>ul>li>a{color:#FFFFFF;background-color:#A5D6A7}
#sidebar-bottom-list #tree-toc ul li>a:hover{border-left:5px #66BB6A solid;color:#212121}
#sidebar-bottom-list #tree-toc ul li.current>a:hover{border-left:5px #E8EAF6 solid;color:#FFFFFF}
Expand All @@ -162,26 +166,26 @@ table.docutils.footnote{white-space:normal}
.note .admonition-title:before,.tip .admonition-title:before,.hint .admonition-title:before,.attention .admonition-title:before,.important .admonition-title:before,.warning .admonition-title:before,.error .admonition-title:before,.danger .admonition-title:before,.caution .admonition-title:before,.admonition .admonition-title:before{margin-right:5px}
.admonition.note,.admonition.attention{background-color:#90CAF9}
.admonition.note .admonition-title,.admonition.attention .admonition-title{background-color:#42A5F5}
.admonition.note .admonition-title:before{content:"\f12a"}
.admonition.attention .admonition-title:before{content:"\f0e7"}
.admonition.note .admonition-title:before{font-family:FontAwesome;content:"\f12a"}
.admonition.attention .admonition-title:before{font-family:FontAwesome;content:"\f0e7"}
.admonition.tip,.admonition.important{background-color:#80CBC4}
.admonition.tip .admonition-title,.admonition.important .admonition-title{background-color:#26A69A}
.admonition.tip .admonition-title:before{content:"\f0eb"}
.admonition.important .admonition-title:before{content:"\f0a3"}
.admonition.tip .admonition-title:before{font-family:FontAwesome;content:"\f0eb"}
.admonition.important .admonition-title:before{font-family:FontAwesome;content:"\f0a3"}
.admonition.hint,.admonition.warning{background-color:#FFAB91}
.admonition.hint .admonition-title,.admonition.warning .admonition-title{background-color:#FF7043}
.admonition.hint .admonition-title:before{content:"\f075"}
.admonition.warning .admonition-title:before{content:"\f071"}
.admonition.hint .admonition-title:before{font-family:FontAwesome;content:"\f075"}
.admonition.warning .admonition-title:before{font-family:FontAwesome;content:"\f071"}
.admonition.error,.admonition.danger{background-color:#EF9A9A}
.admonition.error .admonition-title,.admonition.danger .admonition-title{background-color:#EF5350}
.admonition.error .admonition-title:before{content:"\f05e"}
.admonition.danger .admonition-title:before{content:"\f1e2"}
.admonition.error .admonition-title:before{font-family:FontAwesome;content:"\f05e"}
.admonition.danger .admonition-title:before{font-family:FontAwesome;content:"\f1e2"}
.admonition.caution{background-color:#C5E1A5}
.admonition.caution .admonition-title{background-color:#9CCC65}
.admonition.caution .admonition-title:before{content:"\f06e"}
.admonition.caution .admonition-title:before{font-family:FontAwesome;content:"\f06e"}
.admonition{background-color:#B0BEC5}
.admonition .admonition-title{background-color:#78909C}
.admonition .admonition-title:before{content:"\f040"}
.admonition .admonition-title:before{font-family:FontAwesome;content:"\f040"}
img.align-left,.figure.align-left,object.align-left{clear:left;float:left;margin-right:1em}
img.align-right,.figure.align-right,object.align-right{clear:right;float:right;margin-left:1em}
img.align-center,.figure.align-center,object.align-center{display:block;margin-left:auto;margin-right:auto}
Expand Down Expand Up @@ -213,7 +217,8 @@ div[class^='highlight']{width:100%;display:inline-block}
.table-responsive{border:1px solid #E8EAF6;border-top:none}
.table{display:table;width:100%}}
::selection{background-color:#5C6BC0;color:#E8EAF6}

td{font-size:14px}
tr.row-even{background-color:#F5F5F5;}

/* custome style */

40 changes: 23 additions & 17 deletions sphinx_minoo_theme/static/minoo-rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,14 @@ box[note,attention[body:90CAF9,title:42A5F5]-tip,important[body:80CBC4,title:26A
@font-face{font-family:"Inconsolata";font-style:normal;font-weight:400;src:local("Inconsolata"),url(fonts/Inconsolata.ttf) format("truetype")}@font-face{font-family:"Inconsolata";font-style:normal;font-weight:700;src:local("Inconsolata Bold"),local("Inconsolata-Bold"),url(fonts/Inconsolata-Bold.ttf) format("truetype")}@font-face{font-family:"Lato";font-style:normal;font-weight:400;src:local("Lato Regular"),local("Lato-Regular"),url(fonts/Lato-Regular.ttf) format("truetype")}@font-face{font-family:"Lato";font-style:normal;font-weight:700;src:local("Lato Bold"),local("Lato-Bold"),url(fonts/Lato-Bold.ttf) format("truetype")}@font-face{font-family:"Roboto Slab";font-style:normal;font-weight:400;src:local("Roboto Slab Regular"),local("RobotoSlab-Regular"),url(fonts/RobotoSlab-Regular.ttf) format("truetype")}@font-face{font-family:"Roboto Slab";font-style:normal;font-weight:700;src:local("Roboto Slab Bold"),local("RobotoSlab-Bold"),url(fonts/RobotoSlab-Bold.ttf) format("truetype")}

/* HTML elements */
body{font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;font-weight:normal;color:#212121;min-height:100%;font-size:16px;overflow-x:hidden}
body{font-family:'IranianSans',"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;font-weight:normal;color:#212121;min-height:100%;font-size:16px;overflow-x:hidden}
html{height:100%}
a,ul>li>a,ol>li>a{text-decoration:none!important;color:#5C6BC0;padding:0}
a:hover,ul>li>a:hover,ol>li>a:hover{color:#66BB6A}
i{vertical-align:middle}
h1,h2,h3,h4,h5,h6{font-weight:bold;color:#000000}
h1,h2,h3,h4,h5,h6{font-weight:bold;color:#000000;display:inline-block}
h1,h2{padding:10px 15px 10px 0}
h1{background-color:#5C6BC0;color:#FFFFFF;line-height:26px;border-right:5px #E8EAF6 solid}
p{line-height:24px;margin:0;font-size:16px}
h1{font-size:175%}
h2{font-size:150%}
Expand All @@ -31,11 +33,11 @@ th{text-align:right}
td,th{vertical-align:top}
thead{background-color:#5C6BC0;color:#FFFFFF}
caption{text-align:center;color:#212121;padding:8px 24px;background-color:#E8EAF6}
code,kbd,pre,samp{font-family:monospace;background-color:#E8EAF6;border-radius:0;border:none;direction:ltr;font-size:12px}
code,kbd,pre,samp{background-color:#E8EAF6;border-radius:0;border:none;direction:ltr;font-size:12px}
code,kbd,samp{padding:2px 6px;white-space:pre}
pre{margin:0;overflow-wrap:normal;text-align:left}
ul,ol{padding-right:24px}
ul li{list-style:disc}
ul,ol{padding-right:24px;font-size:16px}
ul li{list-style:disc;font-size:16px}
dl dt{font-weight:bold}
dl dd{margin:0 24px 12px 0}

Expand Down Expand Up @@ -116,7 +118,8 @@ div[class^='highlight']{overflow-x:auto;direction:ltr}
div[class^='highlight'] td.code{width:100%}
div[class^='highlight-'] .highlight,div[class^='last highlight-'] .highlight{margin-bottom:0}
a.headerlink{visibility:hidden;content:none}
h1:hover a.headerlink:before,h2:hover a.headerlink:before,h3:hover a.headerlink:before,caption:hover a.headerlink:before{visibility:visible;display:inline-block;content:"\f13d";font-size:13px;color:#66BB6A;margin-right:5px}
h3:hover a.headerlink:before,caption:hover a.headerlink:before{font-family:FontAwesome;visibility:visible;display:inline-block;content:"\f13d";font-size:13px;color:#66BB6A;margin-right:5px;height:10px}
h1:hover a.headerlink:before,h2:hover a.headerlink:before{font-family:FontAwesome;visibility:visible;display:inline-block;content:"\f13d";font-size:13px;color:#FFFFFF;margin-right:5px;height:10px}
p.rubric{margin-bottom:12px;font-weight:bold}
.container{padding-right:0;padding-left:0;margin:0 0 24px 0;width:100%}
.linenodiv pre{border-right:0;background-color:#5C6BC0;color:#FFFFFF}
Expand Down Expand Up @@ -147,7 +150,8 @@ table.docutils.footnote{white-space:normal}
#sidebar-bottom-list #tree-toc ul{padding:0;margin:0 24px 0 0}
#sidebar-bottom-list #tree-toc ul li>a,#sidebar-bottom-list #tree-toc ul li.current>a{line-height:26px;border-right:0}
#sidebar-bottom-list #tree-toc ul li>a{color:#212121;background-color:#E8EAF6}
#sidebar-bottom-list #tree-toc ul li.current>a{color:#FFFFFF;background-color:#66BB6A}
#sidebar-bottom-list #tree-toc ul li.current>a, h2{color:#FFFFFF;background-color:#66BB6A}
h2{border-right:5px #E8EAF6 solid !important}
#sidebar-bottom-list #tree-toc ul li>ul>li>a{color:#FFFFFF;background-color:#A5D6A7}
#sidebar-bottom-list #tree-toc ul li>a:hover{border-right:5px #66BB6A solid;color:#212121}
#sidebar-bottom-list #tree-toc ul li.current>a:hover{border-right:5px #E8EAF6 solid;color:#FFFFFF}
Expand All @@ -165,26 +169,26 @@ table.docutils.footnote{white-space:normal}
.note .admonition-title:before,.tip .admonition-title:before,.hint .admonition-title:before,.attention .admonition-title:before,.important .admonition-title:before,.warning .admonition-title:before,.error .admonition-title:before,.danger .admonition-title:before,.caution .admonition-title:before,.admonition .admonition-title:before{margin-left:5px}
.admonition.note,.admonition.attention{background-color:#90CAF9}
.admonition.note .admonition-title,.admonition.attention .admonition-title{background-color:#42A5F5}
.admonition.note .admonition-title:before{content:"\f12a"}
.admonition.attention .admonition-title:before{content:"\f0e7"}
.admonition.note .admonition-title:before{font-family:FontAwesome;content:"\f12a"}
.admonition.attention .admonition-title:before{font-family:FontAwesome;content:"\f0e7"}
.admonition.tip,.admonition.important{background-color:#80CBC4}
.admonition.tip .admonition-title,.admonition.important .admonition-title{background-color:#26A69A}
.admonition.tip .admonition-title:before{content:"\f0eb"}
.admonition.important .admonition-title:before{content:"\f0a3"}
.admonition.tip .admonition-title:before{font-family:FontAwesome;content:"\f0eb"}
.admonition.important .admonition-title:before{font-family:FontAwesome;content:"\f0a3"}
.admonition.hint,.admonition.warning{background-color:#FFAB91}
.admonition.hint .admonition-title,.admonition.warning .admonition-title{background-color:#FF7043}
.admonition.hint .admonition-title:before{content:"\f075"}
.admonition.warning .admonition-title:before{content:"\f071"}
.admonition.hint .admonition-title:before{font-family:FontAwesome;content:"\f075"}
.admonition.warning .admonition-title:before{font-family:FontAwesome;content:"\f071"}
.admonition.error,.admonition.danger{background-color:#EF9A9A}
.admonition.error .admonition-title,.admonition.danger .admonition-title{background-color:#EF5350}
.admonition.error .admonition-title:before{content:"\f05e"}
.admonition.danger .admonition-title:before{content:"\f1e2"}
.admonition.error .admonition-title:before{font-family:FontAwesome;content:"\f05e"}
.admonition.danger .admonition-title:before{font-family:FontAwesome;content:"\f1e2"}
.admonition.caution{background-color:#C5E1A5}
.admonition.caution .admonition-title{background-color:#9CCC65}
.admonition.caution .admonition-title:before{content:"\f06e"}
.admonition.caution .admonition-title:before{font-family:FontAwesome;content:"\f06e"}
.admonition{background-color:#B0BEC5}
.admonition .admonition-title{background-color:#78909C}
.admonition .admonition-title:before{content:"\f040"}
.admonition .admonition-title:before{font-family:FontAwesome;content:"\f040"}
img.align-left,.figure.align-left,object.align-left{clear:left;float:left;margin-right:1em}
img.align-right,.figure.align-right,object.align-right{clear:right;float:right;margin-left:1em}
img.align-center,.figure.align-center,object.align-center{display:block;margin-left:auto;margin-right:auto}
Expand Down Expand Up @@ -216,6 +220,8 @@ div[class^='highlight']{width:100%;display:inline-block}
.table-responsive{border:1px solid #E8EAF6;border-top:none}
.table{display:table;width:100%}}
::selection{background-color:#5C6BC0;color:#E8EAF6}
td{font-size:14px}
tr.row-even{background-color:#F5F5F5;}


/* custome style */
Expand Down
10 changes: 5 additions & 5 deletions sphinx_minoo_theme/theme.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
inherit = basic
#
# Set minoo-rtl.css to "right-to-left" languages.
stylesheet = minoo-rtl.css
stylesheet = minoo-ltr.css

[options]
# Set "rtl" to "right-to-left" languages.
direction = rtl
direction = ltr
#
# See here: http://www.w3schools.com/tags/ref_language_codes.asp
language = fa
language = en
#
# Set max-width property of pages (default=800px).
body_max_width = 800px
Expand All @@ -23,7 +23,7 @@ website =
facebook =
googleplus =
linkedin =
twitter = https://twitter.com/saeiddrv
github = https://github.com/saeiddrv
twitter =
github = https://github.com/saeiddrv/SphinxMinooTheme
bitbucket =

0 comments on commit e0f8f09

Please sign in to comment.