I am seemingly having an issue with my custom block's icon.
using Piranha.Extend;
using Piranha.Extend.Fields;
namespace NorthwindCms.Models.Blocks
{
[BlockType(Name = "YouTube Video", Category = "Media", Icon = "fa fa-video-camera")]
public class YoutubeBlock : Block
{
[Field(Title="YouTube video link URL: ")]
public StringField YouTubeVideoUrl { get; set; }
}
}
The custom block shows up, but without an icon: screenshot of custom block without icon appearing.
Does anyone have a tip?