Skip to content

Commit

Permalink
v0.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosgood committed Dec 29, 2023
1 parent 52ba345 commit 0d3d32d
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 11 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/nationalarchives/tna-frontend-jinja/compare/v0.1.8...HEAD)
## [Unreleased](https://github.com/nationalarchives/tna-frontend-jinja/compare/v0.1.9...HEAD)

### Added
### Changed
Expand All @@ -14,6 +14,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
### Security

## [0.1.8](https://github.com/nationalarchives/tna-frontend-jinja/compare/v0.1.8...v0.1.9) - 2023-12-29

### Changed

- Upgraded TNA Frontend to `v0.1.33`

## [0.1.8](https://github.com/nationalarchives/tna-frontend-jinja/compare/v0.1.7...v0.1.8) - 2023-12-14

### Fixed
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ We test each component against its published [component fixtures](https://github

| TNA Frontend Jinja | Compatible TNA Frontend versions |
| --------------------- | ------------------------------------------ |
| `0.1.9` | `v0.1.33` |
| `0.1.8` | `v0.1.31`, `v0.1.32` |
| `0.1.7` | `v0.1.31`, `v0.1.32` |
| `0.1.6` | `v0.1.29-prerelease`, `v0.1.30` |
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"prettier": "prettier --write '*.{mjs,json}'"
},
"dependencies": {
"@nationalarchives/frontend": "0.1.32",
"@nationalarchives/frontend": "0.1.33",
"diff": "^5.1.0",
"glob": "^10.2.7",
"js-beautify": "^1.14.8",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="tna-frontend-jinja",
version="0.1.8",
version="0.1.9",
author="Andrew Hosgood",
author_email="[email protected]",
description="TNA Frontend Jinja templates",
Expand Down
2 changes: 1 addition & 1 deletion tna_frontend_jinja/templates/components/card/macro.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{%- if params.horizontal -%}
{%- set containerClasses = containerClasses + ['tna-card--horizontal'] -%}
{%- endif -%}
{%- if params.style == "boxed" -%}
{%- if params.style == "contrast" -%}
{%- set containerClasses = containerClasses + ['tna-card--contrast'] -%}
{%- elif params.style == "accent" -%}
{%- set containerClasses = containerClasses + ['tna-card--accent'] -%}
Expand Down
4 changes: 2 additions & 2 deletions tna_frontend_jinja/templates/components/footer/macro.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,11 @@ <h3 class="tna-footer__navigation-block-heading tna-heading-m">
</li>
{%- endfor -%}
</ul>
<hr />
<hr>
</nav>
{%- else -%}
<div class="tna-column--full">
<hr />
<hr>
</div>
{%- endif -%}
</div>
Expand Down
2 changes: 1 addition & 1 deletion tna_frontend_jinja/templates/components/header/macro.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<div class="tna-header__exit">
<div class="tna-container">
<div class="tna-column tna-column--full">
<a href="{{ params.exit.href }}" class="tna-header__exit-link"{%- if params.exit.target %} target="{{ params.exit.target }}"{%- endif -%}>
<a href="{{ params.exit.href }}" class="tna-header__exit-link"{%- if params.exit.target %} target="{{ params.exit.target }}"{% endif %}>
{{ params.exit.text }}
{%- if params.exit.target == "_blank" -%}
<i class="fa-solid fa-arrow-up-right-from-square"></i>
Expand Down

0 comments on commit 0d3d32d

Please sign in to comment.