From ee9e0e42a849e1af4930d2904a106e9cf6df4c11 Mon Sep 17 00:00:00 2001 From: Adeen Shukla Date: Mon, 22 Jul 2019 12:00:59 +0530 Subject: [PATCH 01/28] Use modulo for connect page rows --- _layouts/connect.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_layouts/connect.html b/_layouts/connect.html index 0f4eff6..9bcc2ba 100644 --- a/_layouts/connect.html +++ b/_layouts/connect.html @@ -6,7 +6,8 @@
{% assign i = 0 %} {% for channel in channel_list %} - {% if i == 3 %} + {% assign remainder = i | modulo: 3 %} + {% if remainder == 0 %}
{% endif %} From ed1e948db8d2dba923742ee784cf46feaa78ea22 Mon Sep 17 00:00:00 2001 From: Adeen Shukla Date: Thu, 25 Jul 2019 16:35:06 +0530 Subject: [PATCH 02/28] Add registration form for latest event --- _includes/registerScript.html | 19 +++++++ _includes/sponsors.html | 15 ++++++ _layouts/connect.html | 4 +- _layouts/events.html | 6 ++- _layouts/landing.html | 16 +----- _layouts/register.html | 83 +++++++++++++++++++++++++++++++ css/main.css | 4 ++ register.md | 93 +++++++++++++++++++++++++++++++++++ 8 files changed, 222 insertions(+), 18 deletions(-) create mode 100644 _includes/registerScript.html create mode 100644 _includes/sponsors.html create mode 100644 _layouts/register.html create mode 100644 register.md diff --git a/_includes/registerScript.html b/_includes/registerScript.html new file mode 100644 index 0000000..4bc81f3 --- /dev/null +++ b/_includes/registerScript.html @@ -0,0 +1,19 @@ + + + diff --git a/_includes/sponsors.html b/_includes/sponsors.html new file mode 100644 index 0000000..825e1a2 --- /dev/null +++ b/_includes/sponsors.html @@ -0,0 +1,15 @@ +

Sponsors and Supporters

+

The support of our generous sponsors, supporters, and patrons is highly appreciated.

+

Interested in sponsoring us? Please send us an email. Or get in touch with us via other platforms

+
+
+ GitHub Logo +
+ Cloudflare Logo +
+ TechCoopers Logo +
+
+ CloudingLab Logo + Vanfly Logo +
diff --git a/_layouts/connect.html b/_layouts/connect.html index 9bcc2ba..b0f9c42 100644 --- a/_layouts/connect.html +++ b/_layouts/connect.html @@ -7,9 +7,9 @@ {% assign i = 0 %} {% for channel in channel_list %} {% assign remainder = i | modulo: 3 %} - {% if remainder == 0 %} + {% if remainder == 0 and i != 0 %}
-
+
{% endif %}
diff --git a/_layouts/events.html b/_layouts/events.html index 8cb64b2..7e5c518 100644 --- a/_layouts/events.html +++ b/_layouts/events.html @@ -26,9 +26,13 @@

Upcoming Events

{{ event.event-date | date: '%F' }} {% endcapture %} {% if eventdate >= currentDate %} - {% assign i = 1 %} + {% assign i = i | plus:1 %} + {% if i == 1 %} + {{ event.title }} + {% else %} {{ event.title }} + {% endif %} {{ event.type }} {{ event.event-date | date:"%b %d, %Y" }} {{ event.location }} diff --git a/_layouts/landing.html b/_layouts/landing.html index 7477119..6ed4d84 100644 --- a/_layouts/landing.html +++ b/_layouts/landing.html @@ -4,21 +4,7 @@

