fix image location; fix syntax language spec on htaccess rules snippet
This commit is contained in:
parent
9d63b51928
commit
d13151eabf
@ -15,7 +15,7 @@ paginate = 10
|
|||||||
|
|
||||||
[params]
|
[params]
|
||||||
subtitle = "A Journal"
|
subtitle = "A Journal"
|
||||||
brand = "<img src=\"img/ipse-solus-logo.png\" alt=\"\"/><br/> <center>Ipse Solus</center>"
|
brand = "<img src=\"/img/ipse-solus-logo.png\" alt=\"\"/><br/> <center>Ipse Solus</center>"
|
||||||
highlightjs = "androidstudio"
|
highlightjs = "androidstudio"
|
||||||
highlightjs_extra_languages = ["yaml", "xml-dtd"]
|
highlightjs_extra_languages = ["yaml", "xml-dtd"]
|
||||||
dateFormat = "02 Jan 2006, 15:04"
|
dateFormat = "02 Jan 2006, 15:04"
|
||||||
|
@ -10,7 +10,7 @@ Unfortunately, out of the box, it wasn't working. I tried all sorts of suggestio
|
|||||||
|
|
||||||
Then, after a day of staring blankly at the problem, I suddenly realized what was wrong. There was a simple `regex` typo in the htaccess configuration that came from nextcloud. Let's see if you can see the difference. Here's what nextcloud gives you:
|
Then, after a day of staring blankly at the problem, I suddenly realized what was wrong. There was a simple `regex` typo in the htaccess configuration that came from nextcloud. Let's see if you can see the difference. Here's what nextcloud gives you:
|
||||||
|
|
||||||
```xml-dtd
|
```xml
|
||||||
<IfModule mod_rewrite.c>
|
<IfModule mod_rewrite.c>
|
||||||
RewriteEngine on
|
RewriteEngine on
|
||||||
RewriteCond %{HTTP_USER_AGENT} DavClnt
|
RewriteCond %{HTTP_USER_AGENT} DavClnt
|
||||||
@ -27,7 +27,7 @@ Then, after a day of staring blankly at the problem, I suddenly realized what wa
|
|||||||
|
|
||||||
and here is what I ended up running successfully with:
|
and here is what I ended up running successfully with:
|
||||||
|
|
||||||
```xml-dtd
|
```xml
|
||||||
<IfModule mod_rewrite.c>
|
<IfModule mod_rewrite.c>
|
||||||
RewriteEngine on
|
RewriteEngine on
|
||||||
RewriteCond %{HTTP_USER_AGENT} DavClnt
|
RewriteCond %{HTTP_USER_AGENT} DavClnt
|
||||||
|
Loading…
Reference in New Issue
Block a user