I have seen many website that uses skeleton loading to load data into frame and know that this can achieve using CSS and API ? If that is the case I copied this API sample from Octobercms ‘Building API Endpoints’ into project/post.htm and preview the project post sample which display the data in text
{% if post %}
{% do response({
data: post
}) %}
{% else %}
{% do abort(404) %}
{% endif %}
Can anyone point me the direction to how I can structure that plain text into pretty html + css card? Do I need to have REACT or VUE as frontend to pull data from Octobercms to achieve Skeleton loading that I am looking for?