Skip to content

Commit 5844004

Browse files
adding front page data
Signed-off-by: Deepak Raj <[email protected]>
1 parent 4d9788c commit 5844004

File tree

4 files changed

+104
-38
lines changed

4 files changed

+104
-38
lines changed

_includes/footer copy.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!-- Footer -->
2+
<footer class="page-footer mt-4 text-center mb-3">
3+
<div class="box mb-2">
4+
<div class="box-sm red"></div>
5+
<div class="box-sm orange"></div>
6+
<div class="box-sm yellow "></div>
7+
<div class="box-sm green "></div>
8+
<div class="box-sm blue "></div>
9+
<div class="box-sm purple"></div>
10+
</div>
11+
12+
<div class="container justify-content-around d-flex">
13+
<div class="float-left ml-5">
14+
<span>Made With <i class="fas fa-heart fa-2x animate__animated animate__pulse animate__infinite" style="color: crimson;" aria-hidden="true"></i></span>
15+
<!-- Copyright -->
16+
<div class="pb-3 text-dark">© 2020 MIT Licence:
17+
<a class="text-dark" href="https://github.com/py-contributors">PyContributors</a>
18+
</div>
19+
</div>
20+
21+
<div class="float-right mr-5">
22+
<p class="mt-2 mb-0">
23+
Styled and Maintained By: <a class="text-dark" href="https://t.me/deepakraj008" target="_blank">Deepak Raj</a>
24+
</p>
25+
</div>
26+
</div>
27+
28+
</footer>

_includes/footer.html

Lines changed: 48 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,50 @@
1-
<!-- Footer -->
2-
<footer class="page-footer mt-4 text-center mb-3">
3-
<div class="box mb-2">
4-
<div class="box-sm red"></div>
5-
<div class="box-sm orange"></div>
6-
<div class="box-sm yellow "></div>
7-
<div class="box-sm green "></div>
8-
<div class="box-sm blue "></div>
9-
<div class="box-sm purple"></div>
10-
</div>
11-
12-
<div class="container justify-content-around d-flex">
13-
<div class="float-left ml-5">
14-
<span>Made With <i class="fas fa-heart fa-2x animate__animated animate__pulse animate__infinite" style="color: crimson;" aria-hidden="true"></i></span>
15-
<!-- Copyright -->
16-
<div class="pb-3 text-dark">© 2020 MIT Licence:
17-
<a class="text-dark" href="https://github.com/py-contributors">PyContributors</a>
1+
<footer class="bg-light text-center text-white">
2+
<!-- Grid container -->
3+
<div class="container p-4 pb-0">
4+
<!-- Section: Social media -->
5+
<section class="mb-4">
6+
<!-- Facebook -->
7+
<a
8+
class="btn text-white btn-floating m-1"
9+
style="background-color: #3b5998;"
10+
href="https://www.facebook.com/pycontributors"
11+
role="button"
12+
><i class="fab fa-facebook-f"></i
13+
></a>
14+
15+
<!-- Twitter -->
16+
<a
17+
class="btn text-white btn-floating m-1"
18+
style="background-color: #55acee;"
19+
href="https://twitter.com/pycontributors"
20+
role="button"
21+
><i class="fab fa-twitter"></i
22+
></a>
23+
<!-- Linkedin -->
24+
<a
25+
class="btn text-white btn-floating m-1"
26+
style="background-color: #0082ca;"
27+
href="#!"
28+
role="button"
29+
><i class="fab fa-linkedin-in"></i
30+
></a>
31+
<!-- Github -->
32+
<a
33+
class="btn text-white btn-floating m-1"
34+
style="background-color: #333333;"
35+
href="https://github.com/py-contributors/"
36+
role="button"
37+
><i class="fab fa-github"></i
38+
></a>
39+
</section>
40+
<!-- Section: Social media -->
1841
</div>
19-
</div>
20-
21-
<div class="float-right mr-5">
22-
<p class="mt-2 mb-0">
23-
Styled and Maintained By: <a class="text-dark" href="https://t.me/deepakraj008" target="_blank">Deepak Raj</a>
24-
</p>
25-
</div>
42+
<!-- Grid container -->
43+
44+
<!-- Copyright -->
45+
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.2);">
46+
© 2023 Copyright:
47+
<a class="text-white" href="/">Py Contributors</a>
2648
</div>
27-
28-
</footer>
49+
<!-- Copyright -->
50+
</footer>

