Skip to content

Commit

Permalink
Merge pull request #45 from seankross/solana
Browse files Browse the repository at this point in the history
Fixing image bug in Solana
  • Loading branch information
seankross authored Aug 1, 2021
2 parents 422f099 + a7499c8 commit daad882
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: postcards
Title: Create Beautiful, Simple Personal Websites
Version: 0.2.1
Version: 0.2.2
Authors@R:
person(given = "Sean",
family = "Kross",
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# postcards 0.2.2

* Fixed image not appearing in Solana. Thank you @jdhoffa.

# postcards 0.2.1

* Added `solana()`.
Expand Down
7 changes: 6 additions & 1 deletion cran-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,9 @@

## R CMD check results

0 errors | 0 warnings | 0 notes
0 errors | 0 warnings | 1 note

* Days since last update: 1

I was made aware of an implementation error and this
version (0.2.2) fixes the error.
4 changes: 2 additions & 2 deletions inst/pandoc_templates/solana.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ <h1>$title$</h1>
</div>

<div class="col mr-4 mt-5">
<img src="sigridur.jpg" style="height:15rem" class="rounded float-right">
<img src="$image$" style="height:15rem" class="rounded float-right">
</div>
</div>
<div class="row mb-5">
Expand All @@ -80,7 +80,7 @@ <h1>$title$</h1>
<div class="d-flex flex-col">
<div class="mx-auto">
<div class="p-3 mt-3 text-center">
<img src="sigridur.jpg" style="height:15rem" class="rounded">
<img src="$image$" style="height:15rem" class="rounded">
</div>
<div class="p-2 text-center">
<h1>$title$</h1>
Expand Down

0 comments on commit daad882

Please sign in to comment.