personal-website 0.1.2 → 0.2.12

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5823ed4e5393639258abc4bebe8fa2ee512f1daea5f6ddb9c3f26e03eda7df18
4
- data.tar.gz: '0893622ed5c01601afcb3f0741958841c61831670f757cb6dce384fcfeded5fb'
3
+ metadata.gz: 74e1fa2039a9d2499a70007bf8411ae76d5afd0eb0b55d577a7551d2d1148a86
4
+ data.tar.gz: 4a79203036ff6abf0e4d922463dea2b55d14ffb90e4a9532b18549f21a76b3fe
5
5
  SHA512:
6
- metadata.gz: 48483fe0a78d6fba0299ec2cfc7443c39b5ff5a19218774c3b3ab67832eafd6dd990c56b6072cb89a55f545de5f7cfbaad892fec5ce6e40b4c9e9c8650b82c05
7
- data.tar.gz: ffa66308beb70a128d27df81667e0ae8ccdb1998f6611c96f5d3f95f190a852734796b0d2aebf6a47a3bb5ee35aec8aa21a89a23e5805986102d445662a50eef
6
+ metadata.gz: 2623174bc5942b7e959b12265b245263aefc19112bb9a9da02342b93a0baafc47e240f1c58dab173f769c609d9849273b89738213a952a381e0f75f49f7fdcbc
7
+ data.tar.gz: c24eb95822da3b96e2d07fd1c9c1b32d72f0aeb5bcecd2a97c95dd29308aaf160f258b027b6fe8d5203b4608abb6bad81ad8698f5871f2fc172659e9d527e015
@@ -0,0 +1,29 @@
1
+ <div class="item" year="{{ ext.year }}">
2
+ {% if ext.image %}
3
+ {% if ext.url == nil %}
4
+ <span class="image"><img src="{{ ext.image }}"></span>
5
+ {% else %}
6
+ <a href="{{ ext.url }}" target="_blank" class="image" referrerpolicy="no-referrer"><img src="{{ ext.image }}"></a>
7
+ {% endif %}
8
+ {% endif %}
9
+ <div {% if ext.image == nil %}class="no-img"{% endif %}>
10
+ <p>
11
+ {% if ext.url == nil %}
12
+ {{ ext.title }}
13
+ {% else %}
14
+ <a href="{{ ext.url }}" target="_blank" referrerpolicy="no-referrer">{{ ext.title }}</a>
15
+ {% endif %}
16
+ <br>
17
+ {% if ext.subtitle %}
18
+ <span class="sub font-italic">{{ ext.subtitle }}</span><br>
19
+ {% endif %}
20
+ <span class="sub">
21
+ {% if ext.location %}
22
+ {{ ext.location }} -
23
+ {% endif %}
24
+ {{ ext.year }}
25
+ </span>
26
+ </p>
27
+ <p class="sub">{{ ext.authors }}</p>
28
+ </div>
29
+ </div>
@@ -1,3 +1,3 @@
1
1
  <footer class="text-center bg-dark text-light">
2
- &copy; 2020 {{ site.name }}
2
+ &copy; {{ 'now' | date: "%Y" }} {{ site.name }}
3
3
  </footer>
@@ -1,7 +1,7 @@
1
1
  <header class="container-fluid fixed-top bg-dark py-5 py-md-0">
2
2
  <div class="row align-items-center">
3
3
  <div class="col-md-auto text-center">
4
- <img src="{{ site.photo }}" alt="" id="photo" class="rounded-circle">
4
+ <a href="/"><img src="{{ site.image }}" alt="" id="photo" class="rounded-circle"></a>
5
5
  </div>
6
6
  <div class="col-md container text-center">
7
7
  <div class="row align-items-center text-md-left">
@@ -0,0 +1,11 @@
1
+ <div class="post">
2
+ <a href="{{ post.url }}" target="_blank"><img src="{{ post.image }}"></a>
3
+ <div class="desc">
4
+ <p>
5
+ <span class="text-secondary">{{ post.date | date: "%a, %b %d, %y" }}</span><br>
6
+ By @{{ post.authors | join: ", @" }}
7
+ </p>
8
+ <h3><a href="{{ post.url }}" target="_blank">{{ post.title }}</a></h3>
9
+ <p>{{ post.description }}</p>
10
+ </div>
11
+ </div>
@@ -1,6 +1,6 @@
1
1
  <a href="{{ project.url }}" target="_blank" class="project">
