|
1 |
| -<title>Community website</title> |
2 |
| -<body> |
3 |
| -<ul> |
4 |
| - <li><a href="/gci/">Google Code-in</a> |
5 |
| - <li><a href="/activity/">GitHub activity</a> |
6 |
| - <li><a href="/twitter/">Twitter Feed</a> |
7 |
| -</ul> |
| 1 | +{% extends 'includes.html' %} |
| 2 | + |
| 3 | +{% block content %} |
| 4 | + <div class="section no-pad-bot" id="index-banner"> |
| 5 | + <div class="container"> |
| 6 | + <h1 class="header center col-test">Welcome</h1> |
| 7 | + <div class="row center"> |
| 8 | + <h5 class="header col s12 light">Hello, world. You are at the {{ org_name }} community website.</h5> |
| 9 | + <h4 class="header col s12 light">Meet awesome mentors</h4> |
| 10 | + |
| 11 | + </div> |
| 12 | + <div class="row"> |
| 13 | + |
| 14 | + <div class="col s4"> |
| 15 | + <div class="card" style="overflow: visible;"> |
| 16 | + <div class="card-image waves-effect waves-block waves-light"> |
| 17 | + <img class="activator" |
| 18 | + src="https://api.{{ org_name }}.io/en/latest/_static/images/{{ org_name }}_logo.svg"> |
| 19 | + </div> |
| 20 | + <div class="card-content"> |
| 21 | + <span class="card-title activator grey-text text-darken-4">Mentor Name<i |
| 22 | + class="material-icons right">more_vert</i></span> |
| 23 | + |
| 24 | + </div> |
| 25 | + <div class="card-reveal" style="display: none; transform: translateY(0px);"> |
| 26 | + <span class="card-title grey-text text-darken-4">Card Title<i class="material-icons right">close</i></span> |
| 27 | + <p>Here is some more information about this product that is only revealed once clicked |
| 28 | + on.</p> |
| 29 | + </div> |
| 30 | + |
| 31 | + <div class="card-action"> |
| 32 | + <a href="#">Github</a> |
| 33 | + <a href="#">Twitter</a> |
| 34 | + </div> |
| 35 | + </div> |
| 36 | + </div> |
| 37 | + <div class="col s4"> |
| 38 | + <div class="card" style="overflow: visible;"> |
| 39 | + <div class="card-image waves-effect waves-block waves-light"> |
| 40 | + <img class="activator" |
| 41 | + src="https://api.{{ org_name }}.io/en/latest/_static/images/{{ org_name }}_logo.svg"> |
| 42 | + </div> |
| 43 | + <div class="card-content"> |
| 44 | + <span class="card-title activator grey-text text-darken-4">Mentor Name<i |
| 45 | + class="material-icons right">more_vert</i></span> |
| 46 | + |
| 47 | + </div> |
| 48 | + <div class="card-reveal" style="display: none; transform: translateY(0px);"> |
| 49 | + <span class="card-title grey-text text-darken-4">Card Title<i class="material-icons right">close</i></span> |
| 50 | + <p>Here is some more information about this product that is only revealed once clicked |
| 51 | + on.</p> |
| 52 | + </div> |
| 53 | + |
| 54 | + <div class="card-action"> |
| 55 | + <a href="#">Github</a> |
| 56 | + <a href="#">Twitter</a> |
| 57 | + </div> |
| 58 | + </div> |
| 59 | + </div> |
| 60 | + <div class="col s4"> |
| 61 | + <div class="card" style="overflow: visible;"> |
| 62 | + <div class="card-image waves-effect waves-block waves-light"> |
| 63 | + <img class="activator" |
| 64 | + src="https://api.{{ org_name }}.io/en/latest/_static/images/{{ org_name }}_logo.svg"> |
| 65 | + </div> |
| 66 | + <div class="card-content"> |
| 67 | + <span class="card-title activator grey-text text-darken-4">Mentor Name<i |
| 68 | + class="material-icons right">more_vert</i></span> |
| 69 | + |
| 70 | + </div> |
| 71 | + <div class="card-reveal" style="display: none; transform: translateY(0px);"> |
| 72 | + <span class="card-title grey-text text-darken-4">Card Title<i class="material-icons right">close</i></span> |
| 73 | + <p>Here is some more information about this product that is only revealed once clicked |
| 74 | + on.</p> |
| 75 | + </div> |
| 76 | + |
| 77 | + <div class="card-action"> |
| 78 | + <a href="#">Github</a> |
| 79 | + <a href="#">Twitter</a> |
| 80 | + </div> |
| 81 | + </div> |
| 82 | + </div> |
| 83 | + </div> |
| 84 | + <h4 class="header col s12 light center">Recent Activity</h4> |
| 85 | + <div class="section no-pad-bot" id="index-banner"> |
| 86 | + |
| 87 | + {% include 'issues_graph.html' %} |
| 88 | + </div> |
| 89 | + <!--Import jQuery before materialize.js--> |
| 90 | + <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.bundle.js"></script> |
| 91 | + <script src="../static/js/charts.js"></script> |
| 92 | + <script> |
| 93 | + $(document).ready(function () { |
| 94 | + $('select').material_select(); |
| 95 | + }); |
| 96 | + $('#chartType').on('change', function () { |
| 97 | + updateChart($('#chartType').val()) |
| 98 | + }); |
| 99 | + updateChart($('#chartType').val()); |
| 100 | + </script> |
| 101 | + </div> |
| 102 | + </div> |
| 103 | + |
| 104 | + {% include 'footer.html' %} |
| 105 | +{% endblock %} |
8 | 106 | </body>
|
| 107 | +</html> |
| 108 | + |
0 commit comments