<feed xmlns='http://www.w3.org/2005/Atom'>
<title>website/my_new_personal_website/templates/template.html, branch split_code_more</title>
<subtitle>This is my current personnal website (frontend and backend)
</subtitle>
<link rel='alternate' type='text/html' href='http://git.neodarz.net/website/my_new_personal_website/'/>
<entry>
<title>Add stuff to source/ and exclude them</title>
<updated>2016-01-09T05:18:39+00:00</updated>
<author>
<name>Zhiming Wang</name>
<email>zmwangx@gmail.com</email>
</author>
<published>2016-01-09T05:16:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.neodarz.net/website/my_new_personal_website/commit/?id=f818d439160c8f06add42dd10cfcdbddc71b04d7'/>
<id>f818d439160c8f06add42dd10cfcdbddc71b04d7</id>
<content type='text'>
The lonely templates/template.html finally finds it home in the cozy
source/, where it rightfully belongs, without the need to worry about
being exposed to the world in build/ ;)

The full fontello distribution I downloaded (and unpacked) from
fontello.com is now in source/fonts/fontello.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The lonely templates/template.html finally finds it home in the cozy
source/, where it rightfully belongs, without the need to worry about
being exposed to the world in build/ ;)

The full fontello distribution I downloaded (and unpacked) from
fontello.com is now in source/fonts/fontello.
</pre>
</div>
</content>
</entry>
<entry>
<title>Site design refresh part II: icon font</title>
<updated>2016-01-09T01:42:32+00:00</updated>
<author>
<name>Zhiming Wang</name>
<email>zmwangx@gmail.com</email>
</author>
<published>2016-01-09T01:42:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.neodarz.net/website/my_new_personal_website/commit/?id=09ba859d9a6f95db49ef923395ea457b64439290'/>
<id>09ba859d9a6f95db49ef923395ea457b64439290</id>
<content type='text'>
Use slimmed icon font packaged by http://fontello.com/. I only need two
glyphs: RSS and CC. I ended up picking the glyphs from the Entypo v2.0
family (https://github.com/danielbruce/entypo), licensed under SIL. I
actually like the Font Awesome glyphs slightly better, but fontello
currently only supports FA v4.3.0, which doesn't include the circular CC
glyph I need.

Old web fonts are kept for now. They will be removed after a while. See
\#9.

Open Sans is still in place and will be addressed later when the logo is
attacked.

The entire fontello package I downloaded, including the license,  will
be added to this repo as source/fonts/fontello/ later when I have
implemented an exclude list in pyblog to prevent the directory from
being copied to the deployment tree.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use slimmed icon font packaged by http://fontello.com/. I only need two
glyphs: RSS and CC. I ended up picking the glyphs from the Entypo v2.0
family (https://github.com/danielbruce/entypo), licensed under SIL. I
actually like the Font Awesome glyphs slightly better, but fontello
currently only supports FA v4.3.0, which doesn't include the circular CC
glyph I need.

Old web fonts are kept for now. They will be removed after a while. See
\#9.

Open Sans is still in place and will be addressed later when the logo is
attacked.

The entire fontello package I downloaded, including the license,  will
be added to this repo as source/fonts/fontello/ later when I have
implemented an exclude list in pyblog to prevent the directory from
being copied to the deployment tree.
</pre>
</div>
</content>
</entry>
<entry>
<title>Site design refresh part I</title>
<updated>2016-01-09T00:34:54+00:00</updated>
<author>
<name>Zhiming Wang</name>
<email>zmwangx@gmail.com</email>
</author>
<published>2016-01-09T00:34:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.neodarz.net/website/my_new_personal_website/commit/?id=9ba9fd365cbed597388e33829d3b19c29cc8b6f0'/>
<id>9ba9fd365cbed597388e33829d3b19c29cc8b6f0</id>
<content type='text'>
Highlights:

* Change font to Times/Times New Roman + Courier;
* Text slightly darkened across the board to account for the thinner
  Times;
* Eliminate line numbers;
* Use custom highlight.css (based on highlight-css supplied by Pandoc,
  but hightlight more classes when Pandoc falls short, e.g., span.im for
  Python from and import).

Closes #5 because we don't have line numbers anymore.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Highlights:

* Change font to Times/Times New Roman + Courier;
* Text slightly darkened across the board to account for the thinner
  Times;
* Eliminate line numbers;
* Use custom highlight.css (based on highlight-css supplied by Pandoc,
  but hightlight more classes when Pandoc falls short, e.g., span.im for
  Python from and import).

Closes #5 because we don't have line numbers anymore.
</pre>
</div>
</content>
</entry>
<entry>
<title>theme.css and template.html: Solve overflow problem in code and a tags</title>
<updated>2015-12-26T10:33:36+00:00</updated>
<author>
<name>Zhiming Wang</name>
<email>zmwangx@gmail.com</email>
</author>
<published>2015-12-26T10:33:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.neodarz.net/website/my_new_personal_website/commit/?id=3890e82f339dbf5dc29d9cffc8d7c26b99293fc1'/>
<id>3890e82f339dbf5dc29d9cffc8d7c26b99293fc1</id>
<content type='text'>
Over-long inline &lt;code&gt; tag or long literal link in &lt;a&gt; tag used to
overflow the container. This is especially bad on phones where width is
very limited. This commit hopefully solves the overflow problem. Still
no smarter word breaking, but it's probably just an unfortunate
limitation of HTML.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Over-long inline &lt;code&gt; tag or long literal link in &lt;a&gt; tag used to
overflow the container. This is especially bad on phones where width is
very limited. This commit hopefully solves the overflow problem. Still
no smarter word breaking, but it's probably just an unfortunate
limitation of HTML.
</pre>
</div>
</content>
</entry>
<entry>
<title>template: put article-metadata in div tag instead of h2</title>
<updated>2015-09-26T04:10:51+00:00</updated>
<author>
<name>Zhiming Wang</name>
<email>zmwangx@gmail.com</email>
</author>
<published>2015-09-26T04:10:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.neodarz.net/website/my_new_personal_website/commit/?id=94a9ef9972f06f1cd0f30921012f3dc93571eb7a'/>
<id>94a9ef9972f06f1cd0f30921012f3dc93571eb7a</id>
<content type='text'>
Date and author shouldn't be in the document outline.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Date and author shouldn't be in the document outline.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove Google Analytics</title>
<updated>2015-09-25T19:03:56+00:00</updated>
<author>
<name>Zhiming Wang</name>
<email>zmwangx@gmail.com</email>
</author>
<published>2015-09-25T19:03:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.neodarz.net/website/my_new_personal_website/commit/?id=01b3805fbfc6a274c662ec5bb796a169ea7bf56e'/>
<id>01b3805fbfc6a274c662ec5bb796a169ea7bf56e</id>
<content type='text'>
Will write a short blog post about this decision soon.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Will write a short blog post about this decision soon.
</pre>
</div>
</content>
</entry>
<entry>
<title>pyblog: date-display =&gt; date_display, and update posts</title>
<updated>2015-09-21T21:44:38+00:00</updated>
<author>
<name>Zhiming Wang</name>
<email>zmwangx@gmail.com</email>
</author>
<published>2015-09-21T21:44:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.neodarz.net/website/my_new_personal_website/commit/?id=6458fe2de26e181178cf47c026ce989eed815dd1'/>
<id>6458fe2de26e181178cf47c026ce989eed815dd1</id>
<content type='text'>
Looks slightly more professional.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Looks slightly more professional.
</pre>
</div>
</content>
</entry>
<entry>
<title>Self host webfonts</title>
<updated>2015-09-05T06:02:33+00:00</updated>
<author>
<name>Zhiming Wang</name>
<email>zmwangx@gmail.com</email>
</author>
<published>2015-09-05T06:02:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.neodarz.net/website/my_new_personal_website/commit/?id=9b7e2e49ce2bb0812c3134defe9279e924f11e51'/>
<id>9b7e2e49ce2bb0812c3134defe9279e924f11e51</id>
<content type='text'>
Sometimes (e.g., occasionally in China) Google/FontAwesome webfonts
might not be available, rendering the whole site unusable.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Sometimes (e.g., occasionally in China) Google/FontAwesome webfonts
might not be available, rendering the whole site unusable.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add ultranarrow theme for screens narrower than 500px</title>
<updated>2015-08-22T19:46:16+00:00</updated>
<author>
<name>Zhiming Wang</name>
<email>zmwangx@gmail.com</email>
</author>
<published>2015-08-22T19:46:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.neodarz.net/website/my_new_personal_website/commit/?id=357e0e45ffdeaec8bd86c9c9b345528186f46754'/>
<id>357e0e45ffdeaec8bd86c9c9b345528186f46754</id>
<content type='text'>
Just set content width to 90% instead of 80% for narrow.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Just set content width to 90% instead of 80% for narrow.
</pre>
</div>
</content>
</entry>
<entry>
<title>template.html: restore highlighting-css</title>
<updated>2015-08-09T15:10:30+00:00</updated>
<author>
<name>Zhiming Wang</name>
<email>zmwangx@gmail.com</email>
</author>
<published>2015-08-09T15:10:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.neodarz.net/website/my_new_personal_website/commit/?id=f81b02836503d0c105d29a9786c01438e0078990'/>
<id>f81b02836503d0c105d29a9786c01438e0078990</id>
<content type='text'>
I accidentally removed syntax highlighting in 94f82685672bcd4e5731de3c1c61e79f7edc07b2.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I accidentally removed syntax highlighting in 94f82685672bcd4e5731de3c1c61e79f7edc07b2.
</pre>
</div>
</content>
</entry>
</feed>
