Changeset a1bb8c2 in dotfiles for emacs/.emacs


Ignore:
Timestamp:
Jan 11, 2020, 10:35:23 AM (5 years ago)
Author:
Mikhail Kirillov <w96k@…>
Branches:
master
Children:
2b2c1ba
Parents:
68506e0
Message:

Delete org-mode blog config. Add djvu;

File:
1 edited

Legend:

Unmodified
Added
Removed
  • emacs/.emacs

    r68506e0 ra1bb8c2  
    7777  :config
    7878  (mood-line-mode))
    79 
    80 ;;; Org-mode
    81 (use-package org
    82   :config
    83   (setq org-publish-project-alist
    84         `(("blog" :components ("blog-content" "blog-styles"))
    85           ("blog-styles"
    86            :base-directory "~/github/blog/public"
    87            :base-extension "jpg\\|gif\\|png\\|ico\\|css"
    88            :publishing-directory "~/github/blog/dist/public/"
    89            :recursive t
    90            :publishing-function org-publish-attachment
    91            )
    92           ("blog-content"
    93            :base-directory "~/github/blog/content"
    94            :publishing-directory "~/github/blog/dist"
    95            :recursive t
    96            :publishing-function org-html-publish-to-html
    97 
    98            :html-doctype "xhtml5"
    99 
    100            :with-title nil
    101            :with-author t
    102            :with-creator nil
    103            :with-date t
    104            :with-email t
    105            :with-footnotes t
    106            :html-html5-fancy t
    107            :html-preamble "
    108 <header class=\"navbar\">
    109 <a href=\"/\" class=\"logo\">@w96k</a>
    110 <a class=\"button\" href=\"/about.html\">Обо мне</a>
    111 <a class=\"button\" href=\"/cv.html\">CV</a>
    112 </header>"
    113 
    114            :html-head "
    115 <link rel=\"shortcut icon\" href=\"/public/favicon.ico\">
    116 <link rel=\"stylesheet\" href=\"/public/css/mini.css\" type=\"text/css\"/>
    117 <link rel=\"stylesheet\" href=\"/public/css/custom.css\" type=\"text/css\"/>
    118 "
    119 
    120            :html-container "article"
    121            :html-postamble "
    122   <div class=\"row\">
    123     <div class=\"col-sm-12 col-md-4\">
    124       <p class=\"licenses\">
    125         <a href=\"https://creativecommons.org/licenses/by/4.0/\">
    126           <img alt=\"Лицензия Creative Commons\" src=\"/public/images/cc.png\" />
    127 </a>
    128         <a href=\"https://www.gnu.org/licenses/gpl-3.0.txt\">
    129           <img src=\"/public/images/gpl.png\">
    130         </a>
    131      </p>
    132     </div>
    133 
    134     <div id=\"copyright\" class=\"col-sm-12 col-md-4\">
    135       <p>© 2020 <i>Mikhail Kirillov</i></p>
    136       <p>
    137        Сайт работает в <a href=\"https://anybrowser.org/campaign/\">любом браузере</a>
    138       </p>
    139     </div>
    140 
    141     <div class=\"col-sm-12 col-md-4\" id=\"meta\">
    142       <p><span class=\"icon-settings\"></span> %c</p>
    143       <p><span class=\"icon-calendar\"></span> %C</p>
    144     </div>
    145   </div>
    146 
    147   <br>
    148   <div align=\"center\">
    149     <small>
    150       <p>Содержимое данного сайта доступно по лицензии
    151         <a href=\"https://creativecommons.org/licenses/by/4.0/\">
    152           Creative Commons «Attribution» («Атрибуция») 4.0 Всемирная
    153         </a>
    154       </p>
    155       <p>Исходный код данного сайта доступен по лицензии GNU General Public License Version 3</p>
    156     </small>
    157   </div>"
    158 
    159            :section-numbers nil
    160            :with-sub-superscript nil
    161 
    162            ;; sitemap - list of blog articles
    163            :auto-sitemap t
    164            :sitemap-filename "sitemap.org"
    165            :sitemap-title "@w96k"
    166            :sitemap-sort-files anti-chronologically))))
    16779
    16880(use-package simple-httpd)
     
    441353;;;; MISC
    442354
     355;;; Djvu
     356(use-package djvu)
     357
    443358;;; Show last key and command in modeline
    444359(use-package keycast
     
    671586;;; Disable mouse
    672587(use-package disable-mouse
    673   :diminish
     588  :diminish "NoMouse!"
    674589  :defer 5
    675590  :config (global-disable-mouse-mode))
     
    695610;;; Pomodoro technique tracking for org-mode
    696611(use-package org-pomodoro)
    697 
    698 ;;; Hugo org exporter
    699 (use-package ox-hugo
    700   :after oxxb
    701   :config
    702   (setq org-hugo-default-section-directory "posts")
    703   (setq HUGO_BASE_DIR "~/github/w96k.gitlab.io/content/"))
    704612
    705613;;; Accounting
Note: See TracChangeset for help on using the changeset viewer.