Skip to content

Commit

Permalink
update .nim for latest style
Browse files Browse the repository at this point in the history
  • Loading branch information
typester committed Nov 20, 2009
1 parent 9b0314a commit 9bb0825
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .nim
Expand Up @@ -21,8 +21,8 @@ plugins:
rule:
expression: $entry->path =~ /^clmemo/;
config:
path: memo/{year}/{month}/{day}
filename: '{filename}/index.html'
path: memo/<?= $year ?>/<?= $month ?>/<?= $day ?>
filename: '<?= $filename ?>/index.html'

- module: AutoIndex
config:
Expand All @@ -31,7 +31,7 @@ plugins:
- module: AutoIndex
config:
filter: $entry->path =~ /^clmemo/;
path: memo/{year}/{month}/{day}
path: memo/<?= $year ?>/<?= $month ?>/<?= $day ?>

- module: AutoIndex
config:
Expand All @@ -41,7 +41,7 @@ plugins:
- module: AutoIndex
config:
filter: $entry->path =~ /^clmemo/;
path: memo/tag/{tag}
path: memo/tag/<?= $tag ?>

- module: AutoIndex
config:
Expand Down

0 comments on commit 9bb0825

Please sign in to comment.