|
| 1 | +--- |
| 2 | +layout: default |
| 3 | +title: GSOC - 2024 |
| 4 | +redirect_from: |
| 5 | + - /mentor/index.html |
| 6 | +--- |
| 7 | + |
| 8 | +{% include header.html %} |
| 9 | + |
| 10 | +<section id="about"> |
| 11 | + <div class="container"> |
| 12 | + <div class="row"> |
| 13 | + <div class="col-lg-8 col-lg-offset-2" id="mentee-guidelines"> |
| 14 | + <h2 class="text-center fw-400">About CloudCV</h2> |
| 15 | + <p class="lead"> |
| 16 | + {% include teaser.md %} |
| 17 | + </p> |
| 18 | + </div> |
| 19 | + </div> |
| 20 | + </div> |
| 21 | +</section> |
| 22 | + |
| 23 | +{% for post in site.posts reversed %} |
| 24 | + {% if post.type == 'project-2024' %} |
| 25 | + {% capture thecycle %}{% cycle 'odd', 'even' %}{% endcapture %} |
| 26 | + {% if thecycle == 'odd' %} |
| 27 | + <section> |
| 28 | + <div class="container"> |
| 29 | + <div class="row valign-center"> |
| 30 | + <div class="col-lg-5 col-sm-6"> |
| 31 | + <hr class="section-heading-spacer"> |
| 32 | + <div class="clearfix"></div> |
| 33 | + <h2 class="section-heading fw-400">{{ post.title }}</h2> |
| 34 | + <h4> |
| 35 | + {% for technology in post.technologies %} |
| 36 | + <span class="label label-info">{{ technology }}</span> |
| 37 | + {% endfor %} |
| 38 | + </h4> |
| 39 | + <div class="lead">{{ post.content }} |
| 40 | + </div> |
| 41 | + <p class="{{ post.title }}-placeholder project-placeholder">Please wait for loading the projects ...</p> |
| 42 | + <div> |
| 43 | + <table style="display: none" data-url="https://api.github.com/repos/{{ site.github_organization }}/{{ site.github_repository }}/issues?state=open&labels=GSoC-2024" class="table {{ post.title }}-table"> |
| 44 | + <caption class="fw-300">Participate in the issue corresponding to this project to get started</caption> |
| 45 | + <thead> |
| 46 | + <tr> |
| 47 | + <th></th> |
| 48 | + <th></th> |
| 49 | + </tr> |
| 50 | + </thead> |
| 51 | + <tbody> |
| 52 | + </tbody> |
| 53 | + </table> |
| 54 | + </div> |
| 55 | + <div class="text-center"> |
| 56 | + <a href="{{ post.website }}"><i class="fa fa-rss-square fa-2x icon-mentoring"></i></a> |
| 57 | + <a href="{{ post.github }}"><i class="fa fa-github fa-2x icon-mentoring"></i></a> |
| 58 | + </div> |
| 59 | + </div> |
| 60 | + <div class="col-lg-6 col-lg-offset-1 col-sm-6"> |
| 61 | + <img class="img-responsive" src="../img/projects/{{ post.img }}" alt=""> |
| 62 | + </div> |
| 63 | + </div> |
| 64 | + </div> |
| 65 | + <!-- /.container --> |
| 66 | + </section> |
| 67 | + {% else %} |
| 68 | + <section> |
| 69 | + <div class="container"> |
| 70 | + <div class="row valign-center"> |
| 71 | + <div class="col-lg-5 col-lg-offset-1 col-sm-push-6 col-sm-6"> |
| 72 | + <hr class="section-heading-spacer"> |
| 73 | + <div class="clearfix"></div> |
| 74 | + <h2 class="section-heading">{{ post.title }}</h2> |
| 75 | + <h4> |
| 76 | + {% for technology in post.technologies %} |
| 77 | + <span class="label label-info">{{ technology }}</span> |
| 78 | + {% endfor %} |
| 79 | + </h4> |
| 80 | + <div class="lead">{{ post.content }}</div> |
| 81 | + <p class="{{ post.title }}-placeholder project-placeholder">Please wait for loading the projects ...</p> |
| 82 | + <div> |
| 83 | + <table style="display: none" data-url="https://api.github.com/repos/{{ site.github_organization }}/{{ site.github_repository }}/issues?state=open&labels=GSoC-2024" class="table {{ post.title }}-table"> |
| 84 | + <caption class="fw-300">Participate in the issue corresponding to this project to get started</caption> |
| 85 | + <thead> |
| 86 | + <tr> |
| 87 | + <th></th> |
| 88 | + <th></th> |
| 89 | + </tr> |
| 90 | + </thead> |
| 91 | + <tbody> |
| 92 | + </tbody> |
| 93 | + </table> |
| 94 | + </div> |
| 95 | + <div class="text-center"> |
| 96 | + <a href="{{ post.website }}" target="_blank"><i class="fa fa-rss-square fa-2x icon-mentoring"></i></a> |
| 97 | + <a href="{{ post.github }}" target="_blank"><i class="fa fa-github fa-2x icon-mentoring"></i></a> |
| 98 | + </div> |
| 99 | + </div> |
| 100 | + <div class="col-lg-6 col-sm-pull-6 col-sm-6"> |
| 101 | + <img class="img-responsive" src="../img/projects/{{ post.img }}" alt=""> |
| 102 | + </div> |
| 103 | + </div> |
| 104 | + <!-- /.container --> |
| 105 | + </div> |
| 106 | + </section> |
| 107 | + {% endif %} |
| 108 | + {% endif %} |
| 109 | +{% endfor %} |
| 110 | + |
| 111 | +{% include mentor.html %} |
| 112 | +{% include mentor_process.html %} |
0 commit comments