Skip to content

Commit 3c41d56

Browse files
updating seo of website
1 parent 37b2ecb commit 3c41d56

File tree

11 files changed

+88
-48
lines changed

11 files changed

+88
-48
lines changed

_config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@ paginate_path : "/updates/page:num"
33
url: "https://py-contributors.github.io" # the base hostname & protocol for your site
44
plugins:
55
- jekyll-sitemap
6-
- jekyll-paginate
6+
- jekyll-paginate
7+
site : https://py-contributors.github.io
8+
description : A open Source community for Python, Machine Learning and Artificial intelligence. Open-source contributions are welcome.

_data/contributors.csv

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
sn,name,github,email,info,picture
22
1,Deepak Raj,codeperfectplus,[email protected],Hello-world. I am Skilled in Data Science Machine Learning Deep Learning As Well As Web Development Knowledge Strong professional with a Master's Diploma in Data Science.,deepakraj
3-
2,Shubham Pawar,shubham5351,[email protected],,shubhampawar
4-
3,Deepak Kumar,dkpcs92,[email protected],,sample
5-
4,Priyanshu Singh,reveurguy, [email protected], Hi-there. I am a Web Development enthusiast. I am eager to learn new things. I have intermediate knowledge of CSS and HTML and basic-intermediate knowledge of Javascript. I love to use CSS and Javascript libraries to make sites look visually attractive. You can view more of my works and contributions on my github account. Happy Coding </>😉,priyanshusingh
3+
2,Shubham Pawar,shubham5351,[email protected],I'm an Data Science Enthusiast with intrest in Machine Learning. Intrested in contributing to open source projects. Skilled in Python Data Science Machine Learning and Web Development.,shubhampawar
4+
3,Priyanshu Singh,reveurguy, [email protected], Hi-there. I am a Web Development enthusiast. I am eager to learn new things. I have intermediate knowledge of CSS and HTML and basic-intermediate knowledge of Javascript. I love to use CSS and Javascript libraries to make sites look visually attractive. You can view more of my works and contributions on my github account. Happy Coding </>😉,priyanshusingh

_layouts/blog.html

Lines changed: 25 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,39 @@
1212
gtag('js', new Date());
1313
gtag('config', 'UA-167457248-3');
1414
</script>
15-
15+
1616
<title>{{ page.title }}</title>
17-
<link rel="icon" href="/assets/img/logo/logo.png" type="image/gif" sizes="16x16">
17+
<link rel="icon" href="/assets/img/logo/logo.png" type="image/gif" sizes="16x16">
1818
<script src="https://kit.fontawesome.com/83ea256c90.js" crossorigin="anonymous"></script>
1919
<!-- Bootstrap CDN -->
2020
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
21-
<link rel="stylesheet" type="text/css" href="/assets/css/main.css">
22-
21+
<link rel="stylesheet" type="text/css" href="/assets/css/main.css">
22+
2323
<!-- Google Fonts -->
2424
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400&display=swap" rel="stylesheet">
2525
<link href="https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700&display=swap" rel="stylesheet">
26-
26+
2727
<link rel="stylesheet" href="https://raw.githubusercontent.com/googlearchive/code-prettify/master/styles/sunburst.css">
28+
<!-- Meta tags -->
29+
<meta name="title" content="{{ page.title }}">
30+
<meta name="description" content="{{page.description}}">
31+
<meta name="author" content="Deepak Raj">
32+
<!-- Open Graph / Facebook -->
33+
<meta property="og:type" content="website">
34+
<meta property="og:url" content="{{site.url}}{{page.url}}">
35+
<meta property="og:title" content="{{page.title}}">
36+
<meta property="og:description" content="{% if page.description %}{{page.description}} {% else %}A open Source community for Python, Machine Learning and Artificial intelligence. Open-source contributions are welcome.{% endif %}">
37+
<meta property="og:image" content="{% if page.image %}{{page.image}}{% else %}https://images.pexels.com/photos/3785927/pexels-photo-3785927.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940{% endif %}">
38+
<!-- Twitter -->
39+
<meta property="twitter:card" content="summary_large_image">
40+
<meta property="twitter:url" content="{{site.url}}{{page.url}}">
41+
<meta property="twitter:title" content="{{page.title}}">
42+
<meta property="twitter:description" content="{{page.description}}">
43+
<meta property="twitter:image" content="https://images.pexels.com/photos/3785927/pexels-photo-3785927.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940">
2844
</head>
29-
<body>
30-
{% include navbar.html %}
31-
<div class="container mt-3 bg-white py-3 pMd px-4 bdrRadius">
45+
<body>
46+
{% include navbar.html %}
47+
<div class="container mt-3 bg-white py-3 pMd px-4 bdrRadius">
3248
<!-- Page content here -->
3349
{{ content }}
3450
</div><!-- /.container -->
@@ -38,4 +54,4 @@
3854
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
3955
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
4056
</body>
41-
</html>
57+
</html>

