Changeset a1bb8c2 in dotfiles for emacs/.emacs
- Timestamp:
- Jan 11, 2020, 10:35:23 AM (5 years ago)
- Branches:
- master
- Children:
- 2b2c1ba
- Parents:
- 68506e0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
emacs/.emacs
r68506e0 ra1bb8c2 77 77 :config 78 78 (mood-line-mode)) 79 80 ;;; Org-mode81 (use-package org82 :config83 (setq org-publish-project-alist84 `(("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 t90 :publishing-function org-publish-attachment91 )92 ("blog-content"93 :base-directory "~/github/blog/content"94 :publishing-directory "~/github/blog/dist"95 :recursive t96 :publishing-function org-html-publish-to-html97 98 :html-doctype "xhtml5"99 100 :with-title nil101 :with-author t102 :with-creator nil103 :with-date t104 :with-email t105 :with-footnotes t106 :html-html5-fancy t107 :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 nil160 :with-sub-superscript nil161 162 ;; sitemap - list of blog articles163 :auto-sitemap t164 :sitemap-filename "sitemap.org"165 :sitemap-title "@w96k"166 :sitemap-sort-files anti-chronologically))))167 79 168 80 (use-package simple-httpd) … … 441 353 ;;;; MISC 442 354 355 ;;; Djvu 356 (use-package djvu) 357 443 358 ;;; Show last key and command in modeline 444 359 (use-package keycast … … 671 586 ;;; Disable mouse 672 587 (use-package disable-mouse 673 :diminish 588 :diminish "NoMouse!" 674 589 :defer 5 675 590 :config (global-disable-mouse-mode)) … … 695 610 ;;; Pomodoro technique tracking for org-mode 696 611 (use-package org-pomodoro) 697 698 ;;; Hugo org exporter699 (use-package ox-hugo700 :after oxxb701 :config702 (setq org-hugo-default-section-directory "posts")703 (setq HUGO_BASE_DIR "~/github/w96k.gitlab.io/content/"))704 612 705 613 ;;; Accounting
Note:
See TracChangeset
for help on using the changeset viewer.