mirror of
https://github.com/meineerde/holgerjust.de.git
synced 2025-10-17 17:01:01 +00:00
We use the casper theme from https://github.com/danielbayerlein/middleman-casper in version 34ec5aa9e2a7f179146a5e21d31b4ba61e2bd926
121 lines
2.8 KiB
Ruby
121 lines
2.8 KiB
Ruby
require 'ostruct'
|
|
require 'digest/md5'
|
|
|
|
module MiddlemanCasperHelpers
|
|
def page_title
|
|
title = blog_settings.name.dup
|
|
if is_tag_page?
|
|
title << ": #{current_resource.metadata[:locals]['tagname']}"
|
|
elsif current_page.data.title
|
|
title << ": #{current_page.data.title}"
|
|
elsif is_blog_article?
|
|
title << ": #{current_article.title}"
|
|
end
|
|
title
|
|
end
|
|
|
|
def page_description
|
|
if is_blog_article?
|
|
body = strip_tags(current_article.body).gsub(/\s+/, ' ')
|
|
truncate(body, length: 147)
|
|
else
|
|
blog_settings.description
|
|
end
|
|
end
|
|
|
|
def page_class
|
|
if is_blog_article? || current_page.data.layout == 'page'
|
|
'post-template'
|
|
elsif current_resource.metadata[:locals]['page_number'].to_i > 1
|
|
'archive-template'
|
|
else
|
|
'home-template'
|
|
end
|
|
end
|
|
|
|
def summary(article)
|
|
summary_length = article.blog_options[:summary_length]
|
|
strip_tags(article.summary(summary_length, ''))
|
|
end
|
|
|
|
def read_next_summary(article, words)
|
|
body = strip_tags(article.body)
|
|
truncate_words(body, length: words, omission: '')
|
|
end
|
|
|
|
def blog_author
|
|
OpenStruct.new(casper[:author])
|
|
end
|
|
|
|
def blog_settings
|
|
OpenStruct.new(casper[:blog])
|
|
end
|
|
|
|
def navigation
|
|
casper[:navigation]
|
|
end
|
|
|
|
def is_tag_page?
|
|
current_resource.metadata[:locals]['page_type'] == 'tag'
|
|
end
|
|
def tags?(article = current_article)
|
|
article.tags.present?
|
|
end
|
|
def tags(article = current_article, separator = ', ')
|
|
capture_haml do
|
|
article.tags.each do |tag|
|
|
haml_tag(:a, tag, href: tag_path(tag))
|
|
haml_concat(separator) unless article.tags.last == tag
|
|
end
|
|
end.gsub("\n", '')
|
|
end
|
|
|
|
def current_article_url
|
|
URI.join(blog_settings.url, current_article.url)
|
|
end
|
|
|
|
def cover(page = current_page)
|
|
if (src = page.data.cover).present?
|
|
{ style: "background-image: url(#{image_path(src)})" }
|
|
else
|
|
{ class: 'no-cover' }
|
|
end
|
|
end
|
|
def cover?(page = current_page)
|
|
page.data.cover.present?
|
|
end
|
|
|
|
def gravatar(size = 68)
|
|
md5 = Digest::MD5.hexdigest(blog_author.gravatar_email.downcase)
|
|
"https://www.gravatar.com/avatar/#{md5}?size=#{size}"
|
|
end
|
|
def gravatar?
|
|
blog_author.gravatar_email.present?
|
|
end
|
|
|
|
def twitter_url
|
|
"https://twitter.com/share?text=#{current_article.title}" \
|
|
"&url=#{current_article_url}"
|
|
end
|
|
def facebook_url
|
|
"https://www.facebook.com/sharer/sharer.php?u=#{current_article_url}"
|
|
end
|
|
def google_plus_url
|
|
"https://plus.google.com/share?url=#{current_article_url}"
|
|
end
|
|
|
|
def feed_path
|
|
if is_tag_page?
|
|
"#{current_page.url.to_s}feed.xml"
|
|
else
|
|
"#{blog.options.prefix.to_s}/feed.xml"
|
|
end
|
|
end
|
|
def home_path
|
|
"#{blog.options.prefix.to_s}/"
|
|
end
|
|
def author_path
|
|
"#{blog.options.prefix.to_s}/author/#{blog_author.name.parameterize}/"
|
|
end
|
|
end
|