blog.trnck.dev

Merge branch 'master' into master

authored by trnck.dev and committed by

GitHub 4748e98f a66ecd13

+26 -5
+1 -1
.gitignore
··· 3 3 .sass-cache 4 4 _site/ 5 5 Gemfile.lock 6 - *.bat 6 + *.bat
-1
.ruby-version
··· 1 - 2.5.1
+3 -1
_config.yml
··· 24 24 # - stars 25 25 limit: 12 26 26 exclude: 27 - forks: false 27 + archived: false 28 + forks: true 28 29 projects: 29 30 # - repo-name 30 31 ··· 40 41 # instagram: your_username 41 42 # keybase: your_username 42 43 # linkedin: your_username 44 + # mastodon: your_username 43 45 # medium: your_username 44 46 # telegram: your_username 45 47 # unsplash: your_username
+6 -1
_data/social_media.yml
··· 36 36 share_url_prefix: https://www.linkedin.com/shareArticle?mini=true&url= 37 37 icon_svg: '<svg height="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19 18"><path d="M3.94 2A2 2 0 1 1 2 0a2 2 0 0 1 1.94 2zM4 5.48H0V18h4zm6.32 0H6.34V18h3.94v-6.57c0-3.66 4.77-4 4.77 0V18H19v-7.93c0-6.17-7.06-5.94-8.72-2.91z" fill="#959da5"/></svg>' 38 38 39 + mastodon: 40 + name: Mastodon 41 + profile_url_prefix: https://mstdn.io/ 42 + icon_svg: '<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 216.4144 232.00976"><path fill="#959da5" d="M211.80734 139.0875c-3.18125 16.36625-28.4925 34.2775-57.5625 37.74875-15.15875 1.80875-30.08375 3.47125-45.99875 2.74125-26.0275-1.1925-46.565-6.2125-46.565-6.2125 0 2.53375.15625 4.94625.46875 7.2025 3.38375 25.68625 25.47 27.225 46.39125 27.9425 21.11625.7225 39.91875-5.20625 39.91875-5.20625l.8675 19.09s-14.77 7.93125-41.08125 9.39c-14.50875.7975-32.52375-.365-53.50625-5.91875C9.23234 213.82 1.40609 165.31125.20859 116.09125c-.365-14.61375-.14-28.39375-.14-39.91875 0-50.33 32.97625-65.0825 32.97625-65.0825C49.67234 3.45375 78.20359.2425 107.86484 0h.72875c29.66125.2425 58.21125 3.45375 74.8375 11.09 0 0 32.975 14.7525 32.975 65.0825 0 0 .41375 37.13375-4.59875 62.915"/><path fill="#fff" d="M177.50984 80.077v60.94125h-24.14375v-59.15c0-12.46875-5.24625-18.7975-15.74-18.7975-11.6025 0-17.4175 7.5075-17.4175 22.3525v32.37625H96.20734V85.42325c0-14.845-5.81625-22.3525-17.41875-22.3525-10.49375 0-15.74 6.32875-15.74 18.7975v59.15H38.90484V80.077c0-12.455 3.17125-22.3525 9.54125-29.675 6.56875-7.3225 15.17125-11.07625 25.85-11.07625 12.355 0 21.71125 4.74875 27.8975 14.2475l6.01375 10.08125 6.015-10.08125c6.185-9.49875 15.54125-14.2475 27.8975-14.2475 10.6775 0 19.28 3.75375 25.85 11.07625 6.36875 7.3225 9.54 17.22 9.54 29.675"/></svg>' 43 + 39 44 medium: 40 45 name: Medium 41 46 profile_url_prefix: https://medium.com/@ ··· 43 48 44 49 stackoverflow: 45 50 name: Stack Overflow 46 - profile_url_prefix: http://stackoverflow.com/u/ 51 + profile_url_prefix: https://stackoverflow.com/u/ 47 52 icon_svg: '<svg height="24" fill="#959da5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><path class="st0" d="M84.4 93.8V70.6h7.7v30.9H22.6V70.6h7.7v23.2z"/><path class="st1" d="M38.8 68.4l37.8 7.9 1.6-7.6-37.8-7.9-1.6 7.6zm5-18l35 16.3 3.2-7-35-16.4-3.2 7.1zm9.7-17.2l29.7 24.7 4.9-5.9-29.7-24.7-4.9 5.9zm19.2-18.3l-6.2 4.6 23 31 6.2-4.6-23-31zM38 86h38.6v-7.7H38V86z"/></svg>' 48 53 49 54 telegram:
+5 -1
_includes/projects.html
··· 7 7 {% assign sort_order = 'pushed_at' %} 8 8 {% endif %} 9 9 10 - {% if site.projects.exclude.forks %} 10 + {% if site.projects.exclude.archived && site.projects.exclude.forks %} 11 + {% assign filtered_repos = site.github.public_repositories | where:'archived', false | where:'fork', false | sort: sort_order | reverse %} 12 + {% elsif site.projects.exclude.archived %} 13 + {% assign filtered_repos = site.github.public_repositories | where:'archived', false | sort: sort_order | reverse %} 14 + {% elsif site.projects.exclude.forks %} 11 15 {% assign filtered_repos = site.github.public_repositories | where:'fork', false | sort: sort_order | reverse %} 12 16 {% else %} 13 17 {% assign filtered_repos = site.github.public_repositories | sort: sort_order | reverse %}
+11
assets/styles.scss
··· 35 35 color: #6a737d; 36 36 border-left: 2px solid #959da5; 37 37 padding-left: 16px; 38 + margin-bottom: 16px; 39 + } 40 + 41 + ul, ol { 42 + padding-left: 32px; 43 + margin-bottom: 16px; 44 + } 45 + 46 + li ul, li ol { 47 + padding-left: 16px; 48 + margin-bottom: 0px; 38 49 } 39 50 } 40 51