Giter Site home page Giter Site logo

dsrkafuu / hugo-theme-fuji Goto Github PK

View Code? Open in Web Editor NEW
367.0 8.0 97.0 5.56 MB

A minimal Hugo theme with nice theme color. | 一个主题色极简 Hugo 主题。

Home Page: https://github.dsrkafuu.net/hugo-theme-fuji/

License: Apache License 2.0

HTML 33.77% JavaScript 5.99% SCSS 60.24%
hugo theme hugo-theme responsive minimal dark-mode i18n

hugo-theme-fuji's Introduction

🍥 Fuji 🍥

Fuji is a minimal Hugo theme with full dark mode support and GitHub Primer markdown style.

GitHub release GitHub build status GitHub license

English | 简体中文

Checkout the brand new VSCode Aofuji Light Theme which has similar color scheme to Aofuji!

Supported languages: cs, de, en, eo, fr, ja, nl, pl, pt-pt, zh-hans, zh-hant. Check the i18n folder to add more languages.

📑 Table of contents

💻 Live demos

Live Demo (GitHub Pages)

Screenshot of Fuji

❗ Notice

Remember to add summary divider <!--more--> to your post .md files to show blockquotes, links and codes with proper style in list pages' summary part.

🐣 Getting started

Inside the folder of your Hugo site run:

git submodule add https://github.com/dsrkafuu/hugo-theme-fuji.git themes/fuji

For more information read the official setup guide of Hugo.

Then copy the config.toml in the exampleSite to the root of your Hugo site, and use it as a reference for your config file. It contains all of the settings for site menus, search pages and other features, you'll need this file to make your site work properly.

🆕 Update the theme

You can watch (release only) this repo to receive update notifications.

Inside the folder of your Hugo site run:

git submodule update --remote --merge

⚙️ Configuration

🎨 Favicon

Create [SITEROOT]/layouts/partials/favicon.html to cover theme's favicon.

You can generate your favicons in realfavicongenerator.net.

❌ License, toc and comments

Globally in config.toml:

showLicense = true # Enable or disable license for all post
showToc = true # Enable or disable ToC for all post

Or in posts' front matter:

showLicense = true # Enable or disable license for this specific post
showToc = true # Enable or disable ToC for this specific post

To disable comment area for specific post, add this in front matter:

showComments = false # Do not show comments in this post

🎵 APlayer

In-post APlayer supported, you use the aplayer shortcode:

{{< aplayer urls="/aplayer/fluid.mp3" names="Fluid" artists="Crowander" covers="/aplayer/crowander.jpg" >}}

Checkout the exampleSite/content/post/aplayer-test.md for more example usage such as using multiple files.

📐 Render LaTeX with KaTex

You can write LaTeX directly in markdown with escape characters:

$$
\begin{matrix}
  a & b \\\\ c & d
\end{matrix}
$$

Or use the short code, display style:

{{< math >}}
\begin{matrix}
  a & b \\
  c & d
\end{matrix}
{{< /math >}}

Inline style:

{{< math "inline" >}}
\begin{matrix}
  a & b \\
  c & d
\end{matrix}
{{< /math >}}

Don't forget to add math = true in your front matter or config.toml.

📷 Image zoom and lazyload settings

Zoomable, not lazyloaded:

![Alt text](test/example.png)

Zoomable, lazyloaded:

{{< img-lazy "16x9" "Alt text here" "test/example.png" >}}

Not zoomable, not lazyloaded, optional ext link:

{{< img-nz "Alt text here" "test/example.png" >}}

Not zoomable, lazyloaded, optional ext link:

{{< img-nz-lazy "16x9" "Alt text here" "test/example.png" >}}

Available image aspect ratios:

  • 40x9
  • 32x9
  • 21x9
  • 18x9
  • 16x9
  • 16x10
  • 3x2
  • 4x3
  • 1x1
  • 3x4
  • 2x3
  • 10x16
  • 9x16
  • 9x18
  • 9x21
  • 9x32

⚓ Markdown render hook

You can create the files below in your site to adjust the markdown render hook, see Hugo's Official Docs.

