Hoogle Search
Within LTS Haskell 24.34 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
setOGType :: MonadWidget m => Text -> m ()yesod-core Yesod.Core.Widget Add OpenGraph type meta tag to the head of the page See all available OG types here: https://ogp.me/#types
setTitle :: MonadWidget m => Html -> m ()yesod-core Yesod.Core.Widget Set the page title. Calling setTitle or setTitleI multiple times overrides previously set values. SEO Notes:
- Title tags are the second most important on-page factor for SEO, after content
- Every page should have a unique title tag
- Start your title tag with your main targeted keyword
- Don't stuff your keywords
- Google typically shows 55-64 characters, so aim to keep your title length under 60 characters
setTitleI :: (MonadWidget m, RenderMessage (HandlerSite m) msg) => msg -> m ()yesod-core Yesod.Core.Widget Set the localised page title. n.b. See comments for setTitle
setOf :: Ord a => Getting (Endo [a]) s a -> s -> Set amicrolens-th Lens.Micro.TH.Internal No documentation available.
setCookieDomain :: SetCookie -> Maybe ByteStringcookie Web.Cookie The domain for which the cookie should be sent. Default value: Nothing (The browser defaults to the current domain).
setCookieExpires :: SetCookie -> Maybe UTCTimecookie Web.Cookie The time at which to expire the cookie. Default value: Nothing (The browser will default to expiring a cookie when the browser is closed).
setCookieHttpOnly :: SetCookie -> Boolcookie Web.Cookie Marks the cookie as "HTTP only", i.e. not accessible from Javascript. Default value: False
setCookieMaxAge :: SetCookie -> Maybe DiffTimecookie Web.Cookie The maximum time to keep the cookie, in seconds. Default value: Nothing (The browser defaults to expiring a cookie when the browser is closed).
setCookieName :: SetCookie -> ByteStringcookie Web.Cookie The name of the cookie. Default value: "name"
setCookiePartitioned :: SetCookie -> Boolcookie Web.Cookie Cookies marked Partitioned are double-keyed: by the origin that sets them and the origin of the top-level page. Default value: False