blog.trnck.dev
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #58 from lucario/patch-1

Set html, body, and content to `height-full`

authored by

Brandon Rosage and committed by
GitHub
c934c47c 7f7e3776

+6 -6
+1 -1
README.md
··· 62 62 Most customizations can be done in a matter of seconds, by revising your repository's `_config.yml` file. Just remember to restart your local server each time you save new changes so your Jekyll-powered website rebuilds correctly: 63 63 64 64 1. Shut down your server by entering the keyboard command <kbd>CTRL</kbd>+<kbd>c</kbd> 65 - 2. Restart your server: `jekyll serve` 65 + 2. Restart your server: `bundle exec jekyll serve` 66 66 67 67 68 68 #### Layout
+2 -2
_includes/header.html
··· 17 17 {% endif %} 18 18 19 19 <!doctype html> 20 - <html> 20 + <html class="height-full"> 21 21 <head> 22 22 <meta charset="utf-8"> 23 23 <meta name="description" content="{{ meta_description }}" /> ··· 25 25 <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> 26 26 <link href="{{ "/assets/styles.css" | absolute_url }}" rel="stylesheet" type="text/css"> 27 27 </head> 28 - <body class="bg-white" {% if site.style == 'dark' %}style="background-color: #2f363d !important"{% endif %}> 28 + <body class="bg-white height-full" {% if site.style == 'dark' %}style="background-color: #2f363d !important"{% endif %}>
+1 -1
_layouts/default.html
··· 11 11 </div> 12 12 </div> 13 13 {% else %} 14 - <div class="d-md-flex {% unless site.style == 'dark' %}border-md-bottom{% endunless %}"> 14 + <div class="d-md-flex height-full {% unless site.style == 'dark' %}border-md-bottom{% endunless %}"> 15 15 <div class="flex-self-stretch {% if site.style == 'dark' %}bg-gray-dark{% else %}border-md-right border-gray-light bg-white{% endif %} col-md-5 col-lg-4 col-xl-3 px-4 px-md-6 px-lg-7 py-6"> 16 16 {% include masthead.html metadata=true %} 17 17 </div>
+1 -1
_layouts/home.html
··· 25 25 {% endunless %} 26 26 </div> 27 27 {% else %} 28 - <div class="d-md-flex {% unless site.style == 'dark' %}border-md-bottom{% endunless %}"> 28 + <div class="d-md-flex height-full {% unless site.style == 'dark' %}border-md-bottom{% endunless %}"> 29 29 <div class="flex-self-stretch {% if site.style == 'dark' %}bg-gray-dark{% else %}border-md-right border-gray-light bg-white{% endif %} col-md-5 col-lg-4 col-xl-3 px-4 px-md-6 px-lg-7 py-6"> 30 30 {% include masthead.html metadata=true %} 31 31 </div>
+1 -1
_layouts/post.html
··· 34 34 </div> 35 35 </div> 36 36 {% else %} 37 - <div class="d-md-flex {% unless site.style == 'dark' %}border-md-bottom{% endunless %}"> 37 + <div class="d-md-flex height-full {% unless site.style == 'dark' %}border-md-bottom{% endunless %}"> 38 38 <div class="flex-self-stretch {% if site.style == 'dark' %}bg-gray-dark{% else %}border-md-right border-gray-light bg-white{% endif %} col-md-5 col-lg-4 col-xl-3 px-4 px-md-6 px-lg-7 py-6"> 39 39 {% include masthead.html metadata=true %} 40 40 </div>