+ The Software Development Group at NISER has been operational since the fall of 2018, with the aim of bringing together people from different disciplines who prefer a code first approach to solving problems. Over the past few months, we have been working on certain projects, like the NISER Archive and a timetable
+ generator, which are nearly complete now. We encourage people who have any novel idea that could help the institution and might be implemented in code, to contact us. We can be reached via email at sdg [at] niser [dot] ac [dot] in ".
+ You may also follow us on GitHub, andsubscribe to our blog via RSS.
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/README.md b/README.md
index e698fb5..e499e92 100644
--- a/README.md
+++ b/README.md
@@ -1,21 +1,9 @@
-# NISER Software Development Group's website
-(kind of done)
+# The Official Website of Coding Club, NISER
-## TODO
-* Events
-* Footer
+## Instruction to add/update data
+All the data for this website is stored in the `data/` folder as `.json` files. Project and team information can be updated based on the existing json structure.
+The information on blogs can be updated in the `data/blogs.json` file.
-## How to run a local instance
-* Install `ruby`, `ruby-gems`. Install `gcc` and `make` if your system doesn't already have them installed
-* Install `jekyll` and `bundler` 'gems': `gem install jekyll bundler`
-* Clone the repo, `cd` into the cloned repo
-* Run `bundle install` to install all gems required by the site.
-* `bundle exec jekyll serve` builds the site and serves it locally at http://localhost:4000/
-
-### Instructions to set up RubyGems
-* Append `$(ruby -e 'print Gem.user_dir')/bin` to the `PATH` environment variable. (add `PATH="$PATH:$(ruby -e 'print Gem.user_dir')/bin"` to your `~/.profile`/`~/.bash_profile`)
-* Allow installation of gems through current user by exporting `GEM_HOME` to the local path. Run: `export GEM_HOME=$HOME/.gem`
-
-### See also
-* [Jekyll documentation](https://jekyllrb.com/docs/)
-* [ArchWiki page on Ruby](https://wiki.archlinux.org/index.php/Ruby)
+## Dependencies
+- JQuery
+- Google Fonts
diff --git a/_config.yml b/_config.yml
deleted file mode 100644
index 51677d7..0000000
--- a/_config.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-about: NISER Software Development Group has been constituted to bring together people from various disciplines, who prefer a code-first approach to solving problems.
-
-plugins:
- - jekyll-feed
- - jekyll-seo-tag
diff --git a/_data/members.yml b/_data/members.yml
deleted file mode 100644
index 05932f3..0000000
--- a/_data/members.yml
+++ /dev/null
@@ -1,43 +0,0 @@
-- name: smishra
- full_name: Subhankar Mishra
- image: /assets/images/members/smishra.jpg
- bio: Assistant Professor, School of Computer Sciences, NISER
- social:
- - name: Email
- link: /#
- img: email.png
- abbr: smishra [at] niser [dot] ac [dot] in
-
-
-- name: ayush
- full_name: Ayush Singh
- bio: I write all my code in Notepad without IntelliSense.
- image: /assets/images/members/ayush.jpg
- social:
- - name: GitHub
- link: https://www.github.com/11DE784A
- img: github-light.png
-
- - name: GPG Public Key
- link: https://gist.github.com/11DE784A/7f7eb706b2799d50795cbb9edf04a6f2
- img: gpg.png
-
-- name: JS
- full_name: Jyotirmaya Shivottam
- image: /assets/images/members/kenobi.jpg
- image-alt:
- bio: cogito ergo sum?!
- social:
- - name: GitHub
- link: https://github.com/JeS24
- img: github-light.png
-
-
-- name: kss
- full_name: K. Sannidhya Shukla
- image: /assets/images/members/kss.png
- bio: I code, when I am not being bad at math.
- social:
- - name: GitHub
- link: https://www.github.com/feynhat
- img: github-light.png
diff --git a/_data/navigation.yml b/_data/navigation.yml
deleted file mode 100644
index 7bc9a10..0000000
--- a/_data/navigation.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-- name: Home
- link: /#
- icon: fas fa-home
-
-- name: Projects
- link: /#projects
- icon: fas fa-code-branch
-
-- name: Members
- link: /#members
- icon: fas fa-users
-
-- name: Blog
- link: /blog
- icon: fas fa-newspaper
-
-- name: License
- link: https://creativecommons.org/licenses/by-nc-sa/4.0/
- icon: fas fa-balance-scale
- abbr: Content on this website is licensed under CC BY-NC-SA 4.0 International license.
diff --git a/_data/projects.yml b/_data/projects.yml
deleted file mode 100644
index 02c8ddf..0000000
--- a/_data/projects.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-- name: NISER Archive
- link: http://10.0.2.35/arc
- github: https://www.github.com/sdgniser/arc
- description: An archive that hopes to contain all the quizzes, assignments, mid term and end term question papers for each iteration of a course conducted at NISER.
- lang: Django
- license: AGPL
- license-text: https://choosealicense.com/licenses/agpl-3.0/
-
-- name: Spaghetti
- link: http://10.0.2.35/spaghetti
- github: https://www.github.com/sdgniser/spaghetti
- description: A competitive programming platform for contests organized by the NISER Coding Club. Only supports code golf, at the moment.
- lang: Django
- license: AGPL
- license-text: https://choosealicense.com/licenses/agpl-3.0/
-
-- name: Lost and Found
- link: http://10.0.2.35/lnf
- github: https://www.github.com/sdgniser/lnf
- description: A directory for things lost and found in the NISER campus.
- lang: Django
- license: AGPL
- license-text: https://choosealicense.com/licenses/agpl-3.0/
-
-- name: Timetable Generator
- link: http://10.0.2.35/timetable
- github: https://www.github.com/sdgniser/timetable
- description: A simple timetable generator for people studying at NISER. You select the courses you have registered for and click 'Generate!' and voila, you have your timetable in a nice HTML table.
- lang: JavaScript
- license: AGPL
- license-text: https://choosealicense.com/licenses/agpl-3.0/
-
diff --git a/_data/social.yml b/_data/social.yml
deleted file mode 100644
index bcef0f9..0000000
--- a/_data/social.yml
+++ /dev/null
@@ -1,14 +0,0 @@
-- name: GitHub
- link: https://github.com/sdgniser
- image: /assets/images/social/github-light.png
- tooltip: NISER Software Development Group on GitHub
-
-- name: Email
- link: #
- image: /assets/images/social/email.png
- tooltip: Email NISER SDG at sdg [at] niser [dot] ac [dot] in
-
-- name: Feed
- link: /feed.xml
- image: /assets/images/social/feed-light.png
- tooltip: Follow our RSS feed
diff --git a/_includes/contact.html b/_includes/contact.html
deleted file mode 100644
index 06cc3a4..0000000
--- a/_includes/contact.html
+++ /dev/null
@@ -1,10 +0,0 @@
-