This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import $ from 'jquery' | |
window.jQuery = window.$ = $ | |
import JSZip from 'jszip' | |
window.JSZip = JSZip | |
import 'pdfmake' | |
import dataTable from 'datatables.net-bs4' | |
dataTable(window, $) | |
import buttons from 'datatables.net-buttons-bs4' | |
buttons(window, $) | |
import columnVisibility from 'datatables.net-buttons/js/buttons.colVis.js' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% assign work_items = site.work_items | sort: 'date' | reverse %} | |
{% for work_item in work_items limit:4 %} | |
<div> | |
<a href="{{ work_item.url | prepend: site.baseurl }}">{{ work_item.title }}</a> | |
</div> | |
{% endfor %} |