Skip to content

Commit

Permalink
Add 2018 website and project ideas
Browse files Browse the repository at this point in the history
  • Loading branch information
RishabhJain2018 committed Feb 6, 2019
1 parent ebaa505 commit d35a842
Show file tree
Hide file tree
Showing 13 changed files with 444 additions and 1 deletion.
48 changes: 48 additions & 0 deletions 2018/footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-md-8">
<!-- <ul class="list-inline">
<li>
<a href="/#home">Home</a>
</li>
<li class="footer-menu-divider">&sdot;</li>
<li>
<a href="/#about">About</a>
</li>
<li class="footer-menu-divider">&sdot;</li>
<li>
<a href="/#projects">Projects</a>
</li>
<li class="footer-menu-divider">&sdot;</li>
<li>
<a href="/#mentor">Mentor</a>
</li> -->
<!-- <li class="footer-menu-divider">&sdot;</li>
<li>
<a href="/gsoc">GSoC</a>
</li> -->
<!-- </ul> -->
<p class="copyright text-muted small">Copyright © 2018 CloudCV. All Rights Reserved.</p>
<p class="copyright text-muted small">Site based on OpenSUSE's <a href="https://github.com/openSUSE/mentoring">mentoring</a> project.</p>
</div>
</div>
</div>
<script>
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');

ga('create', 'UA-45466017-3', 'auto');
ga('send', 'pageview');
</script>
</footer>
19 changes: 19 additions & 0 deletions 2018/gsoc-accepted-projects.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<section id="projects">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>Google Summer of Code 2016 Projects</h2>
<div class="row">
{% for project in site.gsoc_current limit:5 %}
{% include project.html %}
{% endfor %}
</div>
<div class="row">
{% for project in site.gsoc_current offset:3 %}
{% include project.html %}
{% endfor %}
</div>
</div>
</div>
</div>
</section>
67 changes: 67 additions & 0 deletions 2018/gsoc-summary.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<section id="gsoc-previous">
<div class="container">
<div class="row">
<div class="col-lg-12 col-sm-12">
<hr class="section-heading-spacer">
<div class="clearfix"></div>
<h2 class="section-heading">Successful projects</h2>
<div id="portfolio" class="lead">
<div class="row">
{% for post in site.posts reversed %}
{% if post.type == 'gsoc' %}
<div class="col-md-4 col-sm-6 portfolio-item">
<a data-toggle="modal" class="portfolio-link" href="#gsocModal{{ post.modal_id }}">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img alt="" class="img-responsive" src="/img/gsoc/{{ post.img }}">
</a>
<div class="portfolio-caption">
<h4>{{ post.title }}</h4>
<p class="text-muted"></p>
</div>
</div>
{% endif %}
{% endfor %}
</div>
<p class="small">
This is just a small selection of projects, you can find all of them on <a href="https://www.google-melange.com">Google Melange</a>.
</p>
</div>
</div>
</div>
</div>
</section>

{% for post in site.posts %}
{% if post.type == 'gsoc' %}
<div class="portfolio-modal modal fade" id="gsocModal{{ post.modal_id }}" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>{{ post.title }}</h2>
<hr class="star-primary">
<h3>Mentor: {{ post.mentor }}</h3>
<h3>Mentee: {{ post.mentee }}</h3>
<img alt="" class="img-responsive" src="/img/gsoc/{{ post.img }}">
<p>{{ post.content }}</p>
<a href="{{ post.website }}" type="button" class="btn btn-primary" ><i class="fa fa-search"></i> More Information</a>
<button type="button" class="btn btn-danger" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
{% endif %}
{% endfor %}
23 changes: 23 additions & 0 deletions 2018/head.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<head>

<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="{{ site.description }}">
<meta name="author" content="{{ site.author }}">

<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.url }}">

<!-- Bootstrap Core CSS -->
<link href="//oss.maxcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">

<!-- Custom CSS -->
<link href="{{ site.baseurl }}/css/landing-page.css" rel="stylesheet">

<!-- Custom Fonts -->
<link href="//oss.maxcdn.com/fontawesome/4.1.0/css/font-awesome.min.css " rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">

<link rel="shortcut icon" href="/img/favicon.png">
</head>
24 changes: 24 additions & 0 deletions 2018/header.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<section id="home">
<div class="intro-header {% if page.slug != null %} intro-header-{{page.slug}} {% endif %}">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="intro-message">
<h1>{{page.title}}</h1>
<hr class="intro-divider">
<ul class="list-inline intro-social-buttons">
<li>
<a href="#mentor" class="btn btn-default btn-lg"><i class="fa fa-male fa-fw"></i> <span class="network-name">I'm a Mentor</span></a>
</li>
<li>
<a href="#about" class="btn btn-default btn-lg"><i class="fa fa-child fa-fw"></i> <span class="network-name">I'm a Student</span></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- /.container -->
</div>
<!-- /.intro-header -->
</section>
112 changes: 112 additions & 0 deletions 2018/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
---
layout: default
title: Google Summer of Code 2018
redirect_from:
- /mentor/index.html
---

{% include header.html %}

<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2" id="mentee-guidelines">
<h2 class="text-center">About CloudCV</h2>
<p class="lead">
{% include teaser.md %}
</p>
</div>
</div>
</div>
</section>