_layouts/default.html

Lines changed: 26 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
<!-- Required meta tags -->
55
<meta charset="utf-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7-
87
<!-- Global site tag (gtag.js) - Google Analytics -->
98
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-167457248-3"></script>
109
<script>
@@ -13,31 +12,46 @@
1312
gtag('js', new Date());
1413
gtag('config', 'UA-167457248-3');
1514
</script>
16-
1715
<title>{{ page.title }}</title>
1816
<link rel="icon" href="/assets/img/logo/logo.png" type="image/gif" sizes="16x16">
1917
<!-- link to main stylesheet -->
20-
<link rel="stylesheet" type="text/css" href="/assets/css/main.css">
18+
<link rel="stylesheet" type="text/css" href="/assets/css/main.css">
2119
<!-- Fontawesome -->
22-
<script src="https://kit.fontawesome.com/83ea256c90.js" crossorigin="anonymous"></script>
20+
<script src="https://kit.fontawesome.com/83ea256c90.js" crossorigin="anonymous"></script>
2321
<!-- Bootstrap CDN -->
2422
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
25-
23+
2624
<!-- Google Fonts -->
2725
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400&display=swap" rel="stylesheet">
2826
<link href="https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700&display=swap" rel="stylesheet">
29-
27+
3028
<!-- Masonry -->
3129
<script src="https://unpkg.com/masonry-layout@4/dist/masonry.pkgd.min.js"></script>
32-
30+
3331
<!-- Animate.css -->
3432
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
35-
33+
3634
<link rel="stylesheet" href="https://raw.githubusercontent.com/googlearchive/code-prettify/master/styles/sunburst.css">
35+
<!-- Meta tags -->
36+
<meta name="title" content="{{ page.title }}">
37+
<meta name="description" content="{{page.description}}">
38+
<meta name="author" content="Deepak Raj">
39+
<!-- Open Graph / Facebook -->
40+
<meta property="og:type" content="website">
41+
<meta property="og:url" content="{{site.url}}{{page.url}}">
42+
<meta property="og:title" content="{{page.title}}">
43+
<meta property="og:description" content="{% if page.description %}{{page.description}} {% else %}A open Source community for Python, Machine Learning and Artificial intelligence. Open-source contributions are welcome.{% endif %}">
44+
<meta property="og:image" content="{% if page.image %}{{page.image}}{% else %}https://images.pexels.com/photos/3785927/pexels-photo-3785927.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940{% endif %}">
45+
<!-- Twitter -->
46+
<meta property="twitter:card" content="summary_large_image">
47+
<meta property="twitter:url" content="{{site.url}}{{page.url}}">
48+
<meta property="twitter:title" content="{{page.title}}">
49+
<meta property="twitter:description" content="{{page.description}}">
50+
<meta property="twitter:image" content="https://images.pexels.com/photos/3785927/pexels-photo-3785927.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940">
3751
</head>
38-
<body>
39-
{% include navbar.html %}
40-
<div class="container marginStyle bdrRadius">
52+
<body>
53+
{% include navbar.html %}
54+
<div class="container marginStyle bdrRadius">
4155
<!-- Page content here -->
4256
{{ content }}
4357
</div><!-- /.container -->
@@ -54,4 +68,4 @@
5468
});
5569
</script>
5670
</body>
57-
</html>
71+
</html>

