Skip to content

Commit

Permalink
Merge pull request #7 from ScottLogic/minor-updates
Browse files Browse the repository at this point in the history
Minor updates
  • Loading branch information
ColinEberhardt authored Jan 30, 2024
2 parents f8520f4 + 3f72fb7 commit 6a8e5e1
Show file tree
Hide file tree
Showing 7 changed files with 320 additions and 9 deletions.
4 changes: 4 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ GEM
ruby2_keywords (>= 0.0.4)
faraday-net_http (3.0.2)
ffi (1.15.5)
ffi (1.15.5-x64-mingw-ucrt)
forwardable-extended (2.6.0)
gemoji (3.0.1)
github-pages (228)
Expand Down Expand Up @@ -212,6 +213,8 @@ GEM
jekyll-feed (~> 0.9)
jekyll-seo-tag (~> 2.1)
minitest (5.20.0)
nokogiri (1.15.4-arm64-darwin)
racc (~> 1.4)
nokogiri (1.15.4-x64-mingw-ucrt)
racc (~> 1.4)
octokit (4.25.1)
Expand Down Expand Up @@ -255,6 +258,7 @@ GEM
webrick (1.8.1)

PLATFORMS
arm64-darwin-23
x64-mingw-ucrt

DEPENDENCIES
Expand Down
12 changes: 5 additions & 7 deletions _layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,13 @@
<h1 id="page-title">{{ page.title }}</h1>
<h6 id="page-author">by {{ page.author }} - {{ page.date | date_to_string }}</h6>
<p id="page-description">{{page.description}}</p>
<p>
<h6>About this series</h6>
<p id="about-this-series">
{{ site.about }}
<p>
<br>
This guide is made available under the permissive Creative Commons <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA 4.0 license</a>
</p>
<br/>
<br/>
This guide is made available under the permissive Creative Commons <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA 4.0 license</a>
</p>
{{ content }}
{{ content }}
</div>
{% include footer.html %}
</html>
File renamed without changes.
File renamed without changes.
302 changes: 302 additions & 0 deletions _pages/technical-presentations.md

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@ h1, h2, h3, h4 {
margin-left: 35%;
}

#about-this-series {
margin-top: 20px;
padding: 20px;
background-color: lightblue;
}

#content {
margin: auto;
width: 80%;
Expand Down
5 changes: 3 additions & 2 deletions home.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ permalink: /

The Practitioner's Guides are designed to be small practical guides for IT professionals - authored by the team at [Scott Logic](https://www.scottlogic.com/). We draw on our collective experience to tackle topics that we don't feel are addressed elsewhere. Our hope is that these little 'value adds' will help you just as much as they have helped us.

Topics covered include:
The current catalogue of guides is as follows:

{% for item in site.pages %}
- {{item.title}}
- <a href="{{ site.baseurl }}{{ item.url }}">{{ item.title }}</a>
{% endfor %}

The Practitioners Guides site is an ongoing project, where we expect new guides to be published on a somewhat regular basis, watch this space!
Expand Down

0 comments on commit 6a8e5e1

Please sign in to comment.