This is an automated email from the ASF dual-hosted git repository. janc pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mynewt-site.git
commit 0f4791020b6a9a65e905cd0f7280f565665b6645 Author: Piotr Narajowski <[email protected]> AuthorDate: Fri Apr 11 16:36:50 2025 +0200 Main Page home icon There were some issues with displaying home icon from font awesome. For now unicode home symbol is used. --- custom-theme/nav.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom-theme/nav.html b/custom-theme/nav.html index 1ee586d255..e53bab015f 100644 --- a/custom-theme/nav.html +++ b/custom-theme/nav.html @@ -28,7 +28,7 @@ <!-- Main navigation --> <ul class="nav navbar-nav navbar-right"> <li {{ active_nav(page, 'Home') }}> - <a href="/"><i class="fa fa-home" style="font-size: larger;"></i></a> + <a href="/" style="font-size: larger;">🏠</a> </li> <li {{ active_nav(page, 'Quick Start', "important") }}> <a href="/quick-start/">Quick Start</a>
