diff --git a/content/illlustrations/117/index.md b/content/illlustrations/117/index.md index 0d55f9e6..c4df719e 100644 --- a/content/illlustrations/117/index.md +++ b/content/illlustrations/117/index.md @@ -1,6 +1,6 @@ --- title: "NEW 117: Ironman" -date: 2020-02-02 +date: 2020-12-02 author: "vijay verma" svg: ./117-ironman.svg png: ./117-ironman.png @@ -9,8 +9,8 @@ category: - iphone tags: - new - - grid - - single + - svg + - sold ---
  • SVG
  • PNG
  • diff --git a/src/components/100-illustrations.js b/src/components/100-illustrations.js index e8a5a281..cf0aad8c 100644 --- a/src/components/100-illustrations.js +++ b/src/components/100-illustrations.js @@ -68,7 +68,7 @@ const Challange = () => {
    {node.frontmatter.title}
    { node.frontmatter.tags.includes('sold')? -

    Sold

    +

    Not available

    :
    SVG PNG diff --git a/src/components/featured.js b/src/components/featured.js index 068743e9..24a3e151 100644 --- a/src/components/featured.js +++ b/src/components/featured.js @@ -14,7 +14,7 @@ const Featured = () => { } } allMarkdownRemark( - sort: { fields: [frontmatter___date], order: DESC } + sort: { fields: [frontmatter___date], order: ASC } filter: { frontmatter: { featured: { eq: true } } } ) { edges { @@ -26,6 +26,7 @@ const Featured = () => { title author category + tags svg { publicURL } @@ -74,10 +75,14 @@ const Featured = () => {
    {node.frontmatter.title}
    -
    + { node.frontmatter.tags.includes('sold')? +

    Not available

    + :
    SVG PNG
    + + }
    diff --git a/src/components/layout.scss b/src/components/layout.scss index 952f0e75..d8bf58a9 100644 --- a/src/components/layout.scss +++ b/src/components/layout.scss @@ -597,7 +597,7 @@ footer{ } .sold{ h4{ - font-size: 32px; + font-size: 24px; font-weight: bold; color: $blue }