Hi, I am trying to create a condition with variable using the text plugin. I would like that before my title to have a small logo from an URL to appear. So i m doing the following:
div style=“display: flex; align-items: center; justify-content: center;”
img src=“${terminal === ‘London’ ? ‘https://cdn-icons-png.flaticon.com/512/6862/6862322.png’ : ‘Imgur: The magic of the Internet’}” alt=“Terminal Icon” style=“width: 32px; height: 32px; margin-right: 10px;”
h1 style=“margin: 0;”>${terminal}</h1
/div
However, I have the Title displaying London but not my URL before I just have
I have this small logo instead. Any help would be very appreciated.