ieee-students-branch-jekyll-theme 0.1.01

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +2 -0
  3. data/_includes/footer.html +14 -0
  4. data/_includes/header.html +25 -0
  5. data/_includes/headerimage.html +5 -0
  6. data/_includes/ieeefootbar.html +44 -0
  7. data/_includes/ieeeheader.html +50 -0
  8. data/_includes/nav.html +0 -0
  9. data/_includes/navbar.html +71 -0
  10. data/_includes/navbarauto.html +70 -0
  11. data/_includes/notice.html +11 -0
  12. data/_includes/sitemap.html +22 -0
  13. data/_includes/socialmedia.html +16 -0
  14. data/_layouts/_includes +27 -0
  15. data/_layouts/blank.html +9 -0
  16. data/_layouts/blankfullwidth.html +8 -0
  17. data/_layouts/default.html +12 -0
  18. data/_layouts/fullwidth.html +7 -0
  19. data/_layouts/fullwidthhome.html +7 -0
  20. data/_layouts/home.html +8 -0
  21. data/_layouts/page.html +5 -0
  22. data/_layouts/post.html +5 -0
  23. data/_layouts/subpage.html +5 -0
  24. data/assets/css/blue-white.css +372 -0
  25. data/assets/css/colors.css +285 -0
  26. data/assets/css/green-white.css +375 -0
  27. data/assets/css/greys.css +375 -0
  28. data/assets/css/ieeebootstrap.css +1360 -0
  29. data/assets/css/orange-white.css +373 -0
  30. data/assets/css/style.css +23 -0
  31. data/assets/images/header.png +0 -0
  32. data/assets/images/headerimage.png +0 -0
  33. data/assets/images/icon_key_white.gif +0 -0
  34. data/assets/images/ieee_mb_black.png +0 -0
  35. data/assets/images/ieee_mb_white.png +0 -0
  36. data/assets/images/logo.png +0 -0
  37. data/assets/images/social/facebook-icon.png +0 -0
  38. data/assets/images/social/gplus-icon.png +0 -0
  39. data/assets/images/social/linkedin-icon.png +0 -0
  40. data/assets/images/social/rss-icon.png +0 -0
  41. data/assets/images/social/twitter-icon.png +0 -0
  42. data/assets/images/social/youtube-icon.png +0 -0
  43. metadata +132 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: dd146b1348d3d9dd4e834eeb8b36a8b308023afe8b70d8369ad4e738f63060f6
