Repos / hi.imnhan.com / fa36904f55
commit fa36904f5591bff2cc0b84fec8890a7e23d9524f
Author: nhanb <thanhnhan483@gmail.com>
Date:   Sat Sep 7 10:25:34 2013 +0700

    add google webmaster auth and remove date from post urls

diff --git a/content/extra/google3f40dbd543a603fa.html b/content/extra/google3f40dbd543a603fa.html
new file mode 100644
index 0000000..e94bd72
--- /dev/null
+++ b/content/extra/google3f40dbd543a603fa.html
@@ -0,0 +1 @@
+google-site-verification: google3f40dbd543a603fa.html
\ No newline at end of file
diff --git a/content/installing-programs-in-ubuntu.md b/content/installing-programs-in-ubuntu.md
index 1430540..60bb712 100644
--- a/content/installing-programs-in-ubuntu.md
+++ b/content/installing-programs-in-ubuntu.md
@@ -114,7 +114,7 @@ ## Packages
 - `sudo apt-get install package-name` to install package
 - `sudo apt-get remove package-name` - it's obvious isn't it?
 - `sudo apt-get update` - update package list. Note that it only updates the list, not the packages
-- `sudo apt-get upgrade` - update packages
+- `sudo apt-get upgrade` - upgrade packages to their latest versions
 
 There will be programs that are not available on the official repositories, but are provided as
 package files (Dropbox for example). Remember that the right package format for Ubuntu is `.deb`
diff --git a/pelicanconf.py b/pelicanconf.py
index 312a47b..08fd289 100644
--- a/pelicanconf.py
+++ b/pelicanconf.py
@@ -24,13 +24,15 @@
 FILES_TO_COPY = (('extra/CNAME', 'CNAME'),
                  ('extra/README.markdown', 'README.markdown'),
                  ('extra/favicon.ico', 'favicon.ico'),
-                 ('extra/cal.html', 'calendar/index.html')
+                 ('extra/cal.html', 'calendar/index.html'),
+                 ('extra/google3f40dbd543a603fa.html',
+                  'google3f40dbd543a603fa.html'),
                  )
 
-ARTICLE_URL = '{date:%Y}/{date:%m}/{slug}/'
-ARTICLE_SAVE_AS = '{date:%Y}/{date:%m}/{slug}/index.html'
-ARTICLE_LANG_URL = '{date:%Y}/{date:%m}/{slug}-{lang}/'
-ARTICLE_LANG_SAVE_AS = '{date:%Y}/{date:%m}/{slug}-{lang}/index.html'
+ARTICLE_URL = 'posts/{slug}/'
+ARTICLE_SAVE_AS = 'posts/{slug}/index.html'
+ARTICLE_LANG_URL = 'posts/{slug}-{lang}/'
+ARTICLE_LANG_SAVE_AS = 'posts/{slug}-{lang}/index.html'
 
 PAGE_URL = ('pages/{slug}/')
 PAGE_SAVE_AS = ('pages/{slug}/index.html')