{{ content | remove: '

' | remove: '

' }}

-

Sponsors and Supporters

-

The support of our generous sponsors, supporters, and patrons is highly appreciated.

-

Interested in sponsoring us? Please send us an email. Or get in touch with us via other platforms

-
-
- GitHub Logo -
- Cloudflare Logo -
- TechCoopers Logo -
-
- CloudingLab Logo - Vanfly Logo -
+ {% include sponsors.html %}
{% include footer.html%} diff --git a/_layouts/register.html b/_layouts/register.html new file mode 100644 index 0000000..20448dd --- /dev/null +++ b/_layouts/register.html @@ -0,0 +1,83 @@ +--- +layout: default +--- +
+

Register

+
+

Fill the form to register yourself for {{ page.title }}.
Time:{{ page.time }}, Date:{{ page.date }}
Venue: {{ page.venue }}
See you at the event!!

+
+
+ + +
+ Name +
+ +
+
+ + + +
+ Email +
+ +
+
+ + + +
+ Phone Number +
+ +
+
+ + + +
+ College +
+ +
+
+ + + +
+ Course +
+ +
+
+ + + +
+ Semester +
+ +
+
+ + + + + +
+
+ +
+
+ +
+{% include registerScript.html %} diff --git a/css/main.css b/css/main.css index eea52ec..a9f07ac 100644 --- a/css/main.css +++ b/css/main.css @@ -87,3 +87,7 @@ only screen and (max-width: 1000px) { text-decoration: underline; color: inherit; } + +.card:hover { + box-shadow: 3px 3px 4px 4px rgba(10, 10, 10, 0.1); +} diff --git a/register.md b/register.md new file mode 100644 index 0000000..877119f --- /dev/null +++ b/register.md @@ -0,0 +1,93 @@ +--- +layout: register +permalink: /register/ +title: "MLH Localhost: Hack The Technical Interview" +date: "29th July 2019" +time: "2 PM to 4 PM" +venue: "LT-1, IIPS, DAVV, Indore" +form: + name-label: 826355120 + name: 2092238618 + email-label: 2071572813 + email: 297764783 + number-label: 569514487 + number: 1966605262 + college-label: 245385898 + college: 479301265 + course-label: 1517600930 + course: 1340835164 + semester-label: 1312689492 + semester: 1857009907 + fvv: 1 + fbzx: 4436870651230317346 +--- +
+ + +
+ Name +
+ +
+
+ + + +
+ Email +
+ +
+
+ + + +
+ Phone Number +
+ +
+
+ + + +
+ College +
+ +
+
+ + + +
+ Course +
+ +
+
+ + + +
+ Semester +
+ +
+
+ + + + + + + +
From 2cbd5aeadbedb54abe22c6102b436a27bcf29e46 Mon Sep 17 00:00:00 2001 From: Adeen Shukla Date: Thu, 25 Jul 2019 23:21:23 +0530 Subject: [PATCH 03/28] Add form to report CoC violations --- coc.md | 2 ++ report.md | 101 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 103 insertions(+) create mode 100644 report.md diff --git a/coc.md b/coc.md index dd65544..f4655b8 100644 --- a/coc.md +++ b/coc.md @@ -29,3 +29,5 @@ permalink: /coc/

This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by the Admin and Moderators. This Code of Conduct applies to the Admins, Moderators, speakers, sponsors, and all other participants during their involvement with codeIndore()

Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting any of the Moderators or the Admin either through any of our communication channels or in person. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Admin or Moderators who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by the members of the Community.

+

Reporting

+

All code of conduct violations can be reported through this form. The responses to the form will be kept confidential and the form can be filled anonymously. For situations that require immediate intervention from the admins, contact them directly through any of our communication channels.

diff --git a/report.md b/report.md new file mode 100644 index 0000000..45f5458 --- /dev/null +++ b/report.md @@ -0,0 +1,101 @@ +--- +layout: default +permalink: /report/ +title: Report +--- +

{{ page.title }}

+

Please use this form to report any violations of the Code of Conduct.
Reports can be submitted anonymously. Please include all relevant details in your response.
The responses will be kept confidential.

+
+
+ + +
+
+ Name +
+
+ +
+
+ + + +
+
+ Email +
+
+ +
+
+ + + +
+
+ Phone Number +
+
+ +
+
+ + + +
+
+ Violator details +
+
+ +
+
+ + + +
+
+ Date of incident +
+
+ +
+
+ + + +
+
+ Incident Details +
+
+ +
+
+ + + + +
+
+ +
+
+ + + From 825d660bb13bd57c3f76b26cf4f98232d599d060 Mon Sep 17 00:00:00 2001 From: Adeen Shukla Date: Fri, 26 Jul 2019 01:37:31 +0530 Subject: [PATCH 04/28] Add latest blog, event on homepage --- _includes/latestBlogCard.html | 20 ++++++++++++++++++++ _includes/latestEventCard.html | 20 ++++++++++++++++++++ _layouts/landing.html | 22 +++++++++++++++++----- css/main.css | 15 +++++++++++++++ 4 files changed, 72 insertions(+), 5 deletions(-) create mode 100644 _includes/latestBlogCard.html create mode 100644 _includes/latestEventCard.html diff --git a/_includes/latestBlogCard.html b/_includes/latestBlogCard.html new file mode 100644 index 0000000..1f3549a --- /dev/null +++ b/_includes/latestBlogCard.html @@ -0,0 +1,20 @@ +{% assign posts = site.posts | sort: "date" %} + +
+
+
+
+

Latest Blog post

+

{{ posts.last.title }}

+
+
+
+

{{ posts.last.excerpt }}

+
+
+
+ {% assign date_format = site.minima.date_format | default: "%b %-d, %Y" %} + +
+
+
diff --git a/_includes/latestEventCard.html b/_includes/latestEventCard.html new file mode 100644 index 0000000..6f5b593 --- /dev/null +++ b/_includes/latestEventCard.html @@ -0,0 +1,20 @@ +{% assign events = site.events | sort: "event-date" %} + +
+
+
+
+

Upcoming Event

+

{{ events.last.title }}

+
+
+
+

{{ events.last.description }}

+
+
+
+ {% assign date_format = site.minima.date_format | default: "%b %-d, %Y" %} + +
+
+
diff --git a/_layouts/landing.html b/_layouts/landing.html index 6ed4d84..d99b10d 100644 --- a/_layouts/landing.html +++ b/_layouts/landing.html @@ -1,10 +1,22 @@ {% include header.html %}
-
-

- {{ content | remove: '

' | remove: '

' }} -

- {% include sponsors.html %} +
+

+ {{ content | remove: '

' | remove: '

' }} +

+
+
+
+
+ {% include latestEventCard.html %} +
+
+ {% include latestBlogCard.html %} +
+
+
+
+ {% include sponsors.html %}
{% include footer.html%} diff --git a/css/main.css b/css/main.css index a9f07ac..f1fcdaf 100644 --- a/css/main.css +++ b/css/main.css @@ -91,3 +91,18 @@ only screen and (max-width: 1000px) { .card:hover { box-shadow: 3px 3px 4px 4px rgba(10, 10, 10, 0.1); } + +.card { + display:flex; + flex-direction: column; + height: 100%; +} + +.card-footer { + margin-top: auto; + margin-left: 1.5rem; + margin-right: 1.5rem; + padding-top: 0.5rem; + padding-left: 0.5rem; + margin-bottom: 1.5rem; +} From ecd22d3ae1d17fc60a59f0a8747d6049be9f8f32 Mon Sep 17 00:00:00 2001 From: Adeen Shukla Date: Mon, 29 Jul 2019 11:24:30 +0530 Subject: [PATCH 05/28] Update form layout --- _layouts/register.html | 2 +- register.md | 71 +----------------------------------------- 2 files changed, 2 insertions(+), 71 deletions(-) diff --git a/_layouts/register.html b/_layouts/register.html index 20448dd..91fc31f 100644 --- a/_layouts/register.html +++ b/_layouts/register.html @@ -6,7 +6,7 @@

Register

Fill the form to register yourself for {{ page.title }}.
Time:{{ page.time }}, Date:{{ page.date }}
Venue: {{ page.venue }}
See you at the event!!

-
diff --git a/register.md b/register.md index 877119f..31a1584 100644 --- a/register.md +++ b/register.md @@ -6,6 +6,7 @@ date: "29th July 2019" time: "2 PM to 4 PM" venue: "LT-1, IIPS, DAVV, Indore" form: + formurl: "https://docs.google.com/forms/d/e/1FAIpQLScOdxIdpAcPXUcaoO9iOWzlqVc9-id3UZS2irB1xWp6Phmitg/formResponse" name-label: 826355120 name: 2092238618 email-label: 2071572813 @@ -21,73 +22,3 @@ form: fvv: 1 fbzx: 4436870651230317346 --- - - - -
- Name -
- -
-
- - - -
- Email -
- -
-
- - - -
- Phone Number -
- -
-
- - - -
- College -
- -
-
- - - -
- Course -
- -
-
- - - -
- Semester -
- -
-
- - - - - - - -
From 6d453c03904483f20fa95bc1d75b0a63c2f5124a Mon Sep 17 00:00:00 2001 From: Adeen Shukla Date: Mon, 29 Jul 2019 11:53:49 +0530 Subject: [PATCH 06/28] Add feedback form --- _includes/feedbackScript.html | 19 +++++ _layouts/feedback.html | 134 ++++++++++++++++++++++++++++++++++ feedback.md | 24 ++++++ 3 files changed, 177 insertions(+) create mode 100644 _includes/feedbackScript.html create mode 100644 _layouts/feedback.html create mode 100644 feedback.md diff --git a/_includes/feedbackScript.html b/_includes/feedbackScript.html new file mode 100644 index 0000000..29bdc49 --- /dev/null +++ b/_includes/feedbackScript.html @@ -0,0 +1,19 @@ + + + diff --git a/_layouts/feedback.html b/_layouts/feedback.html new file mode 100644 index 0000000..bb3137d --- /dev/null +++ b/_layouts/feedback.html @@ -0,0 +1,134 @@ +--- +layout: default +--- +
+

Feedback

+
+

Please fill your valuable feedback for this event. Your feedback helps us improve future events.

+
+
+
+

Localhost Hack the Technical Interview Feedback

+
+
+ Email +
+ +
+
+ + + +
+ Name +
+ +
+
+ + + +
+ Phone Number +
+ +
+
+ + + +
+ How satisfied were you with this Localhost workshop? +
+
+ + + + + +
+
+
+ + + +
+ How relevant and helpful do you think it was for you? +
+
+ + + + + +
+
+
+ + + +
+ How could we have improved this event? +
+ +
+
+ + + +
+ Any other feedback for the event? +
+ +
+
+ + + + + +
+ +
+
+ +
+{% include registerScript.html %} diff --git a/feedback.md b/feedback.md new file mode 100644 index 0000000..5c8a8f7 --- /dev/null +++ b/feedback.md @@ -0,0 +1,24 @@ +--- +layout: feedback +permalink: /feedback/ +title: "MLH Localhost: Hack The Technical Interview" +date: "29th July 2019" +time: "2 PM to 4 PM" +venue: "LT-1, IIPS, DAVV, Indore" +form: + formurl: "https://docs.google.com/forms/d/e/1FAIpQLScOdxIdpAcPXUcaoO9iOWzlqVc9-id3UZS2irB1xWp6Phmitg/formResponse" + name-label: 826355120 + name: 2092238618 + email-label: 2071572813 + email: 297764783 + number-label: 569514487 + number: 1966605262 + college-label: 245385898 + college: 479301265 + course-label: 1517600930 + course: 1340835164 + semester-label: 1312689492 + semester: 1857009907 + fvv: 1 + fbzx: 4436870651230317346 +--- From 2c015eb1ec206c09c93a7e2086a45adb4cc88260 Mon Sep 17 00:00:00 2001 From: Adeen Shukla Date: Mon, 29 Jul 2019 11:56:12 +0530 Subject: [PATCH 07/28] Add Feedback form script --- _layouts/feedback.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/feedback.html b/_layouts/feedback.html index bb3137d..0f39018 100644 --- a/_layouts/feedback.html +++ b/_layouts/feedback.html @@ -131,4 +131,4 @@

Localhost Hack the Technical Interview Feedback

-{% include registerScript.html %} +{% include feedbackScript.html %} From 2ecb6cc6de28fb575202ddc13a55cd9ebf711d19 Mon Sep 17 00:00:00 2001 From: Adeen Shukla Date: Mon, 29 Jul 2019 12:37:45 +0530 Subject: [PATCH 08/28] Refactor feedback form --- _layouts/feedback.html | 58 +++++++++++++++++++++--------------------- feedback.md | 28 ++++++++++---------- 2 files changed, 43 insertions(+), 43 deletions(-) diff --git a/_layouts/feedback.html b/_layouts/feedback.html index 0f39018..ef11186 100644 --- a/_layouts/feedback.html +++ b/_layouts/feedback.html @@ -6,7 +6,7 @@

Feedback

Please fill your valuable feedback for this event. Your feedback helps us improve future events.

-
@@ -21,47 +21,47 @@

Localhost Hack the Technical Interview Feedback

- +
- Name + Name
- +
- +
- Phone Number + Phone Number
- +
- +
- How satisfied were you with this Localhost workshop? + How satisfied were you with this Localhost workshop?
@@ -69,29 +69,29 @@

Localhost Hack the Technical Interview Feedback

- +
- How relevant and helpful do you think it was for you? + How relevant and helpful do you think it was for you?
@@ -99,25 +99,25 @@

Localhost Hack the Technical Interview Feedback

- +
- How could we have improved this event? + How could we have improved this event?
- +
- +
- Any other feedback for the event? + Any other feedback for the event?
- +
- - + + + + + codeIndore( ) From 659af16589a9a33ceabee02c6fde4b77b5770d3e Mon Sep 17 00:00:00 2001 From: Adeen Shukla Date: Wed, 25 Sep 2019 19:37:00 +0530 Subject: [PATCH 23/28] Create hackvento19.md --- _events/hackvento19.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 _events/hackvento19.md diff --git a/_events/hackvento19.md b/_events/hackvento19.md new file mode 100644 index 0000000..88fc341 --- /dev/null +++ b/_events/hackvento19.md @@ -0,0 +1,8 @@ +--- +title: Hackvento'19 Hackathon +description: 12 hours long Hackathon +location: IET DAVV, Indore +event-date: 2019-09-27 10:00:00 IST +type: Hackathon +event-url: https://bit.ly/hackvento2019 +--- From 75499f0d074a0ce424aae528e53edae08bcc52e0 Mon Sep 17 00:00:00 2001 From: Adeen Shukla Date: Wed, 25 Sep 2019 19:39:09 +0530 Subject: [PATCH 24/28] Create swindore19.md --- _events/swindore19.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 _events/swindore19.md diff --git a/_events/swindore19.md b/_events/swindore19.md new file mode 100644 index 0000000..451e76d --- /dev/null +++ b/_events/swindore19.md @@ -0,0 +1,8 @@ +--- +title: Startup Weekend Indore +description: Startup Weekends are 54-hour events where developers, designers, marketers, product managers and startup enthusiasts come together to share ideas, form teams, build products, and launch startups! +location: EngineerBabu, Indore +event-date: 2019-09-27 18:00:00 IST +type: Hackathon +event-url: https://swindore.co +--- From 2a5c8528d2d68c62db466ce2fa6fc0fb6c0d6804 Mon Sep 17 00:00:00 2001 From: Adeen Shukla Date: Wed, 25 Sep 2019 19:44:01 +0530 Subject: [PATCH 25/28] Update swindore19.md --- _events/swindore19.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_events/swindore19.md b/_events/swindore19.md index 451e76d..6d0c6d8 100644 --- a/_events/swindore19.md +++ b/_events/swindore19.md @@ -1,8 +1,8 @@ --- title: Startup Weekend Indore -description: Startup Weekends are 54-hour events where developers, designers, marketers, product managers and startup enthusiasts come together to share ideas, form teams, build products, and launch startups! +description: 54-hour event to share ideas, form teams, build products, and launch startups! location: EngineerBabu, Indore event-date: 2019-09-27 18:00:00 IST type: Hackathon -event-url: https://swindore.co +event-url: https://swindore.co/ --- From b3e348ca089e9770a4b062aba8e055bf6e450b5b Mon Sep 17 00:00:00 2001 From: Adeen Shukla Date: Fri, 11 Oct 2019 16:17:16 +0530 Subject: [PATCH 26/28] Create devfest19.md --- _events/devfest19.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 _events/devfest19.md diff --git a/_events/devfest19.md b/_events/devfest19.md new file mode 100644 index 0000000..939560e --- /dev/null +++ b/_events/devfest19.md @@ -0,0 +1,8 @@ +--- +title: DevFest'19 | GDG Indore +description: Tech Conference with speakers from around the globe +location: Amber Gardens, Indore +event-date: 2019-09-22 10:00:00 IST +type: Conference +event-url: https://devfest.gdgindore.in +--- From aeaa09d28c4d53c6556f2e44f3e432ff88ab1b19 Mon Sep 17 00:00:00 2001 From: Adeen Shukla Date: Fri, 11 Oct 2019 16:20:38 +0530 Subject: [PATCH 27/28] Create sgsitswebdevgit.md --- _events/sgsitswebdevgit.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 _events/sgsitswebdevgit.md diff --git a/_events/sgsitswebdevgit.md b/_events/sgsitswebdevgit.md new file mode 100644 index 0000000..3c685f7 --- /dev/null +++ b/_events/sgsitswebdevgit.md @@ -0,0 +1,8 @@ +--- +title: Web development and git workshop | Computer Club SGSITS +description: Workshop on web development and git +location: SGSITS, Indore +event-date: 2019-10-12 10:00:00 IST +type: Workshop +event-url: https://codeindore.com +--- From 1c509d9df8a02b2fbaaf0d3192ddcb8af25a2eeb Mon Sep 17 00:00:00 2001 From: Adeen Shukla Date: Fri, 18 Jul 2025 13:53:47 +0530 Subject: [PATCH 28/28] Delete CNAME --- CNAME | 1 - 1 file changed, 1 deletion(-) delete mode 100644 CNAME diff --git a/CNAME b/CNAME deleted file mode 100644 index 3861a0d..0000000 --- a/CNAME +++ /dev/null @@ -1 +0,0 @@ -codeindore.com \ No newline at end of file