summaryrefslogtreecommitdiff
path: root/src/directive/sidebar.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/directive/sidebar.rs')
-rw-r--r--src/directive/sidebar.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/directive/sidebar.rs b/src/directive/sidebar.rs
index b80bfe9..5148086 100644
--- a/src/directive/sidebar.rs
+++ b/src/directive/sidebar.rs
@@ -12,7 +12,7 @@ impl Sidebar {
pub const ALLOW_ANY_UNNAMED: bool = true;
pub fn process(&self, _site: &Site, _meta: &mut PageMeta) -> Result<String, SiteError> {
- Ok("FIXME:sidebar".into())
+ Err(SiteError::UnimplementedDirective("sidebar".into()))
}
}