Skip to content

Commit dd0a69a

Browse files
Going to a dark theme
1 parent 276de36 commit dd0a69a

14 files changed

Lines changed: 132 additions & 70 deletions

File tree

layouts/article/section.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<body>
33
{{ partial "navbar.html" . }}
44
<div class="container">
5-
<div class="row">
5+
<div class="row main-top">
66
<h1> Articles </h1>
77
<div class="row">
88
<div class="col-sm-9">

layouts/article/single.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<body>
33
{{ partial "navbar.html" . }}
44
<div class="container">
5-
<div class="row">
5+
<div class="row main-top">
66
<!-- Sidebar -->
77
<div class="col-md-3">
88
<div style="word-wrap: break-word;"> <!-- Post-specific stats -->

layouts/article/summary.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div class="well well-sm example">
22
<h4>
33
<a href="{{ .Permalink }}"><i class="fas fa-terminal"></i> {{ .Title }} </a> <small class="pull-right">{{ .Date.Format "Jan 2, 2006" }}</small><br>
4-
<small>{{ .Description }}</small>
54
</h4>
5+
<div class = "example-summary"> {{ .Description }}</div>
66
<a class="btn btn-primary btn-xs" href="{{ .Permalink }}"><i class="fas fa-file"></i> Read Me </a>
77
</div>

layouts/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66

77
<div class="container">
8-
<div class="row">
8+
<div class="row main-top">
99
<h1>Release Notes</h1>
1010
<div class="col-md-9">
1111
{{ range $paginator.Pages }}

layouts/partials/feedback-menu.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div class="col-md-6">
2-
<div class="well well-sm" style="word-wrap: break-word;"> <!-- Post-specific stats -->
2+
<div class="well well-sm footer" style="word-wrap: break-word;"> <!-- Post-specific stats -->
33
<strong>Feedback? <span class="fas fa-comment"/></strong>
44
<p>
55
If this article contains any error, or leaves any of your questions unanswered, please help us out by

layouts/partials/footer.copyright.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<footer>
22
<div class="row">
3-
<div class="col-sm-12">
3+
<div class="col-sm-12 footer">
44
<p>&copy; SoftLayer {{ dateFormat "2006" now }}<br>
55
Built with <a href="https://github.com/spf13/hugo">Hugo</a></p>
66
</div>

layouts/partials/title.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div class="row">
1+
<div class="row reference-title">
22

33
<div class="col-md-12">
44
<div style="word-wrap: break-word;"> <!-- Post-specific stats -->

layouts/reference/datatype.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<div class="col-md-3">
1212
{{ partial "datatype-bar.html" . }}
1313
</div>
14-
<div class="col-md-9">
14+
<div class="col-md-9 reference-main">
1515

1616
<h1 id="{{.Title}}"> {{.Title}} </h1>
1717
{{ partial "service_datatype_links.html" $thisPage}}

layouts/reference/method.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<div class="col-md-3">
1919
{{ partial "service-bar.html" . }}
2020
</div>
21-
<div class="col-md-9">
21+
<div class="col-md-9 reference-main">
2222

2323
<h1 id="{{.Title}}">
2424
<a href="/reference/services/{{$.Params.MainService}}">{{$.Params.MainService}}</a>::{{.Title}}

layouts/reference/service.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<div class="col-md-3 zeroPad">
1313
{{ partial "service-bar.html" . }}
1414
</div>
15-
<div class="col-md-9 zeroPad">
15+
<div class="col-md-9 zeroPad reference-main">
1616

1717
<h1 id="{{.Title}}"> {{.Title}} </h1>
1818

0 commit comments

Comments
 (0)