_includes/navbar.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
<div class="nav-bar">
44
<div class="d-flex mx-auto">
55
<div class="brand">
6-
<h3 class="mainHeading"><a class="text-white" href="/"><img src="/assets/img/logo/logo.png" style="height: 70px; width: 70px; background-color: white;" class="mr-3">Py-Contributors</a></h3>
6+
<h3 class="mainHeading"><a class="text-white" href="/"><img src="/assets/img/logo/logo.png"
7+
style="height: 70px; width: 70px; background-color: white;" class="mr-3">Py-Contributors</a></h3>
78
</div>
89
</div>
910

@@ -23,7 +24,7 @@ <h3 class="mainHeading"><a class="text-white" href="/"><img src="/assets/img/log
2324
{% if page.active == "projects" %}
2425
<li class=" active"><a class="" href="/projects/index.html" data-after="Join">Join Us</a></li>
2526
{% else %}
26-
<li class=""><a class="" href="/projects/index.html" data-after="Projects">Community Projects</a></li>
27+
<li class=""><a class="" href="/projects/index.html" data-after="Projects">Projects</a></li>
2728
{% endif %}
2829

2930
{% if page.active == "join-us" %}

index.html

Lines changed: 25 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,39 @@
77

88
---
99

10-
<div class="container">
11-
<div class="jumbotron text-center">
12-
<div class="jumbo-content">
13-
<h1 class="display-3"><strong>Welcome to PyContributors</strong></h1>
14-
<p>An open Source community for Machine Learning and Artificial intelligence.</p>
15-
</div>
16-
</div>
17-
</div>
10+
<img src="assets\img\logo\logo.png" alt="PyContributors Logo" >
11+
<h1 align="center">Py Contributors Developers Community</h1>
12+
<p align="center">An open Source community primarily for Python.</p>
13+
14+
<h2>What we are ?</h2>
15+
<p>we are a community of developers who are interested in contributing to Python, Javascript, and other open-source projects.
16+
Many of us are core developers, but we are not limited to that. we are also interested in contributing to other projects.
17+
Most of us are active on Discord and we have a channel for Py-Contributors. We also have a GitHub organization,
18+
and we have a few repositories there.</p>
19+
20+
<h2>Why you should join the py-contributors community ?</h2>
21+
<p>Open source projects bring many benefits to those who participate in them, and such experience is excellent for your CV
22+
and more remarkable for your knowledge and skills. By joining a community of like-minded people and polishing up your skills,
23+
you can give yourself a step up as an aspiring developer. We are an active developer community encouraging open-source development.</p>
24+
25+
<h2>Meet awesome link-minded people from the community.</h2>
26+
27+
<a href="https://discord.gg/JfbK3bS" class="btn btn-primary btn-lg active" role="button" aria-pressed="true">Join us on Discord</a>
28+
<a href="https://github.com/Py-Contributors/support/issues/new/choose" class="btn btn-primary btn-lg active" role="button" aria-pressed="true">Join us on GitHub</a>
29+
30+
<h2>Sponsors</h2>
1831

32+
<p>Get your Logo/Website/Product link here.</p>
33+
<p>contact </p>
1934

2035

21-
<div class="row">
36+
<!-- <div class="row">
2237
<div class="container">
2338
<blockquote class="p-4 blockquote mt-4 text-center bgCst">
2439
<p class="mb-0"><i class="fa fa-quote-left mr-2"></i> Code never lies; comments often do. 😉😉 <i class="fa fa-quote-right ml-2"></i></p>
2540
<footer class="blockquote-footer">By <cite title="Source Title">Ron Jeffries</cite></footer>
2641
</blockquote>
2742
</div>
28-
</div>
43+
</div> -->
2944

3045
</div> <!-- Row closed-->

0 commit comments

Comments
 (0)