4
+ data.tar.gz: 9f5991fd4c9e54c2c5ea954ddae4eed450685f55ddfaccad92f052ca0321d9fa
5
+ SHA512:
6
+ metadata.gz: fbc758d33654b4a3bf2318896207cd1fc34820409a884b4b2a71602d0ac40f3e44bda71ab40a0c3a6a092a5746d27a40c5083a45b24c349edf3833468a3d935f
7
+ data.tar.gz: '026445368d9c4b4c9958918e9dfca40416d12a6a569f3262a9f45ff1f3d36e450521db9200ebc28d6848699f5705ac9926bd6d1e09dd2e7478125808f1c65330'
@@ -0,0 +1,2 @@
1
+ # IEEE-Student-branch-Jekyll-theme
2
+ IEEE Student branch Jekyll theme
@@ -0,0 +1,14 @@
1
+
2
+
3
+
4
+ <!-- Optional JavaScript -->
5
+ <!-- jQuery first, then Popper.js, then Bootstrap JS -->
6
+ <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
7
+ crossorigin="anonymous"></script>
8
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
9
+ crossorigin="anonymous"></script>
10
+ <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T"
11
+ crossorigin="anonymous"></script>
12
+ </body>
13
+
14
+ </html>
@@ -0,0 +1,25 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <!-- Required meta tags -->
6
+ <meta charset="utf-8">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
8
+
9
+ <!-- Bootstrap CSS -->
10
+
11
+ <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB"
12
+ crossorigin="anonymous">
13
+ <!-- local CSS -->
14
+ <link rel="stylesheet" href="{{ siteurl }}{{site.baseurl}}/assets/css/style.css">
15
+ <!-- IEEE CSS -->
16
+ <link rel="stylesheet" href="{{ siteurl }}{{site.baseurl}}/assets/css/ieeebootstrap.css">
17
+ <!--<link rel="stylesheet" href="{{ siteurl }}{{site.baseurl}}/assets/css/greys.css">-->
18
+ <!-- W3.JS -->
19
+ <script src="https://www.w3schools.com/lib/w3.js"></script>
20
+ <title>{{ page.title }}</title>
21
+ </head>
22
+
23
+ <body>
24
+
25
+
@@ -0,0 +1,5 @@
1
+ <div class="row text-center">
2
+ <div class="col-lg-12 col-sm-12 col-md-12 p0 text-center">
3
+ <img class="img img-fluid text-center" src="{{site.url}}{{site.baseurl}}/assets/images/headerimage.png" alt="">
4
+ </div>
5
+ </div>
@@ -0,0 +1,44 @@
1
+
2
+
3
+ <div class="jumbotron footer">
4
+ <!-- FOOTER -->
5
+ <div class="container">
6
+ <div class="row">
7
+ <footer>
8
+ <div class="col-md-8 pull-left">
9
+ <ul>
10
+ <li>
11
+ <a href="127.0.0.1" title="Home">Home</a>
12
+ </li>
13
+ <li>
14
+ <a href="http://www.ieee.org/about/contact_center/index.html" title="Contact &amp; Support">Contact &amp; Support</a>
15
+ </li>
16
+ <li>
17
+ <a href="http://www.ieee.org/accessibility_statement.html" title="Accessibility">Accessibility</a>
18
+ </li>
19
+ <li>
20
+ <a href="http://www.ieee.org/security_privacy.html" title="Privacy &amp; Opting Out of Cookies">Privacy &amp; Opting Out of Cookies</a>
21
+ </li>
22
+ <li>
23
+ <a href="http://www.ieee.org/about/corporate/governance/p9-26.html" title="Nondiscrimination Policy">Nondiscrimination Policy</a>
24
+ </li>
25
+ </ul>
26
+ <span>
27
+ <p> {{site.title}}</p>
28
+ <p>{{site.description}}</p>
29
+ <p> &copy; Copyright 2019 IEEE - All rights reserved. Use of this Web site signifies your agreement to
30
+ the
31
+ <a href="http://www.ieee.org/site_terms_conditions.html">IEEE Terms and Conditions</a>. A not-for-profit organization, IEEE is the world's largest professional
32
+ association for the advancement of technology.</p>
33
+ </span>
34
+ </div>
35
+ <div class="col-md-4 pull-right">
36
+ <a href="http://www.ieee.org" title="IEEE logo">
37
+ <img src="{{ siteurl }}{{site.baseurl}}/assets/images/ieee_mb_black.png" id="ieee_mb" class="img-responsive" alt="IEEE">
38
+ </a>
39
+ </div>
40
+
41
+
42
+ </footer>
43
+ </div>
44
+ </div>
@@ -0,0 +1,50 @@
1
+
2
+
3
+ <div class="global-nav" >
4
+ <div class="container">
5
+ <div class="col-md-9">
6
+ <div class="pull-left">
7
+ <ul>
8
+ <li>
9
+ <a href="http://www.ieee.org/" class="first">IEEE.org</a>
10
+ </li>
11
+ <li>
12
+ <a href="http://ieeexplore.ieee.org/">IEEE
13
+ <em>Xplore</em> Digital Library</a>
14
+ </li>
15
+ <li>
16
+ <a href="http://standards.ieee.org/">IEEE Standards</a>
17
+ </li>
18
+ <li>
19
+ <a href="http://spectrum.ieee.org/">IEEE Spectrum</a>
20
+ </li>
21
+ <li>
22
+ <a href="http://www.ieee.org/sitemap" class="last">More Sites</a>
23
+ </li>
24
+ </ul>
25
+ </div>
26
+ </div>
27
+ </div>
28
+ </div>
29
+ <!-- Main jumbotron for a primary marketing message or call to action -->
30
+ <div class="jumbotron banner">
31
+ <div class="container" >
32
+ <div class="pull-right hidden-xs">
33
+ <a href="http://www.ieee.org" title="IEEE logo">
34
+ <img src="{{ siteurl }}{{site.baseurl}}/assets/images/ieee_mb_black.png" id="ieee_mb" class="img-responsive" alt="IEEE logo">
35
+ </a>
36
+ </div>
37
+ <h1 class="site-title">
38
+ <a href="{{siteurl}}" rel="home">{{site.title}}</a>
39
+ </h1>
40
+
41
+ <div>
42
+ <!-- social media icons go here -->
43
+ {% include socialmedia.html %}
44
+ </div>
45
+ </div>
46
+ </div>
47
+
48
+ <script>
49
+ w3.addStyle('.container','padding','0')
50
+ </script>
File without changes
@@ -0,0 +1,71 @@
1
+ <div class="row">
2
+ <div class="container-fluid">
3
+
4
+ <nav class="navbar navbar-expand-lg navbar-dark bg-dark" id="nav">
5
+ <div class="col-3">
6
+ <a class="navbar-brand" href="{{ siteurl }}{{site.baseurl}}">
7
+ <img height="60px" src="{{ siteurl }}{{site.baseurl}}/assets/images/logo.png" alt="{{ site.title }}"
8
+ title="{{ site.title }}">
9
+ </a>
10
+ </div>
11
+ {% assign ordered_pages=site.pages|sort:"order" %}
12
+
13
+ <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
14
+ </button>
15
+
16
+
17
+ <div class="col-9 right-aligned text-right">
18
+ <div class="collapse navbar-collapse" id="navbarSupportedContent">
19
+ <ul class="navbar-nav ">
20
+ {% for p1 in ordered_pages %}
21
+
22
+ {% if p1.topmenu == true %}
23
+ <li class="nav-item">
24
+ <a href="{{site.baseurl}}{{p1.url}}" class="nav-link">
25
+ {{p1.title}}
26
+ </a>
27
+ </li>
28
+ {% assign a2=site.submenu %}
29
+ {% for a2loop in a2%}
30
+ {%if a2loop==p1.title%}
31
+
32
+ <li class="nav-item">
33
+ <a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
34
+ </a>
35
+
36
+
37
+ <div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdownMenuLink">
38
+ {% assign ordered_pages_p2=site.pages|sort:"submenuindex" %}
39
+ {% for p2 in ordered_pages_p2 %}
40
+ {% if p2.submenu == true %}
41
+ {% for a1 in p2.submenutype %}
42
+ {% if a1 == p1.title %}
43
+ <a href="{{site.baseurl}}{{p2.url}}" class="dropdown-item">{{p2.title}}</a>
44
+ {% endif %}
45
+ {% endfor %}
46
+ {% endif %}
47
+ {% endfor %}
48
+ </div>
49
+
50
+ </li>
51
+
52
+
53
+ {%endif%}
54
+ {%endfor%}
55
+
56
+
57
+
58
+ {% endif %}
59
+ {% endfor %}
60
+ </ul>
61
+ </div>
62
+ </div>
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+ </nav>
71
+ </div></div>
@@ -0,0 +1,70 @@
1
+ <div class="row container-fluid">
2
+ <nav class="navbar navbar-expand-lg navbar-dark bg-dark" id="nav">
3
+ <a class="navbar-brand" href="#">
4
+ <img height="60px" src="{{ siteurl }}{{site.baseurl}}/assets/images/logo.png" alt="{{ site.title }}"
5
+ title="{{ site.title }}">
6
+ </a>
7
+ <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
8
+ aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
9
+ <span class="navbar-toggler-icon"></span>
10
+ </button>
11
+
12
+
13
+ <div class="container-fluid ">
14
+ {% assign ordered_pages=site.pages|sort:"order" %}
15
+ <div class="nav">
16
+ <div class="container-fluid ">
17
+
18
+
19
+
20
+
21
+
22
+
23
+
24
+ <div class="collapse navbar-collapse " id="navbarNav">
25
+ <ul class="navbar-nav ">
26
+ {% for p1 in ordered_pages %} {% if p1.topmenu == true %}
27
+ <li class="nav-item">
28
+ <a href="{{site.baseurl}}{{p1.url}}" class="nav-link">
29
+ {{p1.title}} {% assign a2=site.submenu %} {% for a2loop in a2%} {%if a2loop==p1.title%}
30
+ <li>
31
+ <a class="nav-link " href="#" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true"
32
+ aria-expanded="false">
33
+ </a>
34
+
35
+
36
+
37
+
38
+ <div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdownMenuLink">
39
+ {% assign ordered_pages_p2=site.pages|sort:"submenuindex" %} {% for p2 in ordered_pages_p2 %}
40
+ {% if p2.submenu == true %}
41
+ {% for a1 in p2.submenutype %} {% if a1 == p1.title %}
42
+ <a href="{{site.baseurl}}{{p2.url}}" class="dropdown-item">{{p2.title}}</a>
43
+ {% endif %} {% endfor %} {% endif %} {% endfor %}
44
+ </div>
45
+
46
+
47
+
48
+ </li>
49
+ {%endif%} {%endfor%}
50
+ <ul>
51
+
52
+ </ul>
53
+ </a>
54
+ </li>
55
+ {% endif %} {% endfor %}
56
+ </ul>
57
+ </div>
58
+ </div>
59
+ </div>
60
+ </ul>
61
+
62
+
63
+ </div>
64
+
65
+
66
+
67
+
68
+ </div>
69
+ </nav>
70
+ </div>
@@ -0,0 +1,11 @@
1
+ <hr>
2
+
3
+ <h2>Notices & Updates</h2>
4
+ <ul class="list-group">
5
+ {% for post in site.posts %}
6
+
7
+ <li class="list-group"><h3><a href="{{ siteurl }}{{site.baseurl}}{{ post.url }}">{{post.title}}</a></h3></li>
8
+
9
+
10
+ {% endfor %}
11
+ </ul>
@@ -0,0 +1,22 @@
1
+
2
+ ## Pages
3
+
4
+ <ul class="list-group">
5
+ {% for post in site.pages %}
6
+
7
+ <li class="list-group"><a href="{{ siteurl }}{{site.baseurl}}{{ post.url }}">{{ post.title }}</a></li>
8
+ <br>
9
+
10
+ {% endfor %}
11
+ </ul>
12
+ <hr>
13
+ ## Posts
14
+
15
+ <ul class="list-group">
16
+ {% for post in site.posts %}
17
+
18
+ <li class="list-group"><a href="{{ siteurl }}{{site.baseurl}}{{ post.url }}">{{ post.title }}</a></li>
19
+ <br>
20
+
21
+ {% endfor %}
22
+ </ul>
@@ -0,0 +1,16 @@
1
+ <div class="col-sm-6">
2
+ <div class="pull-right">
3
+ <!-- add dynamic social media icon code to placeholder -->
4
+ <ul class="social-icons">
5
+ <li>
6
+ </li>
7
+ <li>
8
+ </li>
9
+ <li>
10
+ </li>
11
+ <li>
12
+ </li>
13
+ <li>
14
+ </li>
15
+ </ul>
16
+ </div>
@@ -0,0 +1,27 @@
1
+ <nav class="nav">
2
+ <ul class="nav-item">
3
+ {% for sub in site.submenu %}
4
+ <li class="nav-item"><a href="{{site.baseurl}}/{{sub}}" class="nav-item"> {{sub}}</a></li>
5
+
6
+ <ol class="submenu">
7
+ {% assign sorted_pages =site.pages | sort:"order"%}
8
+ {% for page in sorted_pages %}
9
+
10
+ {% if page.submenu == true %}
11
+ {% for pt in page.topmenu %}
12
+ {% if pt == sub %}
13
+
14
+
15
+ <li class="nav-item"><a href="{{site.baseurl}}/{{sub}}/{{page.title}}" class="nav-item"> {{page.title}}</a></li>
16
+
17
+ {% endif %}
18
+ {% endfor %}
19
+
20
+ {% endif %}
21
+
22
+ {% endfor %}
23
+ </ol>
24
+ {% endfor %}
25
+
26
+ </ul>
27
+ </nav>
@@ -0,0 +1,9 @@
1
+ {% include header.html %}
2
+ {% include navbarauto.html %}
3
+
4
+ <div class="container pb-5" markdown="1">
5
+ {{ content }}
6
+ </div>
7
+
8
+
9
+ {% include footer.html %}
@@ -0,0 +1,8 @@
1
+ {% include header.html %}
2
+
3
+
4
+ {{ content }}
5
+
6
+
7
+
8
+ {% include footer.html %}
@@ -0,0 +1,12 @@
1
+ {% include header.html %}
2
+ {% include ieeeheader.html %}
3
+ {% include navbar.html %}
4
+ <div class="container" markdown=1>
5
+
6
+ {{ content }}
7
+ </div>
8
+
9
+
10
+ {% include ieeefootbar.html %}
11
+
12
+ {% include footer.html %}
@@ -0,0 +1,7 @@
1
+ {% include header.html %}
2
+ {% include navbarauto.html %}
3
+
4
+ {{ content }}
5
+
6
+ {% include footbar.html %}
7
+ {% include footer.html %}
@@ -0,0 +1,7 @@
1
+ ---
2
+ layout : fullwidth
3
+ ---
4
+
5
+ {{content}}
6
+
7
+ {% include notice.html %}
@@ -0,0 +1,8 @@
1
+ ---
2
+ layout : default
3
+ ---
4
+
5
+ {{ content }}
6
+
7
+
8
+ {% include notice.html %}