2
2
  <figure>
3
- <h5>{{ project.title }}</h5>
3
+ <h5 class="text-center">{{ project.title }}</h5>
4
4
  <img src="{{ project.image_path }}" alt="">
5
5
  <br><br>
6
6
  <figcaption>
@@ -0,0 +1,18 @@
1
+ <style>
2
+ .IN-widget button{
3
+ border-radius: 3px !important;
4
+ }
5
+
6
+ .IN-widget svg{
7
+ padding: 2px;
8
+ vertical-align: top;
9
+ }
10
+
11
+ .twitter-share-button{
12
+ vertical-align: bottom;
13
+ }
14
+ </style>
15
+ <a href="https://twitter.com/share?ref_src=twsrc%5Etfw" class="twitter-share-button" data-show-count="false">Tweet</a><script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
16
+ <div class="fb-share-button" data-href="{{ page.url | absolute_url }}" data-layout="button" data-size="small"><a target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fdevelopers.facebook.com%2Fdocs%2Fplugins%2F&amp;src=sdkpreparse" class="fb-xfbml-parse-ignore">Share</a></div>
17
+ <script src="https://platform.linkedin.com/in.js" type="text/javascript">lang: en_US</script>
18
+ <script type="IN/Share" data-url="{{ page.url | absolute_url }}"></script>
@@ -0,0 +1,44 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <!DOCTYPE html>
6
+ <html>
7
+
8
+ <head>
9
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
10
+ <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
11
+ <link rel="stylesheet" href="/assets/css/external.css?version=0.2.1">
12
+ {% seo %}
13
+ </head>
14
+
15
+ <body>
16
+ {% include header.html %}
17
+ <div class="external mx-auto">
18
+ <div class="sidebar">
19
+ {% assign grouped = site.data.external[page.external].list | group_by: "year" %}
20
+ {% for year in grouped %}
21
+ <a href="/{{ page.external }}?year={{ year.name }}" class="active"><p>{{ year.name }}</p></a>
22
+ {% endfor %}
23
+ </div>
24
+ <div class="content">
25
+ <div>
26
+ {% assign content_stripped = content | strip %}
27
+ {% if content_stripped != "" %}
28
+ <div>{{ content }}</div>
29
+ {% endif %}
30
+ </div>
31
+ <div class="list">
32
+ {% for ext in site.data.external[page.external].list %}
33
+ {% include external-item.html %}
34
+ {% endfor %}
35
+ </div>
36
+ </div>
37
+ </div>
38
+ {% include footer.html %}
39
+ </body>
40
+
41
+ <script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
42
+ <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
43
+ <script src="/assets/js/external.js?version=0.2.1"></script>
44
+ </html>
data/_layouts/home.html CHANGED
@@ -7,21 +7,29 @@ layout: default
7
7
 
8
8
  <head>
9
9
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
10
- {% if site.google-search-console %}
11
- <meta name="google-site-verification" content="{{ site.google-search-console }}" />
12
- {% endif %}
13
10
  <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
14
- <link rel="stylesheet" href="/assets/css/home.css">
15
- <title>{{ site.name }}</title>
11
+ <link rel="stylesheet" href="/assets/css/home.css?version=0.2.1">
12
+ {% seo %}
16
13
  </head>
17
14
 
18
15
  <body>
19
16
  {% include header.html %}
20
- <div class="content">
17
+ <div id="home-content">
21
18
  {% assign content_stripped = content | strip %}
22
19
  {% if content_stripped != "" %}
23
20
  <div>{{ content }}</div>
24
21
  {% endif %}
22
+ {% assign n_posts = site.posts | size %}
23
+ {% if n_posts > 0 %}
24
+ <div>
25
+ <h1 class="text-center mb-5">Blog</h1>
26
+ <div class="posts">
27
+ {% for post in site.posts %}
28
+ {% include post.html %}
29
+ {% endfor %}
30
+ </div>
31
+ </div>
32
+ {% endif %}
25
33
  {% if site.data.work or site.data.education %}