You can use [SITEROOT]/layouts/_default/_markup/render-link.html to decide whether or not links in the markdown content will open in new tab:

<a href="{{ .Destination | safeURL }}"{{ with .Title }} title="{{ . }}"{{ end }}{{ if strings.HasPrefix .Destination "http" }} target="_blank"{{ end }}>{{ .Text | safeHTML }}</a>

📨 Comments area

Theme supports Disqus, utterances and DisqusJS (for Mainland China user)。

by default, disqus uses {{ .Permalink }} as url, {{ .File.ContentBaseName }} as identifier.

Use the [SITEROOT]/layouts/partials/comment-*.html to cover themes/fuji/layouts/partials/comment-*.html. Then you can customize the url and identifier, or set multiple api key, add more settings for using DisqusJS. If you want to use DisqusJS, please remember to set disqusJSApi to anything in your config.toml to load CSS.

🔧 Custom stylesheet configuration

Hugo extended version needed.

You can override theme's internal SCSS variables with your own. Create [SITEROOT]/assets/scss/_custom_var.scss to cover variables in SCSS.

Variables available:

$body-font: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Helvetica',
  'Arial', 'PingFang SC', 'Hiragino Sans GB', 'Source Han Sans CN', 'Source Han Sans SC',
  'Microsoft YaHei', 'WenQuanYi Micro Hei', sans-serif;
$mono-font: 'Cascadia Code', 'SF Mono', 'Fira Code', 'Consolas', $body-font;
$title-font: 'Product Sans', $body-font;
$body-font-size: 16px;

$light-color-primary: #8aa2d3; // https://irocore.com/aofuji/
$light-color-secondary: #8f82bc; // https://irocore.com/fujimurasaki/
$light-color-focus: #3b469b; // https://irocore.com/aomurasaki/
$light-color-mute: #9ea1a3; // https://irocore.com/suzu-iro/
$light-color-font: #3f4551; // https://irocore.com/konnezu/
$light-color-divider: #e5e2e4; // https://irocore.com/komachinezu/
$light-color-bg: #fffffd; // https://irocore.com/shiro/
$light-color-codebg: #f6f8fa; // GitHub

$dark-color-primary: #8aa2d3; // https://irocore.com/aofuji/
$dark-color-secondary: #bab1df; // https://irocore.com/fujimurasaki/
$dark-color-focus: #e6e6e6; // https://irocore.com/shironezumi/
$dark-color-mute: #9ea1a3; // https://irocore.com/suzu-iro/
$dark-color-font: #c0c0c0; // https://irocore.com/gin-iro/
$dark-color-divider: #4d5158; // Discord
$dark-color-bg: #2f3136; // Discord
$dark-color-codebg: #414449; // GitHub

To override SCSS rules, create [SITEROOT]/assets/scss/_custom_rules.scss. This file will have priority over anything regarding CSS rules, but is useless for changing variables that are used elsewhere in the theme.

✏️ Issue and contributing

Feel free to use the issue tracker. The theme has only been fully tested on Firefox, so if there are some problems when accessing with Chrome or others please also report an issue.

📝 License

The theme is released under the Apache License 2.0, for more information read the License.

Copyright © 2019-present DSRKafuU https://dsrkafuu.net/

🤝 Annotations

Thanks to community contributors for great help.

Learned a lot in Sukka's Blog.

hugo-theme-fuji's People

Contributors

akgnah avatar alexmitelman avatar bayuangora avatar c1c1 avatar danielhollas avatar devercises avatar dlccyes avatar dsrkafuu avatar emilburzo avatar emmaguy avatar felixbenning avatar fmaida avatar hjiawei avatar hyask avatar ormanli avatar qraffa avatar rdimaio avatar rexarski avatar vincenttam avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

hugo-theme-fuji's Issues

[Feature request] Mini search bar

At the moment, search is a text link in the pages list. It would be very nice, if it would be a small textbox in the side bar - if you would type in it and hit enter, you would automatically be taken to the search view with your search already put in.

