Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pelican_comment_system: Correct template path #713

Merged
merged 2 commits into from
May 22, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion pelican_comment_system/doc/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,4 +114,4 @@ Attribute | Description
{% endif %}
```

For a more complex / extensive example have a look at [theme/template/pcs/comments.html](../theme/template/pcs/comments.html)
For a more complex / extensive example have a look at [theme/templates/pcs/comments.html](../theme/templates/pcs/comments.html)
4 changes: 2 additions & 2 deletions pelican_comment_system/doc/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ This form allows your visitors to easily write comments and send them to you via

1. Merge the `./theme` folder with your own theme folder, or copy the files manually
```
mkdir -p [yourtheme]/template/pcs
mkdir -p [yourtheme]/templates/pcs
mkdir -p [yourtheme]/static/js
cp ./theme/template/pcs/comments.html [yourtheme]/template/pcs/comments.html
cp ./theme/templates/pcs/comments.html [yourtheme]/templates/pcs/comments.html
cp ./theme/static/js/comments.js [yourtheme]/static/js/comments.html
```

Expand Down