{% for post in site.posts reversed %}
{% if post.type == 'project-2018' %}
{% capture thecycle %}{% cycle 'odd', 'even' %}{% endcapture %}
{% if thecycle == 'odd' %}
<section>
<div class="container">
<div class="row valign-center">
<div class="col-lg-5 col-sm-6">
<hr class="section-heading-spacer">
<div class="clearfix"></div>
<h2 class="section-heading">{{ post.title }}</h2>
<h4>
{% for technology in post.technologies %}
<span class="label label-info">{{ technology }}</span>
{% endfor %}
</h4>
<div class="lead">{{ post.content }}
</div>
<p class="{{ post.title }}-placeholder project-placeholder">Please wait for loading the projects ...</p>
<div>
<table style="display: none" data-url="https://api.github.com/repos/{{ site.github_organization }}/{{ site.github_repository }}/issues?state=open&labels=GSoC-2018" class="table {{ post.title }}-table">
<caption>Participate in the issue corresponding to this project to get started:</caption>
<thead>
<tr>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="text-center">
<a href="{{ post.website }}"><i class="fa fa-rss-square fa-2x icon-mentoring"></i></a>
<a href="{{ post.github }}"><i class="fa fa-github fa-2x icon-mentoring"></i></a>
</div>
</div>
<div class="col-lg-5 col-lg-offset-2 col-sm-6">
<img class="img-responsive" src="../img/projects/{{ post.img }}" alt="">
</div>
</div>
</div>
<!-- /.container -->
</section>
{% else %}
<section>
<div class="container">
<div class="row valign-center">
<div class="col-lg-5 col-lg-offset-1 col-sm-push-6 col-sm-6">
<hr class="section-heading-spacer">
<div class="clearfix"></div>
<h2 class="section-heading">{{ post.title }}</h2>
<h4>
{% for technology in post.technologies %}
<span class="label label-info">{{ technology }}</span>
{% endfor %}
</h4>
<div class="lead">{{ post.content }}</div>
<p class="{{ post.title }}-placeholder project-placeholder">Please wait for loading the projects ...</p>
<div>
<table style="display: none" data-url="https://api.github.com/repos/{{ site.github_organization }}/{{ site.github_repository }}/issues?state=open&labels=GSoC-2018" class="table {{ post.title }}-table">
<caption>Participate in the issue corresponding to this project to get started:</caption>
<thead>
<tr>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="text-center">
<a href="{{ post.website }}"><i class="fa fa-rss-square fa-2x icon-mentoring"></i></a>
<a href="{{ post.github }}"><i class="fa fa-github fa-2x icon-mentoring"></i></a>
</div>
</div>
<div class="col-lg-5 col-sm-pull-6 col-sm-6">
<img class="img-responsive" src="../img/projects/{{ post.img }}" alt="">
</div>
</div>
<!-- /.container -->
</div>
</section>
{% endif %}
{% endif %}
{% endfor %}

{% include mentor.html %}
{% include mentor_process.html %}
15 changes: 15 additions & 0 deletions 2018/js.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!-- jQuery Version 1.11.0 -->
<script src="//oss.maxcdn.com/jquery/1.11.0/jquery.min.js"></script>

<!-- Plugin JavaScript -->
<script src="//oss.maxcdn.com/jquery.easing/1.3/jquery.easing.1.3.min.js "></script>

<!-- Bootstrap Core JavaScript -->
<script src="//oss.maxcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>

<!-- Custom Theme JavaScript -->
<script src="{{ site.baseurl }}/js/landing-page.js"></script>
<script src="{{ site.baseurl }}/js/markdown.js"></script>
<script src="{{ site.baseurl }}/js/github.js"></script>
<!-- <script src="js/redirect.js"></script>
<script src="../js/redirect.js"></script> -->
19 changes: 19 additions & 0 deletions 2018/mentor.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<section id="mentor">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2" id="mentor-guidelines">
<h2 class="text-center">Become a Mentor!</h2>
<p class="lead">
Mentoring is very important to the future of CloudCV.
It introduces new people to the world of open source software
who will enrich our community with their ideas and talents.
</p>
<p class="lead">
Apart from technical skills, being a mentor requires your time,
a clear roadmap for your project and good organization skills. If you think
you would be a good fit to mentor one of our projects, do reach out to us!
</p>
</div>
</div>
</div>
</section>
36 changes: 36 additions & 0 deletions 2018/mentor_process.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<section id="mentor-process">
<div class="container">
<div class="row">
<div class="col-lg-5 col-lg-offset-1 col-sm-push-6 col-sm-6">
<hr class="section-heading-spacer">
<div class="clearfix"></div>
<h2 class="section-heading">Okay, let's mentor!</h2>
<p>
<span class="fa-stack fa-fw icon-mentoring">
<i class="fa fa-square-o fa-stack-2x"></i>
<i class="fa fa-pencil fa-stack-1x"></i>
</span>
Browse this page for potential mentor projects.
</p>
<p>
<span class="fa-stack fa-fw icon-mentoring">
<i class="fa fa-square-o fa-stack-2x"></i>
<i class="fa fa-globe fa-stack-1x"></i>
</span>
<a href="https://gitter.im/batra-mlp-lab/CloudCV">Contact</a>
us if you have relevant experience and want to get involved.
</p>
<p>
<span class="fa-stack fa-fw icon-mentoring">
<i class="fa fa-square-o fa-stack-2x"></i>
<i class="fa fa-flag fa-stack-1x"></i>
</span>
Have your own idea? Add an issue to our <a href="https://github.com/Cloud-CV/GSoC-Ideas">ideas repository</a>.
</p>
</div>
<div class="col-lg-5 col-sm-pull-6 col-sm-6">
<img class="img-responsive" src="{{ site.baseurl }}/img/mentor_summit.jpg" alt="">
</div>
</div>
</div>
</section>
Loading

0 comments on commit d35a842

Please sign in to comment.