Skip to content

Commit e1773ff

Browse files
committed
update navigation
1 parent aecf480 commit e1773ff

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

_sass/custom/custom.scss

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,3 +214,21 @@ a.skip-to-main:active {
214214
.site-nav {
215215
padding-top: 1rem;
216216
}
217+
.PageNavigation {
218+
font-size: 14px;
219+
display: block;
220+
width: auto;
221+
overflow: hidden;
222+
}
223+
224+
.PageNavigation a {
225+
display: block;
226+
width: 50%;
227+
float: left;
228+
margin: 1em 0;
229+
}
230+
231+
.PageNavigation .next {
232+
text-align: right;
233+
}
234+

index.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,15 @@ Let us know what other information you’d like to see included in this resource
7575

7676
Connecticut state employees can request to join the Open Data channel using [this form](https://forms.office.com/Pages/ResponsePage.aspx?id=-nyLEd2juUiwJjH_abtzi5L_xJbiJ_5BoyF_jDckfpJUM1JNU0ZMNVhZRFA0MVlYOUdCNjA1TkRTWC4u){:target="_blank"}.
7777

78-
[^1]: CT.gov Content Style Guide, Accessibility Best Practices, [https://portal.ct.gov/ctcontentstyleguide/improve-accessibility/accessibility-best-practices](https://portal.ct.gov/ctcontentstyleguide/improve-accessibility/accessibility-best-practices?language=en_US){:target="_blank"}
78+
[^1]: CT.gov Content Style Guide, Accessibility Best Practices, [https://portal.ct.gov/ctcontentstyleguide/improve-accessibility/accessibility-best-practices](https://portal.ct.gov/ctcontentstyleguide/improve-accessibility/accessibility-best-practices?language=en_US){:target="_blank"}
79+
80+
81+
{::nomarkdown}<div class="PageNavigation">
82+
{% if page.previous.url %}
83+
<a class="prev" href="{{page.previous.url}}">&laquo; {{page.previous.title}}</a>
84+
{% endif %}
85+
{% if page.next.url %}
86+
<a class="next" href="{{page.next.url}}">{{page.next.title}} &raquo;</a>
87+
{% endif %}
88+
</div>
89+
{:/}

0 commit comments

Comments
 (0)