(@amzrk2 please don't feel pressured by all the issues I create/will create - if I want them badly enough I will have to do that stuff myself and make merge requests, I am just creating these issues for idea collection, feedback, discussion, labelling and prioritization - prioritize as you want. Providing this theme for free at all is already more than anyone could ask from you)

cover image

Hi, how do I add cover image to article in list?

made a translation Dutch/nl

Hi,

I've made a translation for you. Wanted to create a pull but it was not possbile.
So i'll just paste it here.

[sidebarToc]
    other = "Inhoud"

[sidebarPages]
    other = "Pagina's"

[sidebarTags]
    other = "Tags"

[sidebarLinks]
    other = "Links"

[sidebarBangumiChart]
    other = "Bangumi"

[footerPoweredFront]
    other = "Powered by "

[footerPoweredEnd]
    other = " "

[postMetaNoTag]
    other = "Geen Tags"

[postMetaWordCount]
    other = " woorden"

[postCopyrightFront]
    other = "Tenzij anders vermeld is de inhoud van deze site eigendom van "

[postCopyrightEnd]
    other = "."

[postCommentLoading]
    other = "Commentaren worden geladen..."

[postCommentLoadingFailed]
    other = "Commentaren konden niet geladen worden."

[archivesTotalPages]
    other = "Totaal aantal posts: "

[tagsCurrentTag]
    other = "Alle posts met de tag {{ .Title }}: "

[webpCheckerFront]
    other = "Uw huidige browser ondersteund deze pagina niet "

[webpCheckerEnd]
    other = " afbeeldingen"

og image cannot be replaced.

I followed the instruction in README to replace the open graph variable with my own og.png. Now the image be accessed through https://qrui.xyz/img/og.png, but whenever I share my link within Telegram, it still appear to be the one from the theme.

iShot2020-12-27 15 34 40

About RSS-based search

After considering some details, the RSS-based search feature from @akgnah will not be merged into master branch. The dev-search branch will be retained.

Sources

Details

  • As the theme is for pure blog content which has its taxonomy system, to keep it simple the search function is not a necessary feature.
  • When it comes to over 200 posts or more (if), the pagination will become essential for a minimal theme. Without Hugo's built-in pagination template, the vanilla JS works and CSS styling about searching gets more complicated.
  • Some more problem with multilingual features under development.

Recommendation

If you want to add search feature to your blog, you can:

  • Create a layouts folder in your site's root folder and add templates like #18, to cover the theme's template in themes/fuji/layouts.
  • Check Hugo's doc about search for more solutions.

Annotations

Thanks @akgnah for advisement.

[bug] TOC not shown

侧面未显示目录,不知道原因是什么。

即使配置文件或者页面本身设定了 showToc = true 也不显示

Adding author tag on the Fuji theme

Hi @dsrkafuu , I have been learning Hugo and fell in love with the Fuji theme :)

I just made the changes for the Author info on the blog posts. can I add this into the theme repository via a PR ? Kindly advise.

No TOC with asciidoctor content

I have set markup.tableOdContents startLevel to 1 and endLevel to 4 but there is no table of content in the posts when using adoc. Any solution for that?

Search using baseURL with subpage results into index.json not found

Hello,

I just want to ask if there's a workaround for the search function given that my base URL has a subpage?

With a base URL of http://localhost:1313/brain-dump/ for example, index.json is being searched on the root level (http://localhost:1313/).

image

It exists however when accessed using the complete base URL.

image

Is there a way where I can override the index.json file path?

https://github.com/amzrk2/hugo-theme-fuji/blob/007f3ba1c9a9a80a13156bd148cc4ad87af8c5a9/assets/js/fuji.js#L133

I'm not really sure if this is purely a config issue on my part. Your insight would be very helpful. Thanks!

Can noLicense be true by default?

Hi @amzrk2,

Thanks for making this theme.

Can noLicense be true by default? Personally, I think having a copyright notice in the footer should suffice. Having to put noLicense = true on all my posts (over 40) is unnecessary and a lot of work.

Cheers!

Default to dark mode

I would love a way to default to dark mode. Other than that, thank you this is a nice simple theme.

Customize Code Highlight Colors

Hello again,

Would it be fine to ask if there are options on how we can override the colors for the code syntax highlights? Again thanks for such a great theme!