26
34
  <div class="row d-flex">
27
35
  {% if site.data.work %}
@@ -47,18 +55,35 @@ layout: default
47
55
  </div>
48
56
  {% endif %}
49
57
  {% if site.data.projects %}
50
- <div class="text-center">
51
- <h1>Projects</h1>
52
- {% for project in site.data.projects %}
53
- {% include project.html %}
54
- {% endfor %}
58
+ <div>
59
+ <h1 class="text-center">Projects</h1>
60
+ <div class="projects">
61
+ {% for project in site.data.projects %}
62
+ {% include project.html %}
63
+ {% endfor %}
64
+ </div>
55
65
  </div>
56
66
  {% endif %}
67
+ {% if site.data.external %}
68
+ {% for external in site.data.external %}
69
+ <div class="external" id="{{ external[0] }}">
70
+ <h1>{{ external[1].name }}</h1>
71
+ <div class="list">
72
+ {% for ext in external[1].list limit:external[1].limit %}
73
+ {% include external-item.html %}
74
+ {% endfor %}
75
+ </div>
76
+ {% if external[1].list.size > external[1].limit %}
77
+ <a href="/{{ external[0] }}" target="_blank" class="more">More</a>
78
+ {% endif %}
79
+ </div>
80
+ {% endfor %}
81
+ {% endif %}
57
82
  </div>
58
83
  {% include footer.html %}
59
84
  </body>
60
85
 
61
86
  <script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
62
87
  <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
63
- <script src="/assets/js/header.js"></script>
88
+ <script src="/assets/js/header.js?version=0.2.1"></script>
64
89
  </html>
