dwhieb / danielhieber.info

The academic website of Daniel W. Hieber, Ph.D., diversity linguist
https://danielhieber.info
MIT License
0 stars 0 forks source link
language linguist linguistics

danielhieber.info

The academic website of Daniel W. Hieber, Ph.D., diversity linguist.

License

The code in this repository is subject to an ISC license. The content of the danielhieber.info website is copyright to Daniel W. Hieber.

Developer Notes

Deployment

Merge a commit into main.

LESS

Include LESS files as follows:

Liquid

{% capture css %}
  {% include './Home.less' %}
{% endcapture %}

<style>
  {{ css | less | safe }}
</style>

Nunjucks

{% set css %}
  {% include './Home.less' %}
{% endset %}

<style>
  {{ css | less }}
</style>