Skip to content

Commit f222603

Browse files
author
Saeid Darvish
committed
*
2 parents 504712e + 8db059a commit f222603

10 files changed

Lines changed: 190 additions & 59 deletions

File tree

_static/logo/python-logo.png

81.6 KB
Loading

_static/logo/real-python-logo.svg

Lines changed: 98 additions & 0 deletions
Loading

_static/sitemap-index.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,11 @@
139139
<lastmod>2021-03-17T17:10:19+00:00</lastmod>
140140
<priority>0.80</priority>
141141
</url>
142+
<url>
143+
<loc>https://python.coderz.ir/python-resources.html</loc>
144+
<lastmod>2021-03-20T17:10:19+00:00</lastmod>
145+
<priority>0.80</priority>
146+
</url>
142147
<url>
143148
<loc>https://python.coderz.ir/index.html</loc>
144149
<lastmod>2021-03-17T17:10:23+00:00</lastmod>

_templates/sphinx_minoo_theme/includes/header.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
{% if theme_direction == "ltr" %}
3939
<link rel="stylesheet" type=text/css href="{{ pathto('_static/minoo-ltr.css', 1) }}">
4040
{% else %}
41-
<link rel="stylesheet" type=text/css href="{{ pathto('_static/minoo-20210219.css', 1) }}">
41+
<link rel="stylesheet" type=text/css href="{{ pathto('_static/minoo-20210327-2.css', 1) }}">
4242
{% endif %}
4343

4444
{%- block linktags %}
@@ -99,7 +99,7 @@
9999
</script>
100100
{% endif %}
101101

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

105105
<script async defer src="https://buttons.github.io/buttons.js"></script>