@@ -0,0 +1,40 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <!DOCTYPE html>
6
+ <html>
7
+
8
+ <head>
9
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
10
+ <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
11
+ <link rel="stylesheet" href="/assets/css/post.css?version=0.2.1">
12
+ {% seo %}
13
+ </head>
14
+
15
+ <body>
16
+ {% include header.html %}
17
+ <div id="post" class="mx-auto">
18
+ <h1 class="font-italic">{{ page.title }}</h1>
19
+ <p>{{ page.description }}</p>
20
+ <hr>
21
+ <p>By @{{ page.authors | join: ", @" }}</p>
22
+ <div class="d-flex justify-content-between">
23
+ <p class="text-secondary">
24
+ {{ page.date | date: "%a, %b %d, %y" }}
25
+ </p>
26
+ <div>{% include share-buttons.html %}</div>
27
+ </div>
28
+ <div id="post-content">
29
+ {{ content }}
30
+ </div>
31
+ <br>
32
+ <hr style="height:2px;border-width:0;background-color:silver">
33
+ <div>{% include share-buttons.html %}</div>
34
+ </div>
35
+ {% include footer.html %}
36
+ <div id="fb-root"></div>
37
+ <script async defer crossorigin="anonymous" src="https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v8.0" nonce="il42YRik"></script>
38
+ </body>
39
+
40
+ </html>
@@ -0,0 +1,73 @@
1
+
2
+ .external{
3
+ display: inline-flex;
4
+ width: 100%;
5
+ flex-wrap: wrap;
6
+ }
7
+
8
+ .external h1{
9
+ width: 100%;
10
+ text-align: center;
11
+ }
12
+
13
+ .external .list{
14
+ width: 100%;
15
+ display: inline-flex;
16
+ flex-wrap: wrap;
17
+ justify-content: center;
18
+ }
19
+
20
+ .external .item{
21
+ display: inline-flex;
22
+ flex-wrap: wrap;
23
+ margin: 25px;
24
+ flex-direction: column;
25
+ }
26
+
27
+ .external .item .image{
28
+ margin: 0 auto;
29
+ }
30
+
31
+ .external .item img{
32
+ height: 250px;
33
+ max-width: min(calc(100vw - 40px), 400px);
34
+ object-fit: contain;
35
+ transition: transform .5s ease;
36
+ }
37
+
38
+ .external .item img:hover{
39
+ text-decoration: none;
40
+ -webkit-transform: scale(1.1);
41
+ transform: scale(1.1);
42
+ }
43
+
44
+ .external .item div{
45
+ margin-top: 10px;
46
+ max-width: min(calc(100vw - 40px), 400px);
47
+ }
48
+
49
+ .external .item .sub{
50
+ color: grey;
51
+ }
52
+
53
+ .external .item a:hover{
54
+ text-decoration: none;
55
+ }
56
+
57
+ .external .item p:last-child{
58
+ margin-bottom: 0;
59
+ }
60
+
61
+ .external .more{
62
+ margin-top: 50px;
63
+ margin-left: auto;
64
+ padding: 10px;
65
+ display: inline-flex;
66
+ border: 1px black solid;
67
+ border-radius: 5px;
68
+ color: initial;
69
+ }
70
+
71
+ .external .more:visited{
72
+ color: initial;
73
+ }
@@ -0,0 +1,51 @@
1
+ .external{
2
+ margin: 50px;
3
+ width: min(900px, calc(100% - 100px));
4
+ display: flex;
5
+ flex-wrap: wrap;
6
+ }
7
+
8
+ .external .sidebar{
9
+ padding: 15px 50px;
10
+ }
11
+
12
+ .external .content{
13
+ width: calc(100% - 140px);
14
+ }
15
+
16
+ .external .list{
17
+ display: inline-flex;
18
+ flex-wrap: wrap;
19
+ }
20
+
21
+ .external .item:nth-child(odd){
22
+ background-color: #f5f5f5;
23
+ }
24
+
25
+ .external .item{
26
+ width: 100%;
27
+ display: inline-flex;
28
+ flex-wrap: wrap;
29
+ padding: 25px;
30
+ }
31
+
32
+ .external .item .image{
33
+ align-self: center;
34
+ }
35
+
36
+ .external .item img{
37
+ width: 200px;
38
+ margin-right: 25px;
39
+ }
40
+
41
+ .external .item div{
42
+ width: calc(100% - 225px);
43
+ }
44
+
45
+ .external .item p:last-child{
46
+ margin-bottom: 0;
47
+ }
48
+
49
+ .external .item div.no-img{
50
+ width: 100%;
51
+ }
@@ -0,0 +1,12 @@
1
+ body > header{
2
+ position: initial !important;
3
+ }
4
+
5
+ #photo{
6
+ margin: calc(2vw * (1 - 250 / 350));
7
+ max-height: 100px;
8
+ }
9
+
10
+ .social{
11
+ max-height: 50px;
12
+ }
data/_sass/header.scss CHANGED
@@ -1,7 +1,11 @@
1
+ body > header{
2
+ box-shadow: 0 0 1px black;
3
+ }
4
+
1
5
  #photo{
2
6
  margin: 2vw;
3
7
  min-height: 100px;
4
- max-width: calc(24vh + 12vw);
8
+ max-width: min(calc(24vh + 12vw), 100%);
5
9
  max-height: calc(24vh + 12vw);
6
10
  border: 2px solid white;
7
11
  object-fit: cover;
