#!/bin/bash source templates/head.sh source ${cfg[namespace]}/templates/header.shs declare -A strings if [[ -s storage/faves ]]; then strings[favourites]="" else strings[favourites]="No favorite videos found,
you can do it first! ^w^" fi IFS=$'\n' for i in $(tac storage/faves); do IFS=':' array=($i) if [[ ${array[1]} == '' ]]; then break fi strings[favourites]+="

${array[@]:2:999}

Favourited by ${array[0]}
"; done render_unsafe strings "${cfg[namespace]}/templates/themes/${cfg[template]}/index.t"