public
Description: my own written blog software
Homepage: http://blog.digitalcodes.org
Clone URL: git://github.com/anildigital/anil-blog.git
Added margin-top for post class
anildigital (author)
Sat May 24 11:35:13 -0700 2008
commit  46fe6a4c0887954d8bab499245f9c52ec151d0a2
tree    bda5947fd59108cca4e06f2c4be09b156e8ce06a
parent  8e9a6ce47d539c9f76951c5ba6b63592749cbc34
...
24
25
26
27
28
29
 
30
31
32
...
44
45
46
 
47
48
49
...
24
25
26
 
27
 
28
29
30
31
...
43
44
45
46
47
48
49
0
@@ -24,9 +24,8 @@ module Rails
0
       File.exist?("#{RAILS_ROOT}/vendor/rails")
0
     end
0
 
0
- # FIXME : Ruby 1.9
0
     def preinitialize
0
- load(preinitializer_path) if File.exists?(preinitializer_path)
0
+ load(preinitializer_path) if File.exist?(preinitializer_path)
0
     end
0
 
0
     def preinitializer_path
0
@@ -44,6 +43,7 @@ module Rails
0
   class VendorBoot < Boot
0
     def load_initializer
0
       require "#{RAILS_ROOT}/vendor/rails/railties/lib/initializer"
0
+ Rails::Initializer.run(:install_gem_spec_stubs)
0
     end
0
   end
0
 
...
29
30
31
 
 
 
 
32
33
34
...
29
30
31
32
33
34
35
36
37
38
0
@@ -29,6 +29,10 @@ body {
0
   margin-top: 10px;
0
 }
0
 
0
+.post{
0
+ margin-top: 20px;
0
+}
0
+
0
 .post_title{
0
   font-size: 15pt;
0
 }

Comments

    No one has commented yet.