data/_sass/home.scss ADDED
@@ -0,0 +1,45 @@
1
+ #home-content{
2
+ border-spacing: 15px;
3
+ margin-top: calc(24vh + 16vw);
4
+ }
5
+
6
+ #home-content > div{
7
+ padding: 50px;
8
+ }
9
+
10
+ #home-content > div:nth-child(even){
11
+ background-color: #fafafa;
12
+ }
13
+
14
+ .posts, .projects{
15
+ display: grid;
16
+ justify-content: center;
17
+ }
18
+
19
+ .posts{
20
+ gap: 50px 75px;
21
+ width: 100%;
22
+ display: inline-flex;
23
+ flex-wrap: wrap;
24
+ justify-content: center;
25
+ }
26
+
27
+ .projects{
28
+ grid-template-columns: repeat(auto-fit, min(calc(100vw - 100px), 600px));
29
+ }
30
+
31
+ .row{
32
+ margin-left: 0;
33
+ margin-right: 0;
34
+ }
35
+
36
+ @media screen and (max-width: 768px){
37
+ #home-content{
38
+ margin-top: 0px;
39
+ }
40
+
41
+ #home-content > div{
42
+ padding-right: 50px;
43
+ padding-left: 50px;
44
+ }
45
+ }
data/_sass/post.scss ADDED
@@ -0,0 +1,63 @@
1
+ .post{
2
+ display: inline-flex;
3
+ margin: 0 15px;
4
+ }
5
+
6
+ .post img{
7
+ margin: 5px 10px;
8
+ width: 400px;
9
+ height: 250px;
10
+ object-fit: cover;
11
+ }
12
+
13
+ .post .desc{
14
+ display: inline-block;
15
+ margin: 5px 10px;
16
+ width: 260px;
17
+ vertical-align: top;
18
+ }
19
+
20
+ .post a:hover{
21
+ text-decoration: none;
22
+ }
23
+
24
+ #post{
25
+ margin: 50px;
26
+ width: min(700px, calc(100% - 100px));
27
+ font-family: "Times New Roman", Times, serif;
28
+ font-size: 1.2em;
29
+ }
30
+
31
+ #post-content img{
32
+ max-width: 100%;
33
+ }
34
+
35
+ table, th, td {
36
+ border: 1px solid silver;
37
+ }
38
+
39
+ table{
40
+ width: 100%;
41
+ }
42
+
43
+ th, td{
44
+ padding: 5px 15px;
45
+ }
46
+
47
+ th{
48
+ text-align: center;
49
+ }
50
+
51
+ @media screen and (max-width: 768px){
52
+ .post{
53
+ display: initial;
54
+ }
55
+
56
+ .post img, .post .desc{
57
+ width: calc(100vw - 100px);
58
+ }
59
+
60
+ .post img{
61
+ height: calc(62.5vw - 100px);
62
+ }
63
+ }
data/_sass/project.scss CHANGED
@@ -3,20 +3,17 @@
3
3
  padding: 40px;
4
4
  margin: 25px;
5
5
  display: inline-block;
6
- border-radius: 15px;
7
6
  transition: transform .5s ease;
8
7
  }
9
8
 
10
9
  .project img{
11
10
  object-fit: contain;
12
- max-height: 250px;
13
- max-width: 100%;
14
- width: 400px;
15
- border-radius: 15px;
11
+ max-height: 300px;
12
+ width: 100%;
16
13
  }
17
14
 
18
15
  .project figcaption{
19
- max-width: 400px;
16
+ max-width: 100%;
20
17
  }
21
18
 
