mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
handle custom stylesheets in blog
This commit is contained in:
parent
23dc76a346
commit
87ca9bc101
4 changed files with 56 additions and 27 deletions
4
Makefile
4
Makefile
|
|
@ -1,5 +1,5 @@
|
|||
JAVASCRIPTS=$(shell echo assets/js/*.js)
|
||||
STYLESHEETS=$(shell echo assets/css/*.css)
|
||||
STYLESHEETS=$(shell echo assets/css/*.css) $(shell echo _blog/styles/*.css)
|
||||
POSTS=$(shell echo _blog/published/*.html) $(shell echo _blog/published/*.md)
|
||||
|
||||
all: proj blog combine
|
||||
|
|
@ -10,7 +10,7 @@ proj: projects.json templates/proj/index.html templates/proj/project.html
|
|||
|
||||
blog: _blog/blog.json templates/blog/index.html templates/blog/post.html $(POSTS)
|
||||
@echo
|
||||
./bin/blog.rb _blog public/blog
|
||||
./bin/blog.rb _blog public
|
||||
|
||||
minify: $(JAVASCRIPTS) $(STYLESHEETS)
|
||||
@echo
|
||||
|
|
|
|||
69
bin/blog.rb
69
bin/blog.rb
|
|
@ -37,6 +37,8 @@ class Blag
|
|||
def initialize src, dest
|
||||
@src = src
|
||||
@dest = dest
|
||||
@blog_dest = File.join(dest, 'blog')
|
||||
@css_dest = File.join(dest, 'css')
|
||||
read_blog
|
||||
end
|
||||
|
||||
|
|
@ -46,6 +48,7 @@ class Blag
|
|||
generate_rss
|
||||
generate_posts_json
|
||||
generate_archive
|
||||
copy_assets
|
||||
end
|
||||
|
||||
def generate_index
|
||||
|
|
@ -53,13 +56,13 @@ class Blag
|
|||
index_template = File.read(File.join('templates', 'blog', 'index.html'))
|
||||
post = posts.first
|
||||
values = { :post => post,
|
||||
:article => Mustache.render(template(post[:type]), post),
|
||||
:article => html(post),
|
||||
:previous => posts[1],
|
||||
:filename => post[:filename],
|
||||
:comments => post[:comments]
|
||||
}
|
||||
index_html = Mustache.render(index_template, values)
|
||||
File.open(File.join(@dest, 'index.html'), 'w') {|f| f.puts(index_html) }
|
||||
File.open(File.join(@blog_dest, 'index.html'), 'w') {|f| f.puts(index_html) }
|
||||
end
|
||||
|
||||
def generate_posts
|
||||
|
|
@ -67,7 +70,7 @@ class Blag
|
|||
posts.each_with_index do |post, i|
|
||||
values = { :title => post[:title],
|
||||
:link => post[:link],
|
||||
:article => Mustache.render(template(post[:type]), post),
|
||||
:article => html(post),
|
||||
:previous => i < posts.length - 1 && posts[i + 1],
|
||||
:next => i > 0 && posts[i - 1],
|
||||
:filename => post[:filename],
|
||||
|
|
@ -75,24 +78,30 @@ class Blag
|
|||
:keywords => (DefaultKeywords + post[:tags]).join(',')
|
||||
}
|
||||
post[:html] = Mustache.render(page_template, values)
|
||||
File.open(File.join(@dest, post[:filename]), 'w') {|f| f.puts(post[:html]) }
|
||||
File.open(File.join(@blog_dest, post[:filename]), 'w') {|f| f.puts(post[:html]) }
|
||||
end
|
||||
end
|
||||
|
||||
def generate_posts_json
|
||||
json = JSON.generate({ :published => posts.map {|p| p[:filename]} })
|
||||
File.open(File.join(@dest, 'posts.json'), 'w') { |f| f.puts(json) }
|
||||
File.open(File.join(@blog_dest, 'posts.json'), 'w') { |f| f.puts(json) }
|
||||
end
|
||||
|
||||
def generate_archive
|
||||
archive_template = File.read(File.join('templates', 'blog', 'archive.html'))
|
||||
html = Mustache.render(archive_template, :posts => posts)
|
||||
File.open(File.join(@dest, 'archive.html'), 'w') { |f| f.puts(html) }
|
||||
File.open(File.join(@blog_dest, 'archive.html'), 'w') { |f| f.puts(html) }
|
||||
end
|
||||
|
||||
def generate_rss
|
||||
# posts rss
|
||||
File.open(rss_file, 'w') { |f| f.puts(rss.target!) }
|
||||
File.open(rss_file, 'w') { |f| f.puts(rss_for_posts.target!) }
|
||||
end
|
||||
|
||||
def copy_assets
|
||||
Dir[File.join(@src, 'css', '*.css')].each do |stylesheet|
|
||||
FileUtils.cp(stylesheet, @css_dest)
|
||||
end
|
||||
end
|
||||
|
||||
def posts
|
||||
|
|
@ -112,26 +121,38 @@ class Blag
|
|||
puts "ignoring unknown header: #{line}"
|
||||
end
|
||||
end
|
||||
post[:styles] = (post[:styles] || '').split(/\s*,\s*/)
|
||||
post[:tags] = (post[:tags] || '').split(/\s*,\s*/)
|
||||
post[:url] = @url + '/' + post[:filename]
|
||||
post[:timestamp] = post[:timestamp].to_i
|
||||
post[:content] = lines.join
|
||||
post[:body] = RDiscount.new(post[:content]).to_html
|
||||
post[:type] = post[:link] ? :link : :post
|
||||
post[:rss_html] = Mustache.render(rss_template(post[:type]), {:post => post})
|
||||
post[:rfc822] = Time.at(post[:timestamp]).rfc822
|
||||
post[:tags] = (post[:tags] || '').split(/\s*,\s*/).map(&:strip)
|
||||
# comments on by default
|
||||
post[:comments] = true if post[:comments].nil?
|
||||
post
|
||||
end.sort { |a, b| b[:timestamp] <=> a[:timestamp] }
|
||||
end
|
||||
|
||||
def rss
|
||||
rss_for_posts
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def blog_file
|
||||
File.join(@src, 'blog.json')
|
||||
end
|
||||
|
||||
def read_blog
|
||||
blog = JSON.parse(File.read(blog_file))
|
||||
@title = blog['title']
|
||||
@subtitle = blog['subtitle']
|
||||
@url = blog['url']
|
||||
end
|
||||
|
||||
def html(post)
|
||||
Mustache.render(template(post[:type]), post)
|
||||
end
|
||||
|
||||
def template(type)
|
||||
if type == :post
|
||||
@post_template ||= File.read(File.join('templates', 'blog', 'post.mustache'))
|
||||
|
|
@ -142,10 +163,6 @@ class Blag
|
|||
end
|
||||
end
|
||||
|
||||
def blog_file
|
||||
File.join(@src, 'blog.json')
|
||||
end
|
||||
|
||||
def rss_template(type)
|
||||
if type == :post
|
||||
@post_rss_template ||= File.read(File.join('templates', 'blog', 'post.rss.html'))
|
||||
|
|
@ -156,17 +173,14 @@ class Blag
|
|||
end
|
||||
end
|
||||
|
||||
def read_blog
|
||||
blog = JSON.parse(File.read(blog_file))
|
||||
@title = blog['title']
|
||||
@subtitle = blog['subtitle']
|
||||
@url = blog['url']
|
||||
end
|
||||
|
||||
def rss_file
|
||||
File.join(@dest, 'sjs.rss')
|
||||
File.join(@blog_dest, 'sjs.rss')
|
||||
end
|
||||
|
||||
def rss_html(post)
|
||||
Mustache.render(rss_template(post[:type]), { :post => post })
|
||||
end
|
||||
|
||||
def rss_for_posts(options = {})
|
||||
title = options[:title] || @title
|
||||
subtitle = options[:subtitle] || @subtitle
|
||||
|
|
@ -176,6 +190,11 @@ class Blag
|
|||
xml = Builder::XmlMarkup.new
|
||||
xml.instruct! :xml, :version => '1.0'
|
||||
xml.instruct! 'xml-stylesheet', :href => 'http://samhuri.net/css/blog-all.min.css', :type => 'text/css'
|
||||
|
||||
post[:styles].each do |style|
|
||||
xml.instruct! 'xml-stylesheet', :href => "http://samhuri.net/css/#{style}.min.css", :type => 'text/css'
|
||||
end
|
||||
|
||||
xml.rss :version => '2.0' do
|
||||
xml.channel do
|
||||
xml.title title
|
||||
|
|
@ -186,7 +205,7 @@ class Blag
|
|||
posts.each do |post|
|
||||
xml.item do
|
||||
xml.title post[:link] ? "#{post[:title]} →" : post[:title]
|
||||
xml.description post[:rss_html]
|
||||
xml.description rss_html(post)
|
||||
xml.pubDate post[:rfc822]
|
||||
xml.author post[:author]
|
||||
xml.link post[:link] || post[:url]
|
||||
|
|
|
|||
|
|
@ -5,6 +5,11 @@
|
|||
<title>sjs' blog</title>
|
||||
<link rel="icon" type="image/gif" href="../images/s.gif">
|
||||
<link rel="stylesheet" href="../css/blog-all.min.css">
|
||||
{{#post}}
|
||||
{{#styles}}
|
||||
<link rel="stylesheet" href="../css/{{.}}.min.css">
|
||||
{{/styles}}
|
||||
{{/post}}
|
||||
<link rel="stylesheet" media="screen" href="../css/mobile.min.css">
|
||||
<link rel="alternate" type="application/rss+xml" href="http://samhuri.net/blog/sjs.rss" title="sjs' blog">
|
||||
<body id="blog">
|
||||
|
|
|
|||
|
|
@ -7,6 +7,11 @@
|
|||
<link rel="icon" type="image/gif" href="../images/s.gif">
|
||||
<link rel="stylesheet" href="../css/blog-all.min.css">
|
||||
<link rel="stylesheet" media="screen" href="../css/mobile.min.css">
|
||||
{{#post}}
|
||||
{{#styles}}
|
||||
<link rel="stylesheet" href="../css/{{.}}.min.css">
|
||||
{{/styles}}
|
||||
{{/post}}
|
||||
<link rel="alternate" type="application/rss+xml" href="http://samhuri.net/blog/sjs.rss" title="sjs' blog">
|
||||
<body id="blog">
|
||||
<nav id="breadcrumbs"><a href="../">samhuri.net</a></nav>
|
||||
|
|
|
|||
Loading…
Reference in a new issue