ink-zone / fexo

A minimalist design theme for hexo.
https://forsigner.github.io
MIT License
1.09k stars 208 forks source link

Now the Project page can contain images / videos #107

Closed yodahuang closed 6 years ago

yodahuang commented 6 years ago

With backward capacity, I added support for images/videos in Project page.

To use this new functionality, the users can add one of the youtube, youku or image (with image_alt for text alternative) field in _config.yaml, and then add detail for a text description.

Part of an example _config.yaml would look like this:

project:
  - type: personal
    name: Automous Navigation in Dynamic Environment
    intro: A Robot that do SLAM and dynamic obstacle avoidence
    youtube: p-G10atUjjI
    detail: The robot implements the algorithm described in the paper <a href="https://web.eecs.umich.edu/~kuipers/papers/Park-iros-12.pdf">Robot Navigation with Model Predictive Equilibrium Point Control</a>
  - type: personal
    name: Pebble GRE Reminder
    url: https://yodahuang.github.io/Pebble-GRE-Word-Reminder/
    intro: A GRE reminder helper for Pebble
    image: /images/pebble-gre-reminder.gif
    detail: This is a appplication for helping reciting GRE words on Pebble smartwatches. The app is published in <a href="https://apps.getpebble.com/en_US/application/577b62526c21040179000074">Pebble App Store</a>. A detailed desciption can be found <a href="https://yodahuang.github.io/Pebble-GRE-Word-Reminder/">here</a>.
    image_alt: the app in action
leenxyz commented 6 years ago

🐂nice work