22
19
  .project, .project:visited{
@@ -0,0 +1,6 @@
1
+ ---
2
+ ---
3
+ @import "header";
4
+ @import "header-mini";
5
+ @import "external";
6
+ @import "footer";
data/assets/css/home.scss CHANGED
@@ -1,7 +1,9 @@
1
1
  ---
2
2
  ---
3
3
  @import "header";
4
- @import "content";
4
+ @import "home";
5
+ @import "post";
5
6
  @import "experience";
6
7
  @import "project";
8
+ @import "external-home";
7
9
  @import "footer";
@@ -0,0 +1,6 @@
1
+ ---
2
+ ---
3
+ @import "header";
4
+ @import "header-mini";
5
+ @import "post";
6
+ @import "footer";
@@ -0,0 +1,4 @@
1
+ let searchParams = new URLSearchParams(window.location.search)
2
+ let year = searchParams.get("year")
3
+
4
+ if(year != null) $(".external .item[year!="+year+"]").remove();
data/assets/js/header.js CHANGED
@@ -1,20 +1,24 @@
1
- me_height = $("#photo").outerHeight();
2
- social_height = $(".social").outerHeight();
3
- me_margin = ($("#photo").outerHeight(true) - me_height) / 2;
1
+ // Get viewport dimensions
2
+ vw = $(window).width();
3
+ vh = $(window).height()
4
+
5
+ me_height = .24 * vh + .12 * vw // 24vh + 12vw
6
+ social_height = .05 * vw;
7
+ me_margin = .02 * vw;
4
8
 
5
9
  $(window).resize(function(e){
6
10
  $("#photo").outerHeight('');
7
11
  $(".social").outerHeight('');
8
12
  $("#photo").css("margin", '');
9
- me_height = $("#photo").outerHeight();
10
- social_height = $(".social").outerHeight();
11
- me_margin = ($("#photo").outerHeight(true) - me_height) / 2;
12
- test(e);
13
+ me_height = .24 * vh + .12 * vw // 24vh + 12vw
14
+ social_height = .05 * vw;
15
+ me_margin = .02 * vw;
16
+ scroll_header(e);
13
17
  });
14
18
 
15
- $(window).scroll(test);
19
+ $(window).scroll(scroll_header);
16
20
 
17
- function test(e){
21
+ function scroll_header(e){
18
22
  scroll_top = $(window).scrollTop();
19
23
  // Disable resizing for small screens and negative scroll
20
24
  if(scroll_top < 0 || $(window).width() <= 768) return;
@@ -30,4 +34,6 @@ function test(e){
30
34
  if($(window).width() <= 945) return;
31
35
  // Resize social media icons
32
36
  $(".social").outerHeight(social_height - scroll_top / 5);
33
- }
37
+ }
38
+
39
+ $(window).resize();
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: personal-website
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.2.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lucas Bulgarelli
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-09-06 00:00:00.000000000 Z
11
+ date: 2021-03-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -24,6 +24,48 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '3.9'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jekyll-mentions
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 1.5.1
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 1.5.1
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-sitemap
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 1.4.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 1.4.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: jekyll-seo-tag
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 2.6.1
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 2.6.1
27
69
  - !ruby/object:Gem::Dependency
28
70
  name: bundler
29
71
  requirement: !ruby/object:Gem::Requirement
@@ -77,18 +119,30 @@ files:
77
119
  - LICENSE.txt
78
120
  - README.md
79
121
  - _includes/education.html
122
+ - _includes/external-item.html
80
123
  - _includes/footer.html
81
124
  - _includes/header.html
125
+ - _includes/post.html
82
126
  - _includes/project.html
127
+ - _includes/share-buttons.html
83
128
  - _includes/work.html
84
129
  - _layouts/default.html
130
+ - _layouts/external.html
85
131
  - _layouts/home.html
86
- - _sass/content.scss
132
+ - _layouts/post.html
87
133
  - _sass/experience.scss
134
+ - _sass/external-home.scss
135
+ - _sass/external.scss
88
136
  - _sass/footer.scss
137
+ - _sass/header-mini.scss
89
138
  - _sass/header.scss
139
+ - _sass/home.scss
140
+ - _sass/post.scss
90
141
  - _sass/project.scss
142
+ - assets/css/external.scss
91
143
  - assets/css/home.scss
144
+ - assets/css/post.scss
145
+ - assets/js/external.js
92
146
  - assets/js/header.js
93
147
  homepage: https://github.com/lbulgarelli/personal-website
94
148
  licenses:
@@ -109,7 +163,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
109
163
  - !ruby/object:Gem::Version
110
164
  version: '0'
111
165
  requirements: []
112
- rubygems_version: 3.1.2
166
+ rubygems_version: 3.1.4
113
167
  signing_key:
114
168
  specification_version: 4
115
169
  summary: Jekyll theme for personal websites.
data/_sass/content.scss DELETED
@@ -1,28 +0,0 @@
1
- .content{
2
- border-spacing: 15px;
3
- margin-top: calc(24vh + 16vw);
4
- }
5
-
6
- .content > div{
7
- padding: 50px;
8
- }
9
-
10
- .content > div:nth-child(even){
11
- background-color: #fafafa;
12
- }
13
-
14
- .row{
15
- margin-left: 0;
16
- margin-right: 0;
17
- }
18
-
19
- @media screen and (max-width: 768px){
20
- .content{
21
- margin-top: 0px;
22
- }
23
-
24
- .content > div{
25
- padding-right: 0px;
26
- padding-left: 0px;
27
- }
28
- }