_templates/sphinx_minoo_theme/static/minoo-20210219.css renamed to _templates/sphinx_minoo_theme/static/minoo-20210327-2.css

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -395,4 +395,23 @@ a.side-donate{
395395
a.hover{
396396
background-color: #4CAF50;
397397
}
398+
/* -------- make other colors -------- */
399+
400+
.toctree-wrapper li.make-red >a {background-color: #ec407a;}
401+
.toctree-wrapper .make-red >a:hover {border-right: 5px #f48fb1 solid;}
402+
.toctree-wrapper li.make-red.toctree-l1 i {color: #f48fb1!important;}
403+
.toctree-wrapper li.make-red>ul>li>a {background-color: #f48fb1;}
404+
.toctree-wrapper li.make-red>ul>li>a:hover {border-right: 5px #ec407a solid;}
405+
406+
.toctree-wrapper li.make-green >a {background-color: #00695c;}
407+
.toctree-wrapper .make-green >a:hover {border-right: 5px #4db6ac solid;}
408+
.toctree-wrapper li.make-green.toctree-l1 i {color: #4db6ac!important;}
409+
.toctree-wrapper li.make-green>ul>li>a {background-color: #4db6ac;}
410+
.toctree-wrapper li.make-green>ul>li>a:hover {border-right: 5px #00695c solid;}
411+
412+
.toctree-wrapper li.make-black >a {background-color: #37474f;}
413+
.toctree-wrapper .make-black >a:hover {border-right: 5px #90a4ae solid;}
414+
.toctree-wrapper li.make-black.toctree-l1 i {color: #90a4ae!important;}
415+
.toctree-wrapper li.make-black>ul>li>a {background-color: #90a4ae;}
416+
.toctree-wrapper li.make-black>ul>li>a:hover {border-right: 5px #37474f solid;}
398417

_templates/sphinx_minoo_theme/static/minoo.js renamed to _templates/sphinx_minoo_theme/static/minoo-20210327.js

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -123,17 +123,20 @@ $( document ).ready(function() {
123123

124124
// custome function
125125
$("li[id^='wrapper-toctree-l1-'] a").each(function() {
126-
if ($(this).text().indexOf("گزارش توسعه")>=0) {
127-
$(this).addClass('reportmenufield');
126+
if ($(this).text().indexOf("گزارش توسعه")>=0) {
127+
$(this).parent().addClass('make-red');
128128
}
129-
if ($(this).text().indexOf("پیش‌گفتار")>=0) {
130-
$(this).addClass('reportmenufield');
129+
if ($(this).text().indexOf("پیش‌گفتار")>=0) {
130+
$(this).parent().addClass('make-red');
131131
}
132-
if ($(this).text().indexOf("گزارش حمایت‌های مالی")>=0) {
133-
$(this).addClass('reportmenufield');
132+
if ($(this).text().indexOf("گزارش حمایت‌های مالی")>=0) {
133+
$(this).parent().addClass('make-red');
134134
}
135-
if ($(this).text().indexOf("خودآزمایی") >= 0) {
136-
$(this).addClass('exercisesmenufield');
135+
if ($(this).text().indexOf("بهترین منابع آموزش پایتون") >= 0) {
136+
$(this).parent().addClass('make-green');
137+
}
138+
if ($(this).text().indexOf("محیط تعاملی پایتون") >= 0) {
139+
$(this).parent().addClass('make-green');
137140
}
138141
});
139142
// end custome function

index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@
4848
lessons/l20
4949
lessons/l21
5050
lessons/l22
51-
lessons/l23
5251
log
5352
donate-report
5453
python-interactive
54+
python-resources
5555

5656
|
5757

lessons/l23.rst

Lines changed: 0 additions & 48 deletions
This file was deleted.

log.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,17 @@
1111

1212

1313

14+
.. raw:: html
15+
16+
<p class="rubric" id="00122" ><a class="reference external" href="#00122">00122</a> - شنبه ۷ فروردین ۱۴۰۰</p>
17+
18+
* صفحه‌ای جدید با عنوان «بهترین منابع آموزش پایتون» به فهرست کتاب اضافه گردید که در آن منابعی پیرامون آموزش زبان برنامه‌نویسی پایتون که مطالعه آن‌ها در کنار یا ادامه این کتاب می‌تواند مفید باشد، معرفی خواهند شد.
19+
20+
21+
22+
----
23+
24+
1425
.. raw:: html
1526

1627
<p class="rubric" id="00121" ><a class="reference external" href="#00121">00121</a> - سه‌شنبه ۳ فروردین ۱۴۰۰</p>

python-resources.rst

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
2+
.. meta::
3+
:description: کتاب آنلاین و آزاد آموزش زبان برنامه‌نویسی پایتون به فارسی
4+
:keywords: پایتون, آموزش, آموزش برنامه نویسی, آموزش پایتون, برنامه نویسی, کتاب آموزش, آموزش فارسی, کتاب آزاد
5+
6+
بهترین منابع آموزش پایتون
7+
========================================================
8+
9+
در این بخش منابع خوب و رایگان آموزش زبان‌برنامه‌نویسی پایتون معرفی می‌گردد که مطالعه آن‌ها در کنار یا ادامه این کتاب می‌تواند مفید باشد.
10+
11+
----
12+
13+
|
14+
15+
|
16+
17+
آموزش جامع
18+
~~~~~~~~~~~~~~~~~~~~~~~~
19+
20+
|
21+
22+
.. figure:: /_static/logo/python-logo.png
23+
:align: right
24+
:width: 300
25+
:alt: بهترین منابع آموزش زبان برنامه‌نویسی پایتون
26+
27+
`The Python Tutorial <https://docs.python.org/tutorial>`__: آموزش رسمی زبان برنامه‌نویسی پایتون
28+
29+
30+
31+
|
32+
33+
|
34+
35+
36+
.. figure:: /_static/logo/real-python-logo.svg
37+
:align: right
38+
:width: 300
39+
:alt: بهترین منابع آموزش زبان برنامه‌نویسی پایتون
40+
41+
`Real Python Tutorials <https://realpython.com>`__: منبعی قابل اعتماد و بروز پیرامون مباحث زبان برنامه‌نویسی پایتون که شامل مطالبی از تمام سطوح (ابتدایی تا پیشرفته) کار با این زبان برنامه‌نویسی می‌شود.
42+
43+

0 commit comments

Comments
 (0)