Skip to content

Commit cd21c60

Browse files
Merge branch 'fix_title'
2 parents 4772039 + 6d68107 commit cd21c60

9 files changed

+267
-33
lines changed

.gitignore

Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,109 @@
22
*.swp
33
pandas/guide/.buildinfo
44
pandas/guide/.doctrees
5+
### Python template
6+
# Byte-compiled / optimized / DLL files
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
11+
# C extensions
12+
*.so
13+
14+
# Distribution / packaging
15+
.Python
16+
build/
17+
develop-eggs/
18+
dist/
19+
downloads/
20+
eggs/
21+
.eggs/
22+
lib/
23+
lib64/
24+
parts/
25+
sdist/
26+
var/
27+
wheels/
28+
*.egg-info/
29+
.installed.cfg
30+
*.egg
31+
MANIFEST
32+
33+
# PyInstaller
34+
# Usually these files are written by a python script from a template
35+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
36+
*.manifest
37+
*.spec
38+
39+
# Installer logs
40+
pip-log.txt
41+
pip-delete-this-directory.txt
42+
43+
# Unit test / coverage reports
44+
htmlcov/
45+
.tox/
46+
.coverage
47+
.coverage.*
48+
.cache
49+
nosetests.xml
50+
coverage.xml
51+
*.cover
52+
.hypothesis/
53+
54+
# Translations
55+
*.mo
56+
*.pot
57+
58+
# Django stuff:
59+
*.log
60+
.static_storage/
61+
.media/
62+
local_settings.py
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# PyBuilder
75+
target/
76+
77+
# Jupyter Notebook
78+
.ipynb_checkpoints
79+
80+
# pyenv
81+
.python-version
82+
83+
# celery beat schedule file
84+
celerybeat-schedule
85+
86+
# SageMath parsed files
87+
*.sage.py
88+
89+
# Environments
90+
.env
91+
.venv
92+
env/
93+
venv/
94+
ENV/
95+
env.bak/
96+
venv.bak/
97+
98+
# Spyder project settings
99+
.spyderproject
100+
.spyproject
101+
102+
# Rope project settings
103+
.ropeproject
104+
105+
# mkdocs documentation
106+
/site
107+
108+
# mypy
109+
.mypy_cache/
110+
.idea/

index.html

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,20 @@
1717
<!--Full screen navigation section-->
1818
<nav class="navigation navbar sticky-top navbar-light">
1919
<div class="navigation__brand">
20-
<a class="navbar-brand" href="index.html">
20+
<a class="navigation__brand-link navbar-brand" href="index.html">
2121
<img class="navigation__brand-img" src="static/images/site_logo/python_sprints_logo.png" alt="Python Sprints Logo">
2222
<span class="navigation__brand-name">Python Sprints</span>
2323
</a>
2424
</div>
2525

26-
<div class="navigation__button-open-container" onclick="openNav()">
26+
<div class="navigation__button-open-container">
2727
<div class="navigation__hamburger-bar"></div>
2828
<div class="navigation__hamburger-bar"></div>
2929
<div class="navigation__hamburger-bar"></div>
3030
</div>
3131

3232
<div class="navigation__button-close-container">
33-
<a href="javascript:void(0)" class="navigation__button-close" onclick="closeNav()">
33+
<a href="javascript:void(0)" class="navigation__button-close">
3434
<i class="navigation__button-close fas fa-times"></i>
3535
</a>
3636
</div>
@@ -39,11 +39,21 @@
3939
<div class="navigation__content container-fluid" data-image-type="responsive">
4040
<img class="responsive" src="static/images/title_photo/title_glass_building_960x540.jpg"
4141
srcset="static/images/title_photo/title_glass_building_480x270.jpg 480w,
42+
static/images/title_photo/title_glass_building_750x1334.jpg 750w,
4243
static/images/title_photo/title_glass_building_960x540.jpg 960w,
44+
static/images/title_photo/title_glass_building_1080x1920.jpg 1080w,
45+
static/images/title_photo/title_glass_building_1125x2436.jpg 1125w,
46+
static/images/title_photo/title_glass_building_1242x2436.jpg 1242w,
47+
static/images/title_photo/title_glass_building_1442x2562.jpg 1442w,
4348
static/images/title_photo/title_glass_building_1920x1080.jpg 1920w,
4449
static/images/title_photo/title_glass_building_3840x2160.jpg 3840w"
4550
sizes="(max-width: 480px) 100vw,
51+
(max-width: 750px) 100vw,
4652
(max-width: 960px) 100vw,
53+
(max-width: 1080px) 100vw,
54+
(max-width: 1125px) 100vw,
55+
(max-width: 1242px) 100vw,
56+
(max-width: 1442px) 100vw,
4757
(max-width: 1920px) 100vw,
4858
(min-width: 2300px) 100vw"
4959
alt="Python Sprints Title Image">
@@ -69,9 +79,9 @@ <h2 class="navigation__subtitle"><em>The World Is Waiting For Your Code</em></h2
6979
<div class="row">
7080
<div class="col-md-12">
7181
<h2 class="section-title">Our Mission</h2>
72-
<p class="section-content">To improve code in open source projects and build a lasting relationship with the maintainers.</p>
73-
<p class="section-content">Grow the Python community all around the world and include people of all backgrounds and skills.</p>
74-
<p class="section-content">Provide mentorship and challenge for those who want to get better at coding.</p>
82+
<p class="section-content">Contribute to open source projects.</p>
83+
<p class="section-content">Grow the Python community.</p>
84+
<p class="section-content">Provide mentorship and challenge for people of all backgrounds and skills.</p>
7585
</div>
7686
</div>
7787
</div>
@@ -166,10 +176,10 @@ <h2 class="section-title">What Do We Do?</h2>
166176

167177

168178
<div class="row">
169-
<div class="no-gutters__col col-md-6">
179+
<div class="second-on-mobile no-gutters__col col-md-6">
170180
<img class="services__img img-fluid rounded" src="static/images/services/educating_devs_840x561px.jpg">
171181
</div>
172-
<div class="no-gutters__col col-md-6">
182+
<div class="first-on-mobile no-gutters__col col-md-6">
173183
<h2 class="services__title text-right">Helping Beginners To Get Good</h2>
174184
<hr class="services__divider-right">
175185
<p class="services__content text-right">We are open to people who just started to program and need guidance and mentorship. We can help you become a better programmer by collaborating with others and reading loads of code. Come and try it - you will not be disappointed. We normally have a mixture of seasoned and new coders during every sprint so advice is literally at hands reach.</p>

0 commit comments

Comments
 (0)