Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!--
Please complete the following sections when you submit your pull request. You are encouraged to keep this top level comment box updated as you develop and respond to reviews. Note that text within html comment tags will not be rendered.
-->
### Summary

<!-- Describe the problem you're trying to fix in this pull request. Please reference any related issue and use fixes/close to automatically close them, if pertinent. For example: "Fixes #58", or "Addresses (but does not close) #238". -->

Fixes #<NUM>

*Lorem ipsum dolor sit amet, consectetur adipiscing.*

### List of changes proposed in this PR (pull-request)

<!-- We suggest using bullets and filled checkboxes [x] here -->

* *Lorem ipsum dolor sit amet, consectetur adipiscing.*
* *Lorem ipsum dolor sit amet, consectetur adipiscing.*

### Some housekeeping checks

- [ ] If you have added a new blog:
- [ ] Did you preview it locally using `quarto render`?
- [ ] Is the blog source file listed within the correct year's sub-directory?
- [ ] If you are using any images in the blog, are the [optimised](https://github.com/forwards/forwards.github.io?tab=readme-ov-file#optimizing-images)? There is a script available in [R/optimize_photo.R](https://github.com/forwards/forwards.github.io/blob/main/R/optimize_photo.R) to optimise the images.
- [ ] Did you go through the [Editing checklist](https://github.com/forwards/forwards.github.io/blob/main/README.md#editing-checklist)?
- [ ] Have you set `draft: false` in the YAML header?
- [ ] Have you updated the post date?

### What should a reviewer concentrate their feedback on?

<!-- This section is particularly useful if you have a pull request that is still in development. You can guide the reviews to focus on the parts that are ready for their comments. We suggest using bullets and filled checkboxes [x] here -->

- [ ] *Lorem ipsum dolor sit amet, consectetur adipiscing.*
- [ ] Everything looks ok?
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ dir.create("blog/2023/example-blog-post")

where the name of the directory defines the URL of your post.

Within the subdirectory, create a new file, `index.Rmd`, with the following header
Within the subdirectory, create a new file, `index.qmd`, with the following header

```yaml
---
Expand Down Expand Up @@ -84,7 +84,7 @@ refer them without a file path.

* Update the post date.
* Check the blog source file is within the correct year's sub-directory.
* Set `draft:false` in the YAML header
* Set `draft: false` in the YAML header
* Click "Render website" on the Build tab in RStudio, or in the terminal run

quarto render
Expand Down