_posts/2020-09-19-How-to-Participate-in-Hacktoberfest-2020.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
22
layout : blog
33
title : How to Participate in HacktoberFest 2020
4+
descriptions : Hacktoberfest® is open to everyone in our global community. Whether you’re a developer, student learning to code.
5+
image : https://py-contributors.github.io/assets/img/updates/hacktoberfest2020.png
46
---
57
# Hacktoberfest-2020
68

File renamed without changes.

developers/index.html

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
---
22
layout : default
33
title : Developers
4+
descriptions : list of developers of PyContributors
45
active : developers
56
---
67

78
<div class="container">
8-
9+
910
<div class="jumbotron text-dark text-center p-4">
10-
<h1><strong>Contributors for PyContributors</strong></h1>
11-
</div>
12-
11+
<h1><strong>Contributors for PyContributors</strong></h1>
12+
</div>
13+
1314
{% for member in site.data.contributors %}
1415
<div class="card text-white bg-dark mb-3" style="height:auto;">
1516
<div class="row no-gutters">
@@ -29,4 +30,4 @@ <h5 class="card-subtitle mb-2 text-muted">
2930
</div>
3031
</div>
3132
{% endfor %}
32-
</div>
33+
</div>

index.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
---
22
layout : default
3-
title : Home
3+
title : PyContributors-Home
4+
description : A open Source community for Python, Machine Learning and Artificial intelligence. Open-source contributions are welcome.
5+
image :
46
active : home
7+
58
---
69

710
<div class="container">
@@ -38,7 +41,7 @@ <h2 class="card-title mb-0">Awesome Scripts</h2>
3841
<p>
3942
A Collection of Awesome Scripts in Python to make life easy.
4043
</p>
41-
<a href="/awesomeScripts/" class="btn btn-info">Check On Github</a>
44+
<a href="/awesomeScripts/" class="btn btn-info">Check On Github</a>
4245
</figure>
4346
</div>
4447
</div>

join-us/index.html

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
22
layout : blog
3-
title : Join Us
3+
title : join us | PyContributors
4+
descriptions : Join open source community for Python to contribute open source.
5+
image : https://images.pexels.com/photos/636243/pexels-photo-636243.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940
46
active : join-us
57
---
68
<h1>What is Py-Contributors ?</h1>
@@ -18,7 +20,7 @@ <h1>Why Contribute to Open-Source ?</h1>
1820

1921
<p>🔵 Third, you get the chance to be part of an active open source community where you can meet like-minded people and supporters. Moreover, if you're a freelancer and actively contribute to open source projects, you increase your chances of being noticed by potential employers.</p>
2022

21-
<h2>How to Participate ?</h2>
23+
<h2>How to Participate ?</h2>
2224

2325
<p>You can find many projects, you are free to participate on GitHub – a developer-oriented platform with a simple but essential set of functionality. You can contribute to free software in many ways. Developers can fork projects, make changes to code, and send pull requests. And quality assurance is always appreciated. Sometimes developers are too busy or too lazy to check the quality of their code. So go ahead and report a bug or try to fix it – your help is appreciated.</p>
2426

@@ -27,4 +29,4 @@ <h3>Resources to Learn about Opensource : </h3>
2729
<p>🔵 <a href="https://www.dataschool.io/how-to-contribute-on-github/">How to Contribute on Github</a></p>
2830
<p>🔵 <a href="https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source">Introduction to Opensource</a></p>
2931

30-
<div class="ml-7"><h2><i class="fas fa-code mr-2"></i>Happy Coding<i class="fas fa-code ml-2"></i></h2> </div>
32+
<div class="ml-7"><h2><i class="fas fa-code mr-2"></i>Happy Coding<i class="fas fa-code ml-2"></i></h2> </div>

logo-x.png

-13.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)