Emphasis vs Link color

I noticed that you are using the same color for links and emphasis. It is a little confusing to have some things with that color be clickable and other things which are not. Especially since "emphasised and clickable" is probably exactly the same as "only emphasised".

grafik

Not a huge issue of course

How do you get search to work?

Not a bug or an issue really - but how do you get search to work?
I'm using the search page from the 'exampleSite' folder, but it does not seem to render the page.

disqus comments are not getting loaded

Hi @dsrkafuu , I need your help in getting the disqus comments loaded in my blog post. As per the config given in the exampleSite, I have the following in my config.toml file but still I don't get the disqus comments loaded.

FYI, I am an existing user of disqus and I certainly have a good amount of comments available in my account with disqus.

config.toml file
` show_comments = true

disqusShortname = "itsraghz"
\ # If you want to use DisqusJS, please remember to set disqusJSApi to anything in your config.toml to load CSS.
disqusJSApi = "itsraghz"
disqus_identifier = "itsraghz" `

Also I copied the comments-*.html file from theme\layouts\partialstolayouts\partials`.

Any help would be highly appreciated.

Cheers,
RM....

Fuji v2 todo list

  • Base template
  • Base style
  • Dark mode
  • Comment area dark mode
  • SEO
  • Player
  • Syntax highlight with prism.js & autoloader
  • Syntax highlight dark mode
  • Replace "fat" Font Awesome
  • ToC fix
  • exampleSite
  • README.md

Preview: https://blog.amzrk2.cc/ (zh-Hans contents)

utterance repeats comments on each post

I have been trying to tweak your implementation or utterance but so far unsuccessfully. I would appreciate some support.

Your implementation of utterance with the script is wonderful and I very much like it, but it has an issue, if I get a comment for one post page, it repeats the same comment on every single post.

Do you know how could I change this for the normal behaviour of utterance where comments are unique per post? - I've been trying editing comment-utterances.html but my knowledge of JS is not good enough to achieve the desired result.

Alternatively I tried creating a simple comments.html layout adding there the basic utterance.es code and then adding the following code by the end of components.html :

<div class="bg-white dark:bg-warmgray-900 p-5 my-4">
      <div class="post-comment">
        {{ partial "comments.html" . }}
      </div>
    </div>

But also didn't work. Where would you recommend me to ad the above code to ensure that it shows only in the posts sections?

Considering support `$ ... $` as inline math

Hello. I'm really impressed by your awesome theme and I decide use it as my blog theme. But it seems like the theme doesn't support using $ ... $ as inline math. I think this notation is quite popular and it will be awesome to have it supported.

Anyway, thanks you for creating such a beautiful theme.

Changing colors

Hi,

I'm fairly new to Hugo, I've been able to install Hugo, make content, install the theme.

But i'm trying to change the color scheme.

I found out that the base color is defined in;

themes\fuji\assets\sass\_var.scss

But changing it there does not work.

I also found this; but that is a generated file, I don't want to change it there.

grep -rl "#8AA2D3" * .* resources/_gen/assets/scss/sass/main.scss_c266f84bc22ee05ee0ecdfd29660f0aa.content

What is the correct way to change the color scheme?
My goal is to re-use my website theme (bootstrap). But knowing where the add CSS is a crucial step for that : ))

Error: add site dependencies: load resources: loading translations:

Hello!

I've just downloaded Congo Hugo theme and, as I'm a Windows user, followed the manual installation steps to use it.

The problem is whenever I type hugo server to see my site running, I receive the following error message:

Error: add site dependencies: load resources: loading translations: "C:\Users\Daniel\Hugo\sites\mywebsite\themes\congo\i18n\bn.yaml:1:1": failed to load translations: unable to parse translation #0 because invalid plural category input_placeholder map[id:search translation:map[close_button_title:বন্ধ করুন (Esc) input_placeholder:খুঁজুন open_button_title:খুঁজুন (/)]]

Important: I have created a blank site to try Congo, by entering hugo new site mywebsite, so no other files or folders resided at that location beforehand. It is, therefore, quite odd to have this message shown.

Can someone please advise me?
Thanks in advance.

Must build with minimum hugo v0.74.0

Thanks for the wonderful theme.

However, I cannot render it on my computer. For example, the message for page "home" is:

ERROR 2021/01/03 20:44:00 render of "home" failed: execute of template failed: template: _default/list.html:24:7: executing "_default/list.html" at <partial "scripts-end.html" .>: error calling partial: "/Users/edxu96/GitHub/edxu96.github.io/themes/fuji-modified/layouts/partials/scripts-end.html:10:42": execute of template failed: template: partials/scripts-end.html:10:42: executing "partials/scripts-end.html" at <js>: can't evaluate field Build in type string

I delete line 10 and 11, which seem to call fuji.js, then the two buttons in the corner don't work. Also, the function for tags doesn't work.

My implementation is hosted in https://github.com/edxu96/edxu96.github.io . The version of hugo on my mac is:

Hugo Static Site Generator v0.69.2-EC9DCF30/extended darwin/amd64 BuildDate: 2020-04-24T07:55:42Z

Could you please share some hints?

主页不显示帖子

作者您好,我想问一下为什么我用了examplesite里面的配置文件以后主页上不显示post了而是一片空白了,谢谢

Inline math rendered as block

Hello again. Hope this is not a trivial question.

I found inline math with $$ is rendered as block math. For example, in a post in your exampleSite, inline math is actually a block.

By the way, a block math with line breaks \\ does not, probably because of the markdown rendering. I find some advice online, to use <div> </div>, and it works. For example:

<div> $$ \begin{aligned}
  \overline{\mathbf{V}}
  &= \overline{\mathbf{Y}}^{-1} \overline{\mathbf{I}}
  - \overline{\mathbf{Y}}^{-1} \overline{\mathbf{Y}}_\text{NR}
  \overline{\mathbf{V}}_\text{rate} \\
  &= \overline{\mathbf{Z}} \overline{\mathbf{I}}
  + \overline{\mathbf{V}}_\text{zero}
\end{aligned} $$ </div>

i18n toggle?

My site works with theme ananke with multiple languages, by configuring config.toml appropriately.

With fuji, i can access different languages using http://mysite.com/<landcode> but i see no language toggle on the first page -- i.e. links to other languages. Do i need to configure something else?

index page misses formatting when you don't use `<!--more-->`

Hi,

First off, amazing theme, I especially love the built-in dark mode ❤️

I'm new to hugo, so I'm not sure if the bug is in this theme or in hugo itself, but:

If I don't use <!--more--> in my posts, the index page is missing all the formatting, it's just raw text, e.g.:

Without <!--more-->

image

With <!--more-->

image

This only happens for the index page, the actual post page itself is fine in both cases.

Thanks!

[Feature Request] Tag Cloud

The minimo theme had this nice idea of resizing the tags in the taglist by the relative number of occurances.

I am not sure how copyable this is:

taxonomy_cloud.html from minimo (MIT Licence so that should be fine)

{{- $Scope := .Scope -}}
{{- $Site := $Scope.Site -}}
{{- $Scratch := $Scope.Scratch -}}
{{- $Shuffle := ( .Shuffle | default true ) -}}
{{- $TaxonomyPage := ( $Site.GetPage ( print "/" .Taxonomy ) ) -}}
{{- $Data := $TaxonomyPage.Data -}}

<div class='container list-container'>
  <ul class='list taxonomy-cloud {{- if not $Shuffle }} no-shuffle {{- end -}}'>
  {{- if gt ( len $Data.Terms ) 0 -}}
    {{- $maxSize := 2.0 -}}
    {{- $minSize := 1.0 -}}
    {{- $sizeSpread := ( sub $maxSize $minSize ) -}}

    {{- $maxCount := ( index $Data.Terms.ByCount 0 ).Count -}}
    {{- $minCount := ( index $Data.Terms.ByCount.Reverse 0 ).Count -}}
    {{- $countSpread := ( sub $maxCount $minCount ) -}}

    {{- $Scratch.Set "sizeStep" 0 -}}
    {{- if gt $countSpread 0 -}}
      {{- $Scratch.Set "sizeStep" ( div $sizeSpread $countSpread ) -}}
    {{- end -}}

    {{- range $Data.Terms.Alphabetical -}}
      {{- $count := .Count -}}
      {{- $sizeStep := ( $Scratch.Get "sizeStep" ) -}}
      {{- $size := ( add $minSize ( mul $sizeStep ( sub $count $minCount ) ) ) -}}

      <li>
        <a href='{{ .Page.RelPermalink }}' style='font-size:{{ $size }}em'>
          {{- .Page.Title -}}
        </a>
      </li>
    {{- end -}}
  {{- else -}}
    <span>
      {{- $term := ( ( ( i18n $Data.Singular 1 ) | default $Data.Singular ) ) -}}
      {{- i18n "noTerm" ( dict "Term" $term ) -}}
    </span>
  {{- end -}}
  </ul>
</div>

the end result looks like this:

grafik

[Documentation] disableKinds taxonomy

disableKinds = ["taxonomy"]
ignoreErrors = ["error-disable-taxonomy"]

this does not seem to do anything (I tried commenting it out and the tags still seem to work). What is the purpose of this?

Sidebar in mobile version

grafik

I played with the size in F12 a little and the sidebar does something weird when it drops below the content

image shortcodes missing

../Fuji/layouts/shortcodes only contains img-lazy.html ... docs indicate there should be img-nz and img-nz-lazy as well. Using these shortcodes causes a build error:

/blah/blah/01/triffids.md:27:1": failed to extract shortcode: template for shortcode "img-nz-lazy" not found

25 26 27 28 | {{< img-nz-lazy "Alt text" "/Screenshot-2019-01-12-17.11.54.png" >}}

Hugo Static Site Generator v0.73.0/extended darwin/amd64 BuildDate: unknown

This may be my inexperience with Hugo and shortcodes ...

Enable TOC in a single post, with TOC disabled by default

Hello,

Thank you for maintaining this theme, I've been using it for several months now and it's been amazing!

Previously I have had showToc disabled by default, and enabled it on certain posts. It looks like the new TOC logic stops posts with showToc = true in the front matter from generating a TOC if they're disabled in the global config. Enabling TOC by default and disabling it in the front matter of all other posts currently works, but seems like a messy solution.

Is it possible to enable TOC per-post again?

Thanks again! 😄

Per-post TOC control?

Is it possible to add a per-post TOC front matter variable? I think it would be useful to be able to disable TOC site wide, but enable it if one post is particularly long and has several sub-sections.

Is the master branch building?

I got the following errors when building the latest master. No gulp scripts to build source after recent changes?

$ cross-env NODE_ENV=production npm run compile
npm ERR! missing script: compile

More about ways to render icons in the theme

The theme is now using ionicons with it's auto loader. SVG icons will be lazily loaded dynamically, which causes some flicker of the elements.

Since the theme is very simple and only has a few icons, whether to switch to fonticon or inline svg is under consideration.

Gist style issue

When I add a gist with shortcode (or with <script> tag) in a blog post, the displayed gist will be like this:

gist-css-issue

See the problem in action.

I found that the white stripe on the right hand side is caused by width: max-content in assets/scss/_primer/markdown/tables.scss. And the when the dark mode is enabled, the background of the gist (it's a de facto table) is altered to two grey colors which is control by assets/scss/_fuji-theme/_dark-diff.scss . I tried to made my own modifications but then I suddenly realized my modifications are subtle for those normal tables implemented with markdown.

Maybe a standalone css for gist?

no permissions to add language file

Trying to add esperanto translation to i18n/eo.toml, no permissions.
Can't add via web interface either.
Attached eo.toml renamed to txt 'cos .toml isn't accepted.
eo.txt

How Can I Remove the Tag Icon if There are No Tags

By default, this theme always shows the tag icon and it shows "No tag" if there aren't any. I want it to show nothing if there are no tags. I removed the "No tag" text by removing these lines from i18n/en.toml:

[postMetaNoTag]
    other = "No tag"

But it still shows the tag icon. How can I get rid of it?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.