加上阅读更多的链接
1 2
| # 针对phase主题 vim layout/_partial/article.ejs
|
找到对应的地方,加上相应的代码,如下:
1 2 3 4 5 6
| <% if (item.excerpt && index){ %> <%- item.excerpt %> <a href="<%- item.permalink %>" target="_blank" class="post-read-more">READ MORE</a> <% } else { %> <%- item.content %> <% } %>
|
其中的超链接部分就是新增的。然后就是修改样式。。。
f.browser.msie没有定义
1 2 3 4 5 6 7 8 9
| # @see: http://stackoverflow.com/questions/14344289/fancybox-doesnt-work-with-jquery-v1-9-0-f-browser-is-undefined-cannot-read/14344290 # vim themes/phase/layout/_partial/head.ejs <script src="http://code.jquery.com/jquery-latest.js"></script> # replace by: <script src="http://code.jquery.com/jquery-latest.js"></script> <script src="http://code.jquery.com/jquery-migrate-1.0.0.js"></script>
|
文章摘要
在需要的地方加上:
插入数学公式
Mathjax的语法和LaTeX一致,在markdown中直接插入即可(注意上面我们修改了mathjax默认的inlineMath选项),下面举些例子,更多语法请参考 LaTeX Higher Mathematics:
LaTeX入门
插入方程组:
\begin{aligned}
\dot{x} & = \sigma(y-x) \\
\dot{y} & = \rho x - y - xz \\
\dot{z} & = -\beta z + xy
\end{aligned}
插入矩阵:
\begin{bmatrix}
1 & 2\\
3 & 4
\end{bmatrix}
薛定谔方程:
$$ \hbar\frac{\partial \psi}{\partial t}
= \frac{-\hbar^2}{2m} \left(
\frac{\partial^2}{\partial x^2}
- \frac{\partial^2}{\partial y^2}
- \frac{\partial^2}{\partial z^2}
\right
) \psi + V \psi. $$
see: http://www.winterland.me/2013/12/hexo-mathjax/
vim themesfolder/layout/_partial/mathjax.ejs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| <script type="text/x-mathjax-config"> MathJax.Hub.Config({ tex2jax: { inlineMath: [ ['$','$'], ["\\(","\\)"] ], processEscapes: true } }); </script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ tex2jax: { skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code'] } }); </script> <script type="text/x-mathjax-config"> MathJax.Hub.Queue(function() { var all = MathJax.Hub.getAllJax(), i; for(i=0; i < all.length; i += 1) { all[i].SourceElement().parentNode.className += ' has-jax'; } }); </script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"> </script>
|
自定义页面
加载慢的问题
通常是因为加载外部资源超时,例如google开放的jquery库等。修改即可。
常用命令
1 2 3 4 5
| hexo clean hexo g hexo d hexo s hexo n "title"
|