All Projects → laravelista → Bard

laravelista / Bard

Licence: MIT license
Developer friendly Bard that writes sitemap poetry in xml.

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to Bard

Dctb Links
My Personal Links
Stars: ✭ 65 (+38.3%)
Mutual labels:  sitemap
Craft Sitemap
Craft plugin to generate a sitemap.
Stars: ✭ 105 (+123.4%)
Mutual labels:  sitemap
Seo
SEO utilities including a unique field type, sitemap & redirect manager
Stars: ✭ 210 (+346.81%)
Mutual labels:  sitemap
Gatsby Advanced Starter
A high performance skeleton starter for GatsbyJS that focuses on SEO/Social features/development environment.
Stars: ✭ 1,224 (+2504.26%)
Mutual labels:  sitemap
Laravel Seo Tools
Laravel Seo package for Content writer/admin/web master who do not know programming but want to edit/update SEO tags from dashboard
Stars: ✭ 99 (+110.64%)
Mutual labels:  sitemap
Craft Seomatic
SEOmatic facilitates modern SEO best practices & implementation for Craft CMS 3. It is a turnkey SEO system that is comprehensive, powerful, and flexible.
Stars: ✭ 135 (+187.23%)
Mutual labels:  sitemap
Templates Using Bootstrap4
🌆 Here I've aggregated some of the most commonly used web-page templates made using Bootstrap4 🛒
Stars: ✭ 60 (+27.66%)
Mutual labels:  sitemap
Python Sitemap
Mini website crawler to make sitemap from a website.
Stars: ✭ 246 (+423.4%)
Mutual labels:  sitemap
Vue Router Sitemap
Generate sitemap.xml by vue-router configuration
Stars: ✭ 102 (+117.02%)
Mutual labels:  sitemap
React Router Sitemap
Generate sitemap.xml by React Router configuration
Stars: ✭ 189 (+302.13%)
Mutual labels:  sitemap
Laravel Sitemap
Laravelium Sitemap generator for Laravel.
Stars: ✭ 1,231 (+2519.15%)
Mutual labels:  sitemap
Laravel Sitemap
Create and generate sitemaps with ease
Stars: ✭ 1,325 (+2719.15%)
Mutual labels:  sitemap
Go Sitemap Generator
go-sitemap-generator is the easiest way to generate Sitemaps in Go
Stars: ✭ 152 (+223.4%)
Mutual labels:  sitemap
Sitemap.js
Sitemap-generating framework for node.js
Stars: ✭ 1,159 (+2365.96%)
Mutual labels:  sitemap
Sitemap Generator Cli
Creates an XML-Sitemap by crawling a given site.
Stars: ✭ 214 (+355.32%)
Mutual labels:  sitemap
Android Sitemap
👓 Every link ever to Android Developer site.
Stars: ✭ 61 (+29.79%)
Mutual labels:  sitemap
Sitemap
PHP XML Sitemap Generation
Stars: ✭ 128 (+172.34%)
Mutual labels:  sitemap
sitemap-webpack-plugin
Webpack plugin to generate a sitemap.
Stars: ✭ 72 (+53.19%)
Mutual labels:  sitemap
Sitemap
Google sitemap builder for Laravel
Stars: ✭ 243 (+417.02%)
Mutual labels:  sitemap
Sitemap Generator Crawler
Script that generates a sitemap by crawling a given URL
Stars: ✭ 169 (+259.57%)
Mutual labels:  sitemap

Bard

Bard is the simplest PHP Sitemap package, just add some URLs and you are ready to go.

Become a Patron

Abandoned! I suggest using spatie/larevel-sitemap instead. It is a much better package with automatic sitemap generation.

Syntax

use Laravelista\Bard\UrlSet;
use Sabre\Xml\Writer;
use Carbon\Carbon;

$sitemap = new UrlSet(new Writer);

$sitemap->addUrl('http://domain.com/contact')
    ->setPriority(0.8)
    ->setChangeFrequency('hourly')
    ->setLastModification(Carbon::now())
    ->addTranslation('hr', 'http://domain.com/hr/contact');

$sitemap->render()->send();

Start learning

Installation

Run this from your project root in command line:

composer require laravelista/bard

Documentation

Tutorials

Bard

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].