Skip to content

Commit fc43028

Browse files
authored
Merge branch 'source' into developer-list
2 parents ac2b44f + e51ffa8 commit fc43028

File tree

8 files changed

+27
-8
lines changed

8 files changed

+27
-8
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ target/
6060
pelican-plugins
6161
themes
6262
venv
63-
output
63+
output/*
64+
!output/.gitkeep
65+
cache
6466
*.pid
6567

.gitmodules

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
[submodule "theme"]
22
path = theme
3-
url = https://github.com/PythonNepal/pure-single
3+
url = https://github.com/PythonNepal/pure-single
4+
[submodule "pure-single"]
5+
path = pure-single
6+
url = https://github.com/PythonNepal/pure-single
7+
branch = master

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ install:
99
- pip install -r requirements.txt
1010
- git config --global user.email "meamitkc@gmail.com"
1111
- git config --global user.name "Amit Chaudhary"
12-
- git clone https://github.com/PythonNepal/pure-single theme
1312
- git clone https://github.com/getpelican/pelican-plugins
1413
script:
1514
- fab publish:"Build site"

content/pages/developers.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ Maintain the list in alphabetical order
1111
- **Ashish Acharya**
1212
[Email](mailto:ashish.acharya14@gmail.com) | [Github](https://github.com/code-geek) | [Website](http://ashishacharya.com) | [Linkedin](https://www.linkedin.com/in/ashishdotpy/)
1313

14+
- **Ashok Rai**
15+
[Email](mailto:ashokrai2053@gmail.com) | [Github](https://github.com/ashok-rai) | [Website](https://ashok-rai.com.np) | [Linkedin](https://www.linkedin.com/in/ashokayrai/)
16+
1417
- **Ayush Ojha**
1518
[Email](mailto:aimm.official@gmail.com) | [Github](https://github.com/officialaimm) | [Linkedin](https://www.linkedin.com/in/ayush-ojha-75206313a/)
1619

@@ -24,12 +27,19 @@ Maintain the list in alphabetical order
2427
- **Damodar Lohani**
2528
[Email](mailto:dlohani48@gmail.com) | [Github](https://github.com/lohanidamodar) | [Website](https://dlohani.com.np) | [Linkedin](https://www.linkedin.com/in/lohanidamodar)
2629

30+
- **Dhiraj Shah**
31+
[Email](mailto:dhiraj.shah04@gmail.com) | [Github](https://github.com/dhirajshah04) | [Website](https://dhirajshah04.github.io) | [Linkedin](https://www.linkedin.com/in/dhiraj-shah-52aaa776)
32+
2733
- **Kiran Shahi**
2834
[Email](mailto:kiran.shahi.np@gmail.com) | [Github](https://github.com/kiranshahi) | [Website](http://kirans.me) | [Linkedin](https://www.linkedin.com/in/itskirans/)
2935

36+
- **Krishna Sunuwar**
37+
[Github](https://github.com/s2krish) | [Linkedin](https://www.linkedin.com/in/s2krish/)
38+
3039
- **Kishor Kumar Mahato**
3140
[Email](mailto:cyberkishor@gmail.com) | [Github](https://github.com/cyberkishor) | [Linkedin](https://www.linkedin.com/in/kishrorkumar/) | [BitBucket](https://bitbucket.org/cyberkishor/)
3241

42+
3343
- **Manjil Shrestha**
3444
[Email](mailto:shresthamanjil21@gmail.com) | [Github](https://github.com/smanjil) | [Linkedin](https://www.linkedin.com/in/manjil-shrestha-038527b4/)
3545

@@ -39,18 +49,20 @@ Maintain the list in alphabetical order
3949
- **Sandip Bhagat**
4050
[Email](mailto:sandipbgt@gmail.com) | [Github](https://github.com/sandipbgt) | [Website](http://sandipbgt.com) | [Linkedin](https://www.linkedin.com/in/sandipbgt/)
4151

52+
- **Santosh Purbey**
53+
[Email](mailto:purbey.santosh@hotmail.com) | [Github](https://github.com/santoshpurbey) | [Linkedin](https://www.linkedin.com/in/santosh3511/)
4254

4355
- **Shital Babu Luitel**
4456
[Email](mailto:ctalluitel@gmail.com) | [Github](https://github.com/shitalluitel) | [Linkedin](https://www.linkedin.com/in/shital-luitel-38363713a/)
4557

46-
- **Santosh Purbey**
47-
[Email](mailto:purbey.santosh@hotmail.com) | [Github](https://github.com/santoshpurbey) | [Linkedin](https://www.linkedin.com/in/santosh3511/)
58+
- **Sijan Bhandari**
59+
[Email](mailto:sijanonly@gmail.com) | [Github](https://github.com/sijanonly) | [Website](https://sijanb.com.np/) | [Linkedin](https://www.linkedin.com/in/sijanonly/)
4860

4961
- **Subin Shrestha**
5062
[Email](mailto:developer.shrestha@gmail.com) | [Github](https://github.com/sthasbin)
5163

5264
- **Sudip Kafle**
5365
[Email](mailto:soodip.kafle@gmail.com) | [Github](https://github.com/kaflesudip) | [Linkedin](https://www.linkedin.com/in/kaflesudip/)
5466

55-
- **Sijan Bhandari**
56-
[Email](mailto:sijanonly@gmail.com) | [Github](https://github.com/sijanonly) | [Website](https://sijanb.com.np/) | [Linkedin](https://www.linkedin.com/in/sijanonly/)
67+
- **Umesh Chaudhary**
68+
[Email](mailto:umesschaudhary@gmail.com) | [Github](https://github.com/umschaudhary) | [Linkedin](https://www.linkedin.com/in/umesh-chaudhary-132589141/)|[Website](http://umschaudhary.github.io)

fabfile.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ def regenerate():
4242

4343

4444
def serve():
45+
build()
4546
os.chdir(env.deploy_path)
4647

4748
PORT = 8000

output/.gitkeep

Whitespace-only changes.

pelicanconf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
# Uncomment following line if you want document-relative URLs when developing
3737
# RELATIVE_URLS = True
3838

39-
THEME = "theme"
39+
THEME = "pure-single"
4040
COVER_IMG_URL = "https://upload.wikimedia.org/wikipedia/commons/4/40/Nepal_Patan_Mangal.jpg"
4141

4242
STATIC_PATHS = ["static", "extra"]

pure-single

Submodule pure-single added at 5121bb5

0 commit comments

Comments
 (0)