Giter Site home page Giter Site logo

[BE] Page Meta tags about beacon HOT 4 CLOSED

beaconcms avatar beaconcms commented on May 10, 2024
[BE] Page Meta tags

from beacon.

Comments (4)

dukeweezo avatar dukeweezo commented on May 10, 2024 2

Hey, first of all, great project!

I'm working on this, focusing on the functionality as described above (by @leandrocp), using meta_tags(assigns) (as used in runtime.html.heex), and related functions, as a guide.

Will have something to share in the next few days.

from beacon.

leandrocp avatar leandrocp commented on May 10, 2024

Add support for page meta tags

At this moment beacon supports meta tags for layouts only, and we want to add support for page meta tags too.

Given a layout with meta tags (already supported):

%{id: layout_id} =
 Layouts.create_layout!(%{
    site: "my_site",
    title: "Sample Home Page",
    meta_tags: %{"my-layout-meta-tag" => "layout-value"}
    # ... code omitted
})

And a page with meta tags (that will be implemented):

  Pages.create_page!(%{
    path: "home",
    site: "my_site",
    layout_id: layout_id,
    meta_tags: %{"my-page-meta-tag" => "page-value"}
    # ... code omitted

The resulting html would be:

<!-- code omitted and simplified -->
<html>
  <head>
    <meta name=”my-layout-meta-tag” content=”layout-value” />
    <meta name=”my-page-meta-tag” content=”page-value” />
  </head>
</html>

Both are optional.

from beacon.

AZholtkevych avatar AZholtkevych commented on May 10, 2024

FYI @leandrocp

from beacon.

leandrocp avatar leandrocp commented on May 10, 2024

Closed by #109

from beacon.

